Skip to content

Commit

Permalink
md: fix build failure for !MODULE
Browse files Browse the repository at this point in the history
After merging the block tree, today's linux-next build (x86_64
allmodconfig) failed like this:

drivers/md/md.c:717:22: error: 'mddev_find' defined but not used [-Werror=unused-function]
  717 | static struct mddev *mddev_find(dev_t unit)
      |                      ^~~~~~~~~~
cc1: all warnings being treated as errors

Caused by commit

  4500d5c17910 ("md: simplify md_open")

Make mddev_find() available only for non-modular builds.

Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Link: https://lore.kernel.org/r/20220721131132.070be166@canb.auug.org.au
Signed-off-by: Jens Axboe <axboe@kernel.dk>
  • Loading branch information
sfrothwell authored and axboe committed Aug 2, 2022
1 parent a20d636 commit 2198c51
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions drivers/md/md.c
Original file line number Diff line number Diff line change
Expand Up @@ -714,6 +714,7 @@ static dev_t mddev_alloc_unit(void)
return dev;
}

#ifndef MODULE
static struct mddev *mddev_find(dev_t unit)
{
struct mddev *mddev;
Expand All @@ -729,6 +730,7 @@ static struct mddev *mddev_find(dev_t unit)

return mddev;
}
#endif

static struct mddev *mddev_alloc(dev_t unit)
{
Expand Down

0 comments on commit 2198c51

Please sign in to comment.