projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8ef4d5c
)
mm/damon/sysfs: simplify the variable 'pid' assignment operation
author
Kaixu Xia
<kaixuxia@tencent.com>
Tue, 13 Sep 2022 09:11:25 +0000
(17:11 +0800)
committer
Andrew Morton
<akpm@linux-foundation.org>
Mon, 3 Oct 2022 21:03:14 +0000
(14:03 -0700)
We can initialize the variable 'pid' with '-1' in pid_show() to simplify
the variable assignment operation and make the code more readable.
Link:
https://lkml.kernel.org/r/1663060287-30201-3-git-send-email-kaixuxia@tencent.com
Signed-off-by: Kaixu Xia <kaixuxia@tencent.com>
Reviewed-by: SeongJae Park <sj@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
mm/damon/sysfs.c
patch
|
blob
|
history
diff --git
a/mm/damon/sysfs.c
b/mm/damon/sysfs.c
index 3dbf3804ec88b69e17f899f0b3fc4bbdda36c6be..1fa0023f136eb7b9b1b949fa67302166004ab682 100644
(file)
--- a/
mm/damon/sysfs.c
+++ b/
mm/damon/sysfs.c
@@
-2592,19
+2592,16
@@
static ssize_t pid_show(struct kobject *kobj,
struct damon_sysfs_kdamond *kdamond = container_of(kobj,
struct damon_sysfs_kdamond, kobj);
struct damon_ctx *ctx;
- int pid;
+ int pid
= -1
;
if (!mutex_trylock(&damon_sysfs_lock))
return -EBUSY;
ctx = kdamond->damon_ctx;
- if (!ctx) {
- pid = -1;
+ if (!ctx)
goto out;
- }
+
mutex_lock(&ctx->kdamond_lock);
- if (!ctx->kdamond)
- pid = -1;
- else
+ if (ctx->kdamond)
pid = ctx->kdamond->pid;
mutex_unlock(&ctx->kdamond_lock);
out: