From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jiri Slaby Subject: Re: [PATCH] AFS: Implement file locking Date: Fri, 25 May 2007 09:31:01 +0200 Message-ID: <465690B5.2050602@gmail.com> References: <20070524165554.22292.38887.stgit@warthog.cambridge.redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: akpm@osdl.org, linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org To: David Howells Return-path: Received: from ug-out-1314.google.com ([66.249.92.174]:11536 "EHLO ug-out-1314.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751063AbXEYHbC (ORCPT ); Fri, 25 May 2007 03:31:02 -0400 Received: by ug-out-1314.google.com with SMTP id j3so1057021ugf for ; Fri, 25 May 2007 00:31:00 -0700 (PDT) In-Reply-To: <20070524165554.22292.38887.stgit@warthog.cambridge.redhat.com> Sender: linux-fsdevel-owner@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org David Howells napsal(a): > Implement file locking for AFS. > > Signed-off-by: David Howells > --- > > fs/afs/Makefile | 1 > fs/afs/afs.h | 8 + > fs/afs/afs_fs.h | 3 > fs/afs/callback.c | 3 > fs/afs/dir.c | 1 > fs/afs/file.c | 2 > fs/afs/flock.c | 558 ++++++++++++++++++++++++++++++++++++++++++++++++++++ > fs/afs/fsclient.c | 155 ++++++++++++++ > fs/afs/internal.h | 30 +++ > fs/afs/main.c | 1 > fs/afs/misc.c | 1 > fs/afs/super.c | 3 > fs/afs/vnode.c | 130 +++++++++++- > include/linux/fs.h | 4 > 14 files changed, 885 insertions(+), 15 deletions(-) > > diff --git a/fs/afs/Makefile b/fs/afs/Makefile > index 73ce561..a666710 100644 > --- a/fs/afs/Makefile > +++ b/fs/afs/Makefile > @@ -8,6 +8,7 @@ kafs-objs := \ > cmservice.o \ > dir.o \ > file.o \ > + flock.o \ > fsclient.o \ > inode.o \ > main.o \ > diff --git a/fs/afs/afs.h b/fs/afs/afs.h > index 2452579..c548aa3 100644 > --- a/fs/afs/afs.h > +++ b/fs/afs/afs.h > @@ -37,6 +37,13 @@ typedef enum { > AFS_FTYPE_SYMLINK = 3, > } afs_file_type_t; > > +typedef enum { > + AFS_LOCK_READ = 0, /* read lock request */ > + AFS_LOCK_WRITE = 1, /* write lock request */ > +} afs_lock_type_t; Why typedef? regards, -- http://www.fi.muni.cz/~xslaby/ Jiri Slaby faculty of informatics, masaryk university, brno, cz e-mail: jirislaby gmail com, gpg pubkey fingerprint: B674 9967 0407 CE62 ACC8 22A0 32CC 55C3 39D4 7A7E