]> git.neil.brown.name Git - history.git/commitdiff
[PATCH] A basic NFSv4 client for 2.5.x
authorTrond Myklebust <trond.myklebust@fys.uio.no>
Thu, 10 Oct 2002 05:46:18 +0000 (22:46 -0700)
committerLinus Torvalds <torvalds@penguin.transmeta.com>
Thu, 10 Oct 2002 05:46:18 +0000 (22:46 -0700)
In a number of places in the NFS client, I had to change

  #ifdef CONFIG_NFS_V3
     /* ... */
  #endif

to

  #if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
     /* ... */
  #endif

fs/nfs/flushd.c
fs/nfs/pagelist.c
fs/nfs/write.c
include/linux/nfs_fs.h

index c636ab35f8f830b96fa365e02c408c902080342a..979a1163e68ba4db9ba67a29f5dc31b397c19eec 100644 (file)
@@ -171,7 +171,7 @@ nfs_flushd(struct rpc_task *task)
                        nfs_pagein_list(&head, server->rpages);
                        continue;
                }
-#ifdef CONFIG_NFS_V3
+#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
                if (nfs_scan_lru_commit_timeout(server, &head)) {
                        spin_unlock(&nfs_wreq_lock);
                        nfs_commit_list(&head, FLUSH_AGING);
index 827286b67d4b1cd5708ea523825b86af18c14e1f..c2b2ffab43b862725825390ae273b31bd2c25fc1 100644 (file)
@@ -507,7 +507,7 @@ nfs_try_to_free_pages(struct nfs_server *server)
                        continue;
                }
 
-#ifdef CONFIG_NFS_V3
+#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
                /* Let's try to free up some completed NFSv3 unstable writes */
                nfs_scan_lru_commit(server, &head);
                if (!list_empty(&head)) {
index ae118cb1f28c02e6e3bdc1cbacf0cc93ec030475..a1e8bf8db389dff7163c3577475ce95f2d833c1b 100644 (file)
@@ -88,7 +88,7 @@ static struct nfs_page * nfs_update_request(struct file*, struct inode *,
                                            unsigned int, unsigned int);
 static void    nfs_strategy(struct inode *inode);
 static void    nfs_writeback_done(struct rpc_task *);
-#ifdef CONFIG_NFS_V3
+#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
 static void    nfs_commit_done(struct rpc_task *);
 #endif
 
@@ -414,7 +414,7 @@ nfs_dirty_request(struct nfs_page *req)
        return !list_empty(&req->wb_list) && req->wb_list_head == &nfsi->dirty;
 }
 
-#ifdef CONFIG_NFS_V3
+#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
 /*
  * Add a request to the inode's commit list.
  */
@@ -552,7 +552,7 @@ nfs_scan_dirty(struct inode *inode, struct list_head *dst, struct file *file, un
        return res;
 }
 
-#ifdef CONFIG_NFS_V3
+#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
 /**
  * nfs_scan_lru_commit_timeout - Scan LRU list for timed out commit requests
  * @server: NFS superblock data
@@ -747,7 +747,7 @@ nfs_strategy(struct inode *inode)
 
        dirty  = NFS_I(inode)->ndirty;
        wpages = NFS_SERVER(inode)->wpages;
-#ifdef CONFIG_NFS_V3
+#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
        if (NFS_PROTO(inode)->version == 2) {
                if (dirty >= NFS_STRATEGY_PAGES * wpages)
                        nfs_flush_file(inode, NULL, 0, 0, 0);
@@ -1032,7 +1032,7 @@ nfs_writeback_done(struct rpc_task *task)
                 * an error. */
                task->tk_status = -EIO;
        }
-#ifdef CONFIG_NFS_V3
+#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
        if (resp->verf->committed < argp->stable && task->tk_status >= 0) {
                /* We tried a write call, but the server did not
                 * commit data to stable storage even though we
@@ -1082,7 +1082,7 @@ nfs_writeback_done(struct rpc_task *task)
                        goto next;
                }
 
-#ifdef CONFIG_NFS_V3
+#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
                if (argp->stable != NFS_UNSTABLE || resp->verf->committed == NFS_FILE_SYNC) {
                        nfs_inode_remove_request(req);
                        dprintk(" OK\n");
@@ -1101,7 +1101,7 @@ nfs_writeback_done(struct rpc_task *task)
 }
 
 
-#ifdef CONFIG_NFS_V3
+#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
 /*
  * Set up the argument/result storage required for the RPC call.
  */
@@ -1265,7 +1265,7 @@ int nfs_flush_file(struct inode *inode, struct file *file, unsigned long idx_sta
        return res;
 }
 
-#ifdef CONFIG_NFS_V3
+#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
 int nfs_commit_file(struct inode *inode, struct file *file, unsigned long idx_start,
                    unsigned int npages, int how)
 {
@@ -1302,7 +1302,7 @@ int nfs_sync_file(struct inode *inode, struct file *file, unsigned long idx_star
                        error = nfs_wait_on_requests(inode, file, idx_start, npages);
                if (error == 0)
                        error = nfs_flush_file(inode, file, idx_start, npages, how);
-#ifdef CONFIG_NFS_V3
+#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
                if (error == 0)
                        error = nfs_commit_file(inode, file, idx_start, npages, how);
 #endif
index b06a0c254838410b2a4dae041e0137f8eba983cd..a53ad5ea4ceb45274012fe5c27ca5356601129cd 100644 (file)
@@ -330,7 +330,7 @@ extern int  nfs_flush_file(struct inode *, struct file *, unsigned long, unsigne
 extern int  nfs_flush_list(struct list_head *, int, int);
 extern int  nfs_scan_lru_dirty(struct nfs_server *, struct list_head *);
 extern int  nfs_scan_lru_dirty_timeout(struct nfs_server *, struct list_head *);
-#ifdef CONFIG_NFS_V3
+#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
 extern int  nfs_commit_file(struct inode *, struct file *, unsigned long, unsigned int, int);
 extern int  nfs_commit_list(struct list_head *, int);
 extern int  nfs_scan_lru_commit(struct nfs_server *, struct list_head *);