Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=84dde76c4a2d99ed2d7de6ec82c53b56620900a3
Commit:     84dde76c4a2d99ed2d7de6ec82c53b56620900a3
Parent:     a19b89cad51b6f0da8f4bafdfdcfb10264cbcdea
Author:     Trond Myklebust <[EMAIL PROTECTED]>
AuthorDate: Fri May 4 14:44:06 2007 -0400
Committer:  Trond Myklebust <[EMAIL PROTECTED]>
CommitDate: Fri May 4 14:44:06 2007 -0400

    NFS: Fix a compile glitch on 64-bit systems
    
    fs/nfs/pagelist.c:226: error: conflicting types for 'nfs_pageio_init'
    include/linux/nfs_page.h:80: error: previous declaration of 
'nfs_pageio_init' was here
    
    Thanks to Andrew for spotting this...
    
    Signed-off-by: Trond Myklebust <[EMAIL PROTECTED]>
---
 fs/nfs/pagelist.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/fs/nfs/pagelist.c b/fs/nfs/pagelist.c
index fe90130..3889501 100644
--- a/fs/nfs/pagelist.c
+++ b/fs/nfs/pagelist.c
@@ -228,7 +228,7 @@ out:
 void nfs_pageio_init(struct nfs_pageio_descriptor *desc,
                     struct inode *inode,
                     int (*doio)(struct inode *, struct list_head *, unsigned 
int, size_t, int),
-                    unsigned int bsize,
+                    size_t bsize,
                     int io_flags)
 {
        INIT_LIST_HEAD(&desc->pg_list);
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to