* [PATCH] writeback: fix build warning about may be used uninitialized params
@ 2015-11-20 10:22 Xiubo Li
0 siblings, 0 replies; only message in thread
From: Xiubo Li @ 2015-11-20 10:22 UTC (permalink / raw)
To: linux-mm; +Cc: lixiubo
From: lixiubo <lixiubo@cmss.chinamobile.com>
warning: a??m_thresha?? may be used uninitialized in this function
[-Wmaybe-uninitialized]
warning: a??m_dirtya?? may be used uninitialized in this function
[-Wmaybe-uninitialized]
This may introduce some rask.
Signed-off-by: lixiubo <lixiubo@cmss.chinamobile.com>
---
mm/page-writeback.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mm/page-writeback.c b/mm/page-writeback.c
index 2c90357..01ad30f 100644
--- a/mm/page-writeback.c
+++ b/mm/page-writeback.c
@@ -1542,7 +1542,7 @@ static void balance_dirty_pages(struct address_space *mapping,
for (;;) {
unsigned long now = jiffies;
unsigned long dirty, thresh, bg_thresh;
- unsigned long m_dirty, m_thresh, m_bg_thresh;
+ unsigned long m_dirty = 0, m_thresh = 0, m_bg_thresh;
/*
* Unstable writes are a feature of certain networked
--
1.8.3.1
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2015-11-20 10:23 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-20 10:22 [PATCH] writeback: fix build warning about may be used uninitialized params Xiubo Li
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox