mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 03:36:19 +00:00
NFSv4: Ensure nfs_dns_lookup() and nfs_dns_update() are declared static
Fix two 'sparse' warnings in fs/nfs/dns_resolve.c Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
This commit is contained in:
parent
b6d408ba8c
commit
0a6566ecd3
1 changed files with 2 additions and 2 deletions
|
@ -146,7 +146,7 @@ static int nfs_dns_show(struct seq_file *m, struct cache_detail *cd,
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct nfs_dns_ent *nfs_dns_lookup(struct cache_detail *cd,
|
static struct nfs_dns_ent *nfs_dns_lookup(struct cache_detail *cd,
|
||||||
struct nfs_dns_ent *key)
|
struct nfs_dns_ent *key)
|
||||||
{
|
{
|
||||||
struct cache_head *ch;
|
struct cache_head *ch;
|
||||||
|
@ -159,7 +159,7 @@ struct nfs_dns_ent *nfs_dns_lookup(struct cache_detail *cd,
|
||||||
return container_of(ch, struct nfs_dns_ent, h);
|
return container_of(ch, struct nfs_dns_ent, h);
|
||||||
}
|
}
|
||||||
|
|
||||||
struct nfs_dns_ent *nfs_dns_update(struct cache_detail *cd,
|
static struct nfs_dns_ent *nfs_dns_update(struct cache_detail *cd,
|
||||||
struct nfs_dns_ent *new,
|
struct nfs_dns_ent *new,
|
||||||
struct nfs_dns_ent *key)
|
struct nfs_dns_ent *key)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue