Commit 43eb3b33 authored by Ben Evans's avatar Ben Evans Committed by Greg Kroah-Hartman
Browse files

staging: lustre: ptlrpc: Move IT_* definitions to lustre_idl.h



Put IT_* definitions into an enum, as they're sent over the wire,
adjust calls, print statements, etc. to use the new enum.

Signed-off-by: default avatarBen Evans <bevans@cray.com>
Intel-bug-id: https://jira.hpdd.intel.com/browse/LU-6746
Reviewed-on: http://review.whamcloud.com/16228


Reviewed-by: default avatarJohn L. Hammond <john.hammond@intel.com>
Reviewed-by: default avatarJames Simmons <uja.ornl@yahoo.com>
Reviewed-by: default avatarOleg Drokin <oleg.drokin@intel.com>
Signed-off-by: default avatarJames Simmons <jsimmons@infradead.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 25782b53
Loading
Loading
Loading
Loading
+18 −0
Original line number Diff line number Diff line
@@ -2624,6 +2624,24 @@ union ldlm_gl_desc {

void lustre_swab_gl_desc(union ldlm_gl_desc *);

enum ldlm_intent_flags {
	IT_OPEN		= BIT(0),
	IT_CREAT	= BIT(1),
	IT_OPEN_CREAT	= BIT(1) | BIT(0),
	IT_READDIR	= BIT(2),
	IT_GETATTR	= BIT(3),
	IT_LOOKUP	= BIT(4),
	IT_UNLINK	= BIT(5),
	IT_TRUNC	= BIT(6),
	IT_GETXATTR	= BIT(7),
	IT_EXEC		= BIT(8),
	IT_PIN		= BIT(9),
	IT_LAYOUT	= BIT(10),
	IT_QUOTA_DQACQ	= BIT(11),
	IT_QUOTA_CONN	= BIT(12),
	IT_SETXATTR	= BIT(13),
};

struct ldlm_intent {
	__u64 opc;
};
+1 −1
Original line number Diff line number Diff line
@@ -977,7 +977,7 @@ struct ldlm_enqueue_info {
extern struct obd_ops ldlm_obd_ops;

extern char *ldlm_lockname[];
char *ldlm_it2str(int it);
const char *ldlm_it2str(enum ldlm_intent_flags it);

/**
 * Just a fancy CDEBUG call with log level preset to LDLM_DEBUG.
+0 −16
Original line number Diff line number Diff line
@@ -636,22 +636,6 @@ enum obd_cleanup_stage {

struct lu_context;

/* /!\ must be coherent with include/linux/namei.h on patched kernel */
#define IT_OPEN     (1 << 0)
#define IT_CREAT    (1 << 1)
#define IT_READDIR  (1 << 2)
#define IT_GETATTR  (1 << 3)
#define IT_LOOKUP   (1 << 4)
#define IT_UNLINK   (1 << 5)
#define IT_TRUNC    (1 << 6)
#define IT_GETXATTR (1 << 7)
#define IT_EXEC     (1 << 8)
#define IT_PIN      (1 << 9)
#define IT_LAYOUT   (1 << 10)
#define IT_QUOTA_DQACQ (1 << 11)
#define IT_QUOTA_CONN  (1 << 12)
#define IT_SETXATTR (1 << 13)

static inline int it_to_lock_mode(struct lookup_intent *it)
{
	/* CREAT needs to be tested before open (both could be set) */
+2 −2
Original line number Diff line number Diff line
@@ -105,7 +105,7 @@ void ldlm_convert_policy_to_local(struct obd_export *exp, enum ldlm_type type,
	convert(wpolicy, lpolicy);
}

char *ldlm_it2str(int it)
const char *ldlm_it2str(enum ldlm_intent_flags it)
{
	switch (it) {
	case IT_OPEN:
@@ -127,7 +127,7 @@ char *ldlm_it2str(int it)
	case IT_LAYOUT:
		return "layout";
	default:
		CERROR("Unknown intent %d\n", it);
		CERROR("Unknown intent 0x%08x\n", it);
		return "UNKNOWN";
	}
}