All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] writeback: initialize inode members that track writeback history
@ 2016-02-16 21:34 Tahsin Erdogan
  2016-02-16 21:49 ` Tejun Heo
  0 siblings, 1 reply; 5+ messages in thread
From: Tahsin Erdogan @ 2016-02-16 21:34 UTC (permalink / raw)
  To: Tejun Heo, Alexander Viro
  Cc: Jens Axboe, linux-fsdevel, linux-kernel, Tahsin Erdogan

inode struct members that track cgroup writeback information
should be reinitialized when inode gets allocated from
kmem_cache. Otherwise, their values remain and get used by the
new inode.

Signed-off-by: Tahsin Erdogan <tahsin@google.com>
Acked-by: Tejun Heo <tj@kernel.org>
---
 fs/inode.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/fs/inode.c b/fs/inode.c
index 9f62db3..69b8b52 100644
--- a/fs/inode.c
+++ b/fs/inode.c
@@ -154,6 +154,12 @@ int inode_init_always(struct super_block *sb, struct inode *inode)
 	inode->i_rdev = 0;
 	inode->dirtied_when = 0;
 
+#ifdef CONFIG_CGROUP_WRITEBACK
+	inode->i_wb_frn_winner = 0;
+	inode->i_wb_frn_avg_time = 0;
+	inode->i_wb_frn_history = 0;
+#endif
+
 	if (security_inode_alloc(inode))
 		goto out;
 	spin_lock_init(&inode->i_lock);
-- 
2.7.0.rc3.207.g0ac5344

^ permalink raw reply related	[flat|nested] 5+ messages in thread
* [PATCH] writeback: initialize inode members that track writeback history
@ 2016-02-16 19:10 Tahsin Erdogan
  2016-02-16 21:13 ` Tejun Heo
  0 siblings, 1 reply; 5+ messages in thread
From: Tahsin Erdogan @ 2016-02-16 19:10 UTC (permalink / raw)
  To: Tejun Heo, Alexander Viro; +Cc: linux-fsdevel, linux-kernel, Tahsin Erdogan

inode struct members that track cgroup writeback information
should be reinitialized when inode gets allocated from
kmem_cache. Otherwise, their values remain and get used by the
new inode.

Signed-off-by: Tahsin Erdogan <tahsin@google.com>
---
 fs/inode.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/fs/inode.c b/fs/inode.c
index 9f62db3..69b8b52 100644
--- a/fs/inode.c
+++ b/fs/inode.c
@@ -154,6 +154,12 @@ int inode_init_always(struct super_block *sb, struct inode *inode)
 	inode->i_rdev = 0;
 	inode->dirtied_when = 0;
 
+#ifdef CONFIG_CGROUP_WRITEBACK
+	inode->i_wb_frn_winner = 0;
+	inode->i_wb_frn_avg_time = 0;
+	inode->i_wb_frn_history = 0;
+#endif
+
 	if (security_inode_alloc(inode))
 		goto out;
 	spin_lock_init(&inode->i_lock);
-- 
2.7.0.rc3.207.g0ac5344

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

end of thread, other threads:[~2016-02-17 15:30 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-02-16 21:34 [PATCH] writeback: initialize inode members that track writeback history Tahsin Erdogan
2016-02-16 21:49 ` Tejun Heo
2016-02-17 15:30   ` Jens Axboe
  -- strict thread matches above, loose matches on Subject: below --
2016-02-16 19:10 Tahsin Erdogan
2016-02-16 21:13 ` Tejun Heo

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.