diff options
| author | Miklos Szeredi <mszeredi@suse.cz> | 2011-10-28 14:13:29 +0200 | 
|---|---|---|
| committer | Christoph Hellwig <hch@serles.lst.de> | 2011-11-02 12:53:43 +0100 | 
| commit | bfe8684869601dacfcb2cd69ef8cfd9045f62170 (patch) | |
| tree | 4e213aaa766b26f43f0f9ec7998a7745239d9377 /fs/gfs2/glops.c | |
| parent | 6d6b77f163c7eabedbba00ed2abb7d4a570bff76 (diff) | |
| download | olio-linux-3.10-bfe8684869601dacfcb2cd69ef8cfd9045f62170.tar.xz olio-linux-3.10-bfe8684869601dacfcb2cd69ef8cfd9045f62170.zip  | |
filesystems: add set_nlink()
Replace remaining direct i_nlink updates with a new set_nlink()
updater function.
Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
Tested-by: Toshiyuki Okajima <toshi.okajima@jp.fujitsu.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/gfs2/glops.c')
| -rw-r--r-- | fs/gfs2/glops.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/glops.c b/fs/gfs2/glops.c index 78418b4fa85..1656df7aacd 100644 --- a/fs/gfs2/glops.c +++ b/fs/gfs2/glops.c @@ -299,7 +299,7 @@ static void gfs2_set_nlink(struct inode *inode, u32 nlink)  		if (nlink == 0)  			clear_nlink(inode);  		else -			inode->i_nlink = nlink; +			set_nlink(inode, nlink);  	}  }  |