Home
last modified time | relevance | path

Searched refs:sysnames (Results 1 – 4 of 4) sorted by relevance

/linux-5.19.10/fs/afs/
Dproc.c439 struct afs_sysnames *sysnames = net->sysnames; in afs_proc_sysname_show() local
442 if (i < sysnames->nr) in afs_proc_sysname_show()
443 seq_printf(m, "%s\n", sysnames->subs[i]); in afs_proc_sysname_show()
455 names = net->sysnames; in afs_proc_sysname_start()
464 struct afs_sysnames *names = net->sysnames; in afs_proc_sysname_next()
492 struct afs_sysnames *sysnames, *kill; in afs_proc_sysname_write() local
498 sysnames = kzalloc(sizeof(*sysnames), GFP_KERNEL); in afs_proc_sysname_write()
499 if (!sysnames) in afs_proc_sysname_write()
501 refcount_set(&sysnames->usage, 1); in afs_proc_sysname_write()
502 kill = sysnames; in afs_proc_sysname_write()
[all …]
Dmain.c69 struct afs_sysnames *sysnames; in afs_net_init() local
106 sysnames = kzalloc(sizeof(*sysnames), GFP_KERNEL); in afs_net_init()
107 if (!sysnames) in afs_net_init()
109 sysnames->subs[0] = (char *)&afs_init_sysname; in afs_net_init()
110 sysnames->nr = 1; in afs_net_init()
111 refcount_set(&sysnames->usage, 1); in afs_net_init()
112 net->sysnames = sysnames; in afs_net_init()
141 afs_put_sysnames(net->sysnames); in afs_net_init()
160 afs_put_sysnames(net->sysnames); in afs_net_exit()
Dinternal.h306 struct afs_sysnames *sysnames; member
1259 static inline void afs_put_sysnames(struct afs_sysnames *sysnames) {} in afs_put_sysnames() argument
Ddir.c940 subs = net->sysnames; in afs_lookup_atsys()