Re: [Cluster-devel] [GFS2 PATCH] gfs2: Remove inode from ordered write list in gfs2_write_inode()

2018-01-30 Thread Bob Peterson
- Original Message - | The vfs clears the I_DIRTY inode flag before calling gfs2_write_inode() | having queued any data that needed to be written to disk. | This is a good time to remove such inodes from our ordered write list | so they don't hang around for long periods of time. | |

Re: [Cluster-devel] [GFS2 PATCH] gfs2: Remove inode from ordered write list in gfs2_write_inode()

2018-01-29 Thread Abhijith Das
- Original Message - > From: "Steven Whitehouse" <swhit...@redhat.com> > To: "Abhi Das" <a...@redhat.com>, cluster-devel@redhat.com > Sent: Monday, January 29, 2018 3:46:39 AM > Subject: Re: [Cluster-devel] [GFS2 PATCH] gfs2: Remove inode fr

Re: [Cluster-devel] [GFS2 PATCH] gfs2: Remove inode from ordered write list in gfs2_write_inode()

2018-01-29 Thread Steven Whitehouse
Hi, Looks good. Do you have any figures for how big a reduction in inodes on the order list this gives? Steve. On 29/01/18 05:02, Abhi Das wrote: The vfs clears the I_DIRTY inode flag before calling gfs2_write_inode() having queued any data that needed to be written to disk. This is a good

[Cluster-devel] [GFS2 PATCH] gfs2: Remove inode from ordered write list in gfs2_write_inode()

2018-01-28 Thread Abhi Das
The vfs clears the I_DIRTY inode flag before calling gfs2_write_inode() having queued any data that needed to be written to disk. This is a good time to remove such inodes from our ordered write list so they don't hang around for long periods of time. Signed-off-by: Abhi Das ---