staging: lustre: include: replace OBD_CHECK_DEV_ACTIVE by obd_check_dev_active
Static inline functions are preferred over macros. The inline function obd_check_dev_active is introduced to replace OBD_CHECK_DEV_ACTIVE. All functions that call obd_check_dev_active store the return values and return them if they represent an error code. Some of the changes were carried out manually while others were done using coccinelle. Signed-off-by: Aya Mahfouz <mahfouz.saif.elyazal@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
4ca1b8fbe6
commit
f36b6553e0
@ -361,6 +361,19 @@ do { \
|
||||
} \
|
||||
} while (0)
|
||||
|
||||
static inline int obd_check_dev_active(struct obd_device *obd)
|
||||
{
|
||||
int rc;
|
||||
|
||||
rc = obd_check_dev(obd);
|
||||
if (rc)
|
||||
return rc;
|
||||
if (!obd->obd_set_up || obd->obd_stopping) {
|
||||
CERROR("Device %d not setup\n", obd->obd_minor);
|
||||
return -ENODEV;
|
||||
}
|
||||
return rc;
|
||||
}
|
||||
|
||||
#if defined (CONFIG_PROC_FS)
|
||||
#define OBD_COUNTER_OFFSET(op) \
|
||||
@ -901,7 +914,9 @@ static inline int obd_add_conn(struct obd_import *imp, struct obd_uuid *uuid,
|
||||
struct obd_device *obd = imp->imp_obd;
|
||||
int rc;
|
||||
|
||||
OBD_CHECK_DEV_ACTIVE(obd);
|
||||
rc = obd_check_dev_active(obd);
|
||||
if (rc)
|
||||
return rc;
|
||||
OBD_CHECK_DT_OP(obd, add_conn, -EOPNOTSUPP);
|
||||
OBD_COUNTER_INCREMENT(obd, add_conn);
|
||||
|
||||
@ -914,7 +929,9 @@ static inline int obd_del_conn(struct obd_import *imp, struct obd_uuid *uuid)
|
||||
struct obd_device *obd = imp->imp_obd;
|
||||
int rc;
|
||||
|
||||
OBD_CHECK_DEV_ACTIVE(obd);
|
||||
rc = obd_check_dev_active(obd);
|
||||
if (rc)
|
||||
return rc;
|
||||
OBD_CHECK_DT_OP(obd, del_conn, -EOPNOTSUPP);
|
||||
OBD_COUNTER_INCREMENT(obd, del_conn);
|
||||
|
||||
@ -948,7 +965,9 @@ static inline int obd_connect(const struct lu_env *env,
|
||||
__u64 ocf = data ? data->ocd_connect_flags : 0; /* for post-condition
|
||||
* check */
|
||||
|
||||
OBD_CHECK_DEV_ACTIVE(obd);
|
||||
rc = obd_check_dev_active(obd);
|
||||
if (rc)
|
||||
return rc;
|
||||
OBD_CHECK_DT_OP(obd, connect, -EOPNOTSUPP);
|
||||
OBD_COUNTER_INCREMENT(obd, connect);
|
||||
|
||||
@ -970,7 +989,9 @@ static inline int obd_reconnect(const struct lu_env *env,
|
||||
__u64 ocf = d ? d->ocd_connect_flags : 0; /* for post-condition
|
||||
* check */
|
||||
|
||||
OBD_CHECK_DEV_ACTIVE(obd);
|
||||
rc = obd_check_dev_active(obd);
|
||||
if (rc)
|
||||
return rc;
|
||||
OBD_CHECK_DT_OP(obd, reconnect, 0);
|
||||
OBD_COUNTER_INCREMENT(obd, reconnect);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user