All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mm/hugetlb.c: remove deadstore in demote_size_show()
@ 2021-10-01 17:57 ` Nghia Le
  0 siblings, 0 replies; 6+ messages in thread
From: Nghia Le @ 2021-10-01 17:57 UTC (permalink / raw)
  To: linux-safety; +Cc: Nghia Le, lukas.bulwahn

Deadstore was detected by CodeCheck tool (ELISA group)

Removed demote_size and relevant assignment in function demote_size_show()
to fix deadstore issue of which stored value to demote_size is never read

Signed-off-by: Nghia Le <nghialm78@gmail.com>
---
 mm/hugetlb.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/mm/hugetlb.c b/mm/hugetlb.c
index 993efa70bce4..ef00e6ad0f6a 100644
--- a/mm/hugetlb.c
+++ b/mm/hugetlb.c
@@ -3706,11 +3706,9 @@ static ssize_t demote_size_show(struct kobject *kobj,
 					struct kobj_attribute *attr, char *buf)
 {
 	struct hstate *h;
-	unsigned long demote_size;
 	int nid;
 
 	h = kobj_to_hstate(kobj, &nid);
-	demote_size = h->demote_order;
 
 	return sysfs_emit(buf, "%lukB\n",
 			(unsigned long)(PAGE_SIZE << h->demote_order) / SZ_1K);
-- 
2.25.1



^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2021-10-02 11:56 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-01 17:57 [PATCH] mm/hugetlb.c: remove deadstore in demote_size_show() Nghia Le
2021-10-01 17:57 ` [linux-safety] " Nghia Le
2021-10-02  5:13 ` Lukas Bulwahn
2021-10-02  5:13   ` [linux-safety] " Lukas Bulwahn
2021-10-02 11:56   ` Nghia Le
2021-10-02 11:56     ` [linux-safety] " Nghia Le

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.