Commit 2faedcd5 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

Revert "staging/lustre: F_SETLKW64 F_SETLK64 F_GETLK64 are always defined"

This reverts commit caa88c26.

Turns out that Alpha doesn't define these values :(
Reported-by: default avatarkbuild test robot <fengguang.wu@intel.com>
Cc: Oleg Drokin <green@linuxhacker.ru>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5a9ff74d
...@@ -2746,15 +2746,21 @@ ll_file_flock(struct file *file, int cmd, struct file_lock *file_lock) ...@@ -2746,15 +2746,21 @@ ll_file_flock(struct file *file, int cmd, struct file_lock *file_lock)
switch (cmd) { switch (cmd) {
case F_SETLKW: case F_SETLKW:
#ifdef F_SETLKW64
case F_SETLKW64: case F_SETLKW64:
#endif
flags = 0; flags = 0;
break; break;
case F_SETLK: case F_SETLK:
#ifdef F_SETLK64
case F_SETLK64: case F_SETLK64:
#endif
flags = LDLM_FL_BLOCK_NOWAIT; flags = LDLM_FL_BLOCK_NOWAIT;
break; break;
case F_GETLK: case F_GETLK:
#ifdef F_GETLK64
case F_GETLK64: case F_GETLK64:
#endif
flags = LDLM_FL_TEST_LOCK; flags = LDLM_FL_TEST_LOCK;
/* Save the old mode so that if the mode in the lock changes we /* Save the old mode so that if the mode in the lock changes we
* can decrement the appropriate reader or writer refcount. * can decrement the appropriate reader or writer refcount.
......
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