From: James Simmons Date: Tue, 16 Aug 2016 20:19:24 +0000 (-0400) Subject: staging: lustre: llite: remove assert for acl refcount X-Git-Tag: v4.9-rc1~119^2~1066 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=6a42e615a28bad49f2e04829486e94190c066390;p=karo-tx-linux.git staging: lustre: llite: remove assert for acl refcount The purpose of this asssert to was to ensure lustre was properly managing its posix_acl access. This test is invalid due to the VFS layer also taking references on the posix_acl. In reality their is no simple way to detect this class of mistakes. Signed-off-by: James Simmons Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/lustre/lustre/llite/llite_lib.c b/drivers/staging/lustre/lustre/llite/llite_lib.c index da00fbd30721..64c8a2ba4fe6 100644 --- a/drivers/staging/lustre/lustre/llite/llite_lib.c +++ b/drivers/staging/lustre/lustre/llite/llite_lib.c @@ -1247,7 +1247,6 @@ void ll_clear_inode(struct inode *inode) #ifdef CONFIG_FS_POSIX_ACL if (lli->lli_posix_acl) { - LASSERT(atomic_read(&lli->lli_posix_acl->a_refcount) == 1); posix_acl_release(lli->lli_posix_acl); lli->lli_posix_acl = NULL; }