Unverified Commit dc592190 authored by Jiapeng Chong's avatar Jiapeng Chong Committed by Christian Brauner (Microsoft)
Browse files

fs/locks: Remove redundant assignment to cmd



Variable 'cmd' set but not used.

fs/locks.c:2428:3: warning: Value stored to 'cmd' is never read.

Reported-by: default avatarAbaci Robot <abaci@linux.alibaba.com>
Link: https://bugzilla.openanolis.cn/show_bug.cgi?id=4439


Signed-off-by: default avatarJiapeng Chong <jiapeng.chong@linux.alibaba.com>
Reviewed-by: default avatarChaitanya Kulkarni <kch@nvidia.com>
Signed-off-by: default avatarChristian Brauner (Microsoft) <brauner@kernel.org>
parent c3a4aec0
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -2425,7 +2425,6 @@ int fcntl_getlk64(struct file *filp, unsigned int cmd, struct flock64 *flock)
		if (flock->l_pid != 0)
			goto out;

		cmd = F_GETLK64;
		fl->fl_flags |= FL_OFDLCK;
		fl->fl_owner = filp;
	}