NFS: make 2 functions static
nfs_writedata_free() and nfs_readdata_free() can now become static. Signed-off-by: Adrian Bunk <bunk@stusta.de> Cc: Trond Myklebust <trond.myklebust@fys.uio.no> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> (cherry picked from 5e1ce40f0c3c8f67591aff17756930d7a18ceb1a commit)
This commit is contained in:
parent
ce51019327
commit
e4e20512cf
|
@ -63,7 +63,7 @@ struct nfs_read_data *nfs_readdata_alloc(unsigned int pagecount)
|
||||||
return p;
|
return p;
|
||||||
}
|
}
|
||||||
|
|
||||||
void nfs_readdata_free(struct nfs_read_data *p)
|
static void nfs_readdata_free(struct nfs_read_data *p)
|
||||||
{
|
{
|
||||||
if (p && (p->pagevec != &p->page_array[0]))
|
if (p && (p->pagevec != &p->page_array[0]))
|
||||||
kfree(p->pagevec);
|
kfree(p->pagevec);
|
||||||
|
|
|
@ -137,7 +137,7 @@ struct nfs_write_data *nfs_writedata_alloc(unsigned int pagecount)
|
||||||
return p;
|
return p;
|
||||||
}
|
}
|
||||||
|
|
||||||
void nfs_writedata_free(struct nfs_write_data *p)
|
static void nfs_writedata_free(struct nfs_write_data *p)
|
||||||
{
|
{
|
||||||
if (p && (p->pagevec != &p->page_array[0]))
|
if (p && (p->pagevec != &p->page_array[0]))
|
||||||
kfree(p->pagevec);
|
kfree(p->pagevec);
|
||||||
|
|
|
@ -476,10 +476,9 @@ static inline int nfs_wb_page(struct inode *inode, struct page* page)
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Allocate and free nfs_write_data structures
|
* Allocate nfs_write_data structures
|
||||||
*/
|
*/
|
||||||
extern struct nfs_write_data *nfs_writedata_alloc(unsigned int pagecount);
|
extern struct nfs_write_data *nfs_writedata_alloc(unsigned int pagecount);
|
||||||
extern void nfs_writedata_free(struct nfs_write_data *p);
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* linux/fs/nfs/read.c
|
* linux/fs/nfs/read.c
|
||||||
|
@ -491,10 +490,9 @@ extern int nfs_readpage_result(struct rpc_task *, struct nfs_read_data *);
|
||||||
extern void nfs_readdata_release(void *data);
|
extern void nfs_readdata_release(void *data);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Allocate and free nfs_read_data structures
|
* Allocate nfs_read_data structures
|
||||||
*/
|
*/
|
||||||
extern struct nfs_read_data *nfs_readdata_alloc(unsigned int pagecount);
|
extern struct nfs_read_data *nfs_readdata_alloc(unsigned int pagecount);
|
||||||
extern void nfs_readdata_free(struct nfs_read_data *p);
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* linux/fs/nfs3proc.c
|
* linux/fs/nfs3proc.c
|
||||||
|
|
Loading…
Reference in New Issue