[Cluster-devel] [PATCH v1 04/11] locks: make "added" in __posix_lock_file a bool

2013-05-31 Thread Jeff Layton
...save 3 bytes of stack space. Signed-off-by: Jeff Layton --- fs/locks.c |9 + 1 files changed, 5 insertions(+), 4 deletions(-) diff --git a/fs/locks.c b/fs/locks.c index a7d2253..cef0e04 100644 --- a/fs/locks.c +++ b/fs/locks.c @@ -800,7 +800,8 @@ static int __posix_lock_file(stru

Re: [Cluster-devel] [PATCH v1 04/11] locks: make "added" in __posix_lock_file a bool

2013-06-04 Thread J. Bruce Fields
On Fri, May 31, 2013 at 11:07:27PM -0400, Jeff Layton wrote: > ...save 3 bytes of stack space. > > Signed-off-by: Jeff Layton ACK.--b. > --- > fs/locks.c |9 + > 1 files changed, 5 insertions(+), 4 deletions(-) > > diff --git a/fs/locks.c b/fs/locks.c > index a7d2253..cef0e04 1006