diff options
author | Ksenija Stanojevic <ksenija.stanojevic@gmail.com> | 2015-10-17 19:19:46 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-10-18 06:16:37 +0300 |
commit | fcc74c4dd696ad9cf3f58f8aeb1938d9b6f57261 (patch) | |
tree | 85a8e4713fa1269b503f8c2474236d5da53d00f9 | |
parent | d811ed6974532cdb47301ba993f766c6e5b3fd5d (diff) | |
download | linux-fcc74c4dd696ad9cf3f58f8aeb1938d9b6f57261.tar.xz |
Staging: lustre: include : Remove unused macros
These macro are not used anymore, therefore remove them.
Signed-off-by: Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/lustre/lustre/include/obd_class.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/drivers/staging/lustre/lustre/include/obd_class.h b/drivers/staging/lustre/lustre/include/obd_class.h index f5d0a98b73f0..bf2bde5e6896 100644 --- a/drivers/staging/lustre/lustre/include/obd_class.h +++ b/drivers/staging/lustre/lustre/include/obd_class.h @@ -244,23 +244,6 @@ static inline void class_export_lock_put(struct obd_export *exp, class_export_put(exp); } -#define class_export_cb_get(exp) \ -({ \ - atomic_inc(&(exp)->exp_cb_count); \ - CDEBUG(D_INFO, "callback GETting export %p : new cb_count %d\n",\ - (exp), atomic_read(&(exp)->exp_cb_count)); \ - class_export_get(exp); \ -}) - -#define class_export_cb_put(exp) \ -({ \ - LASSERT_ATOMIC_POS(&exp->exp_cb_count); \ - atomic_dec(&(exp)->exp_cb_count); \ - CDEBUG(D_INFO, "callback PUTting export %p : new cb_count %d\n",\ - (exp), atomic_read(&(exp)->exp_cb_count)); \ - class_export_put(exp); \ -}) - static inline enum obd_option exp_flags_from_obd(struct obd_device *obd) { return ((obd->obd_fail ? OBD_OPT_FAILOVER : 0) | |