* [PATCH] 9p: remove shadow variable retval in v9fs_dir_release()
@ 2023-01-28 15:25 Tom Rix
0 siblings, 0 replies; only message in thread
From: Tom Rix @ 2023-01-28 15:25 UTC (permalink / raw)
To: ericvh, lucho, asmadeus, linux_oss; +Cc: v9fs-developer, linux-kernel, Tom Rix
cppcheck reports
fs/9p/vfs_dir.c:219:8: style: Local variable 'retval' shadows outer variable [shadowVariable]
int retval = file_write_and_wait_range(filp, 0, -1);
^
Having another retval decl is not needed, if the initialized 0 is overwritten by a non 0
value by the call to file_write_and_wait_ranget(), the function returns early.
Fixes: b67c64fb0143 ("fs/9p: Consolidate file operations and add readahead and writeback")
Signed-off-by: Tom Rix <trix@redhat.com>
---
fs/9p/vfs_dir.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fs/9p/vfs_dir.c b/fs/9p/vfs_dir.c
index 1fc07bb86e6f..a5783afdf31a 100644
--- a/fs/9p/vfs_dir.c
+++ b/fs/9p/vfs_dir.c
@@ -216,7 +216,7 @@ int v9fs_dir_release(struct inode *inode, struct file *filp)
inode, filp, fid ? fid->fid : -1);
if (fid) {
if ((fid->qid.type == P9_QTFILE) && (filp->f_mode & FMODE_WRITE)) {
- int retval = file_write_and_wait_range(filp, 0, -1);
+ retval = file_write_and_wait_range(filp, 0, -1);
if (retval != 0) {
p9_debug(P9_DEBUG_ERROR,
--
2.26.3
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2023-01-28 15:26 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-28 15:25 [PATCH] 9p: remove shadow variable retval in v9fs_dir_release() Tom Rix
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®