diff options
| -rw-r--r-- | fs/nfs/read.c | 2 | ||||
| -rw-r--r-- | fs/nfs/write.c | 2 | ||||
| -rw-r--r-- | include/linux/nfs_fs.h | 6 |
3 files changed, 4 insertions, 6 deletions
diff --git a/fs/nfs/read.c b/fs/nfs/read.c index 52bf634260a1..65c0c5b32351 100644 --- a/fs/nfs/read.c +++ b/fs/nfs/read.c | |||
| @@ -63,7 +63,7 @@ struct nfs_read_data *nfs_readdata_alloc(unsigned int pagecount) | |||
| 63 | return p; | 63 | return p; |
| 64 | } | 64 | } |
| 65 | 65 | ||
| 66 | void nfs_readdata_free(struct nfs_read_data *p) | 66 | static void nfs_readdata_free(struct nfs_read_data *p) |
| 67 | { | 67 | { |
| 68 | if (p && (p->pagevec != &p->page_array[0])) | 68 | if (p && (p->pagevec != &p->page_array[0])) |
| 69 | kfree(p->pagevec); | 69 | kfree(p->pagevec); |
diff --git a/fs/nfs/write.c b/fs/nfs/write.c index 86bac6a5008e..50774991f8d5 100644 --- a/fs/nfs/write.c +++ b/fs/nfs/write.c | |||
| @@ -137,7 +137,7 @@ struct nfs_write_data *nfs_writedata_alloc(unsigned int pagecount) | |||
| 137 | return p; | 137 | return p; |
| 138 | } | 138 | } |
| 139 | 139 | ||
| 140 | void nfs_writedata_free(struct nfs_write_data *p) | 140 | static void nfs_writedata_free(struct nfs_write_data *p) |
| 141 | { | 141 | { |
| 142 | if (p && (p->pagevec != &p->page_array[0])) | 142 | if (p && (p->pagevec != &p->page_array[0])) |
| 143 | kfree(p->pagevec); | 143 | kfree(p->pagevec); |
diff --git a/include/linux/nfs_fs.h b/include/linux/nfs_fs.h index 55ea853d57bc..247434553ae8 100644 --- a/include/linux/nfs_fs.h +++ b/include/linux/nfs_fs.h | |||
| @@ -476,10 +476,9 @@ static inline int nfs_wb_page(struct inode *inode, struct page* page) | |||
| 476 | } | 476 | } |
| 477 | 477 | ||
| 478 | /* | 478 | /* |
| 479 | * Allocate and free nfs_write_data structures | 479 | * Allocate nfs_write_data structures |
| 480 | */ | 480 | */ |
| 481 | extern struct nfs_write_data *nfs_writedata_alloc(unsigned int pagecount); | 481 | extern struct nfs_write_data *nfs_writedata_alloc(unsigned int pagecount); |
| 482 | extern void nfs_writedata_free(struct nfs_write_data *p); | ||
| 483 | 482 | ||
| 484 | /* | 483 | /* |
| 485 | * linux/fs/nfs/read.c | 484 | * linux/fs/nfs/read.c |
| @@ -491,10 +490,9 @@ extern int nfs_readpage_result(struct rpc_task *, struct nfs_read_data *); | |||
| 491 | extern void nfs_readdata_release(void *data); | 490 | extern void nfs_readdata_release(void *data); |
| 492 | 491 | ||
| 493 | /* | 492 | /* |
| 494 | * Allocate and free nfs_read_data structures | 493 | * Allocate nfs_read_data structures |
| 495 | */ | 494 | */ |
| 496 | extern struct nfs_read_data *nfs_readdata_alloc(unsigned int pagecount); | 495 | extern struct nfs_read_data *nfs_readdata_alloc(unsigned int pagecount); |
| 497 | extern void nfs_readdata_free(struct nfs_read_data *p); | ||
| 498 | 496 | ||
| 499 | /* | 497 | /* |
| 500 | * linux/fs/nfs3proc.c | 498 | * linux/fs/nfs3proc.c |
