Fixes coccicheck warning:

fs/cifs/smb2ops.c:3199:6-15: WARNING: Comparison to bool
fs/cifs/smb2ops.c:3223:5-14: WARNING: Comparison to bool
fs/cifs/smb2ops.c:3301:6-15: WARNING: Comparison to bool
fs/cifs/smb2ops.c:3311:6-15: WARNING: Comparison to bool
fs/cifs/smb2ops.c:3341:6-15: WARNING: Comparison to bool

Signed-off-by: Zheng Bin <zhengbi...@huawei.com>
---
 fs/cifs/smb2ops.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/fs/cifs/smb2ops.c b/fs/cifs/smb2ops.c
index 32f90dc82c84..213a0e3d9f76 100644
--- a/fs/cifs/smb2ops.c
+++ b/fs/cifs/smb2ops.c
@@ -3196,7 +3196,7 @@ static long smb3_zero_range(struct file *file, struct 
cifs_tcon *tcon,

        /* if file not oplocked can't be sure whether asking to extend size */
        if (!CIFS_CACHE_READ(cifsi))
-               if (keep_size == false) {
+               if (!keep_size) {
                        rc = -EOPNOTSUPP;
                        trace_smb3_zero_err(xid, cfile->fid.persistent_fid,
                                tcon->tid, ses->Suid, offset, len, rc);
@@ -3220,7 +3220,7 @@ static long smb3_zero_range(struct file *file, struct 
cifs_tcon *tcon,
        /*
         * do we also need to change the size of the file?
         */
-       if (keep_size == false && i_size_read(inode) < offset + len) {
+       if (!keep_size && i_size_read(inode) < offset + len) {
                eof = cpu_to_le64(offset + len);
                rc = SMB2_set_eof(xid, tcon, cfile->fid.persistent_fid,
                                  cfile->fid.volatile_fid, cfile->pid, &eof);
@@ -3298,7 +3298,7 @@ static long smb3_simple_falloc(struct file *file, struct 
cifs_tcon *tcon,
                                tcon->ses->Suid, off, len);
        /* if file not oplocked can't be sure whether asking to extend size */
        if (!CIFS_CACHE_READ(cifsi))
-               if (keep_size == false) {
+               if (!keep_size) {
                        trace_smb3_falloc_err(xid, cfile->fid.persistent_fid,
                                tcon->tid, tcon->ses->Suid, off, len, rc);
                        free_xid(xid);
@@ -3308,7 +3308,7 @@ static long smb3_simple_falloc(struct file *file, struct 
cifs_tcon *tcon,
        /*
         * Extending the file
         */
-       if ((keep_size == false) && i_size_read(inode) < off + len) {
+       if (!keep_size && i_size_read(inode) < off + len) {
                rc = inode_newsize_ok(inode, off + len);
                if (rc)
                        goto out;
@@ -3338,7 +3338,7 @@ static long smb3_simple_falloc(struct file *file, struct 
cifs_tcon *tcon,
                goto out;
        }

-       if ((keep_size == true) || (i_size_read(inode) >= off + len)) {
+       if (keep_size || (i_size_read(inode) >= off + len)) {
                /*
                 * Check if falloc starts within first few pages of file
                 * and ends within a few pages of the end of file to
--
2.26.0.106.g9fadedd

Reply via email to