summaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorMark Fasheh <mfasheh@suse.com>2008-10-06 23:16:08 (GMT)
committerMark Fasheh <mfasheh@suse.com>2008-10-14 00:02:44 (GMT)
commit009d37502a7b9fc89741e66b4454afca4edc1c26 (patch)
tree5baff62529735bf9e1a0d72108fe3183876de18e /fs
parent5a09561199e7f8d3feaaa01c39372050e140b775 (diff)
downloadlinux-fsl-qoriq-009d37502a7b9fc89741e66b4454afca4edc1c26.tar.xz
ocfs2: Remove pointless !!
ocfs2_stack_supports_plocks() doesn't need this to properly return a zero or one value. Signed-off-by: Mark Fasheh <mfasheh@suse.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/ocfs2/stackglue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ocfs2/stackglue.c b/fs/ocfs2/stackglue.c
index 7150f5dc..68b668b 100644
--- a/fs/ocfs2/stackglue.c
+++ b/fs/ocfs2/stackglue.c
@@ -290,7 +290,7 @@ EXPORT_SYMBOL_GPL(ocfs2_dlm_dump_lksb);
int ocfs2_stack_supports_plocks(void)
{
- return !!(active_stack && active_stack->sp_ops->plock);
+ return active_stack && active_stack->sp_ops->plock;
}
EXPORT_SYMBOL_GPL(ocfs2_stack_supports_plocks);