Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 67ac901c authored by Wei Yongjun's avatar Wei Yongjun Committed by Mike Snitzer
Browse files

dm raid: make raid_sets symbol static



Fixes the following sparse warning:

drivers/md/dm-raid.c:33:1: warning:
 symbol 'raid_sets' was not declared. Should it be static?

Signed-off-by: default avatarWei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: default avatarMike Snitzer <snitzer@redhat.com>
parent 0e696d38
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -30,7 +30,7 @@
#define	MIN_RAID456_JOURNAL_SPACE (4*2048)

/* Global list of all raid sets */
LIST_HEAD(raid_sets);
static LIST_HEAD(raid_sets);

static bool devices_handle_discard_safely = false;