Commit 659dc341 authored by Aya Mahfouz's avatar Aya Mahfouz Committed by Greg Kroah-Hartman

staging: lustre: include: remove unused macros

OBD_CHECK_DEV and OBD_CHECK_DEV_ACTIVE have been replaced by static
inline functions. They are removed since they are not used anymore.
Signed-off-by: default avatarAya Mahfouz <mahfouz.saif.elyazal@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f36b6553
...@@ -333,14 +333,6 @@ void obdo_le_to_cpu(struct obdo *dobdo, struct obdo *sobdo); ...@@ -333,14 +333,6 @@ void obdo_le_to_cpu(struct obdo *dobdo, struct obdo *sobdo);
/* Ensure obd_setup: used for cleanup which must be called /* Ensure obd_setup: used for cleanup which must be called
while obd is stopping */ while obd is stopping */
#define OBD_CHECK_DEV(obd) \
do { \
if (!(obd)) { \
CERROR("NULL device\n"); \
return -ENODEV; \
} \
} while (0)
static inline int obd_check_dev(struct obd_device *obd) static inline int obd_check_dev(struct obd_device *obd)
{ {
if (!obd) { if (!obd) {
...@@ -351,16 +343,6 @@ static inline int obd_check_dev(struct obd_device *obd) ...@@ -351,16 +343,6 @@ static inline int obd_check_dev(struct obd_device *obd)
} }
/* ensure obd_setup and !obd_stopping */ /* ensure obd_setup and !obd_stopping */
#define OBD_CHECK_DEV_ACTIVE(obd) \
do { \
OBD_CHECK_DEV(obd); \
if (!(obd)->obd_set_up || (obd)->obd_stopping) { \
CERROR("Device %d not setup\n", \
(obd)->obd_minor); \
return -ENODEV; \
} \
} while (0)
static inline int obd_check_dev_active(struct obd_device *obd) static inline int obd_check_dev_active(struct obd_device *obd)
{ {
int rc; int rc;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment