Commit fa6f479c authored by James Simmons's avatar James Simmons Committed by Greg Kroah-Hartman

staging: lustre: lnet: remove BIT macro from lnetctl.h

Now that lnetctl.h is a UAPI header the BIT macro has to be
removed.
Signed-off-by: default avatarJames Simmons <jsimmons@infradead.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 15041421
...@@ -32,10 +32,10 @@ enum { ...@@ -32,10 +32,10 @@ enum {
LNET_CTL_DELAY_LIST, LNET_CTL_DELAY_LIST,
}; };
#define LNET_ACK_BIT BIT(0) #define LNET_ACK_BIT (1 << 0)
#define LNET_PUT_BIT BIT(1) #define LNET_PUT_BIT (1 << 1)
#define LNET_GET_BIT BIT(2) #define LNET_GET_BIT (1 << 2)
#define LNET_REPLY_BIT BIT(3) #define LNET_REPLY_BIT (1 << 3)
/** ioctl parameter for LNet fault simulation */ /** ioctl parameter for LNet fault simulation */
struct lnet_fault_attr { struct lnet_fault_attr {
......
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