mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-11 01:53:20 -04:00
staging: lustre: osc: remove unused variable
This patch removes a variable that was simply used to
store the return value of a function call before
returning it.
The issue was detected and resolved using the following
coccinelle script:
@@
identifier len,f;
@@
-int len;
... when != len
when strict
-len =
+return
f(...);
-return len;
Signed-off-by: Aya Mahfouz <mahfouz.saif.elyazal@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
d9518b7657
commit
e6eae365ad
@@ -164,16 +164,13 @@ static int osc_cached_mb_seq_show(struct seq_file *m, void *v)
|
||||
struct obd_device *dev = m->private;
|
||||
struct client_obd *cli = &dev->u.cli;
|
||||
int shift = 20 - PAGE_CACHE_SHIFT;
|
||||
int rc;
|
||||
|
||||
rc = seq_printf(m,
|
||||
return seq_printf(m,
|
||||
"used_mb: %d\n"
|
||||
"busy_cnt: %d\n",
|
||||
(atomic_read(&cli->cl_lru_in_list) +
|
||||
atomic_read(&cli->cl_lru_busy)) >> shift,
|
||||
atomic_read(&cli->cl_lru_busy));
|
||||
|
||||
return rc;
|
||||
}
|
||||
|
||||
/* shrink the number of caching pages to a specific number */
|
||||
|
||||
Reference in New Issue
Block a user