Skip to content
Snippets Groups Projects
Commit 5fc1efd5 authored by Philipp Reisner's avatar Philipp Reisner Committed by Jens Axboe
Browse files

drbd: Fix allyesconfig build, fix recent commit


Globals where prefixed with drbd_, that was missed in the
in #ifdef'nd code when it is built-in.

Signed-off-by: default avatarPhilipp Reisner <philipp.reisner@linbit.com>
Fixes: 183ece30 ("drbd: move global variables to drbd namespace and make some static")
Signed-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent 365cf663
No related branches found
No related tags found
No related merge requests found
...@@ -2989,7 +2989,7 @@ static int __init drbd_init(void) ...@@ -2989,7 +2989,7 @@ static int __init drbd_init(void)
#ifdef MODULE #ifdef MODULE
return -EINVAL; return -EINVAL;
#else #else
minor_count = DRBD_MINOR_COUNT_DEF; drbd_minor_count = DRBD_MINOR_COUNT_DEF;
#endif #endif
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment