summaryrefslogtreecommitdiffstats
path: root/xlators/features/locks/src/common.h
diff options
context:
space:
mode:
authorAnoop C S <anoopcs@redhat.com>2015-12-20 21:47:37 +0530
committerJeff Darcy <jdarcy@redhat.com>2016-03-22 12:38:00 -0700
commit86501cd36b9784a6c0247326092a50fb44524656 (patch)
tree748f32183e396e3a7b1929b8c24faa2bf2dd1dad /xlators/features/locks/src/common.h
parent1081584d4c2d26e56fea623ecfadd305c6e3d3bc (diff)
features/locks: Remove unneeded function parameter
We use list_del_init() inside __delete_lock() to remove a lock from inode's lock list where pl_inode_t is not required at all. This patch removes pl_inode_t from list of parameters required for __delete_lock(). Change-Id: Ic5701bcae231172d4fd7feda1b25752343ee81cf BUG: 1293227 Signed-off-by: Anoop C S <anoopcs@redhat.com> Reviewed-on: http://review.gluster.org/13033 Smoke: Gluster Build System <jenkins@build.gluster.com> CentOS-regression: Gluster Build System <jenkins@build.gluster.com> NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org> Reviewed-by: Jeff Darcy <jdarcy@redhat.com>
Diffstat (limited to 'xlators/features/locks/src/common.h')
-rw-r--r--xlators/features/locks/src/common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/features/locks/src/common.h b/xlators/features/locks/src/common.h
index 5ec630ee857..b3026cb8c83 100644
--- a/xlators/features/locks/src/common.h
+++ b/xlators/features/locks/src/common.h
@@ -59,7 +59,7 @@ locks_overlap (posix_lock_t *l1, posix_lock_t *l2);
int
same_owner (posix_lock_t *l1, posix_lock_t *l2);
-void __delete_lock (pl_inode_t *, posix_lock_t *);
+void __delete_lock (posix_lock_t *);
void __destroy_lock (posix_lock_t *);