rework try_then_request_module to do less in non-modular kernels
This reworks try_then_request_module to only invoke the "lookup" function "x" once when the kernel is not modular. Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
parent
a81792f668
commit
df648c9fbe
@ -29,11 +29,12 @@
|
|||||||
/* modprobe exit status on success, -ve on error. Return value
|
/* modprobe exit status on success, -ve on error. Return value
|
||||||
* usually useless though. */
|
* usually useless though. */
|
||||||
extern int request_module(const char * name, ...) __attribute__ ((format (printf, 1, 2)));
|
extern int request_module(const char * name, ...) __attribute__ ((format (printf, 1, 2)));
|
||||||
|
#define try_then_request_module(x, mod...) ((x) ?: (request_module(mod), (x)))
|
||||||
#else
|
#else
|
||||||
static inline int request_module(const char * name, ...) { return -ENOSYS; }
|
static inline int request_module(const char * name, ...) { return -ENOSYS; }
|
||||||
|
#define try_then_request_module(x, mod...) (x)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define try_then_request_module(x, mod...) ((x) ?: (request_module(mod), (x)))
|
|
||||||
|
|
||||||
struct key;
|
struct key;
|
||||||
struct file;
|
struct file;
|
||||||
|
Loading…
Reference in New Issue
Block a user