Re: [PATCH 3/3] fs: __fget_light() can use __fget() in slow path

2014-01-13 Thread Paul E. McKenney
On Mon, Jan 13, 2014 at 04:49:06PM +0100, Oleg Nesterov wrote: > The slow path in __fget_light() can use __fget() to avoid the > code duplication. Saves 232 bytes. > > Signed-off-by: Oleg Nesterov Reviewed-by: Paul E. McKenney > --- > fs/file.c | 14 +++--- > 1 files changed, 3 inse

[PATCH 3/3] fs: __fget_light() can use __fget() in slow path

2014-01-13 Thread Oleg Nesterov
The slow path in __fget_light() can use __fget() to avoid the code duplication. Saves 232 bytes. Signed-off-by: Oleg Nesterov --- fs/file.c | 14 +++--- 1 files changed, 3 insertions(+), 11 deletions(-) diff --git a/fs/file.c b/fs/file.c index 50c1208..771578b 100644 --- a/fs/file.c +