Staging: lustre: include : Remove unused macros
authorKsenija Stanojevic <ksenija.stanojevic@gmail.com>
Sat, 17 Oct 2015 16:19:46 +0000 (18:19 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 18 Oct 2015 03:16:37 +0000 (20:16 -0700)
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>
drivers/staging/lustre/lustre/include/obd_class.h

index f5d0a98b73f0c521f3fd7408debc050c07123ecc..bf2bde5e6896770be70537e5eaa47f98a8a36281 100644 (file)
@@ -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) |
This page took 0.025531 seconds and 5 git commands to generate.