| /fs/proc/ |
| A D | Makefile | 6 obj-y += proc.o 15 proc-y += cmdline.o 16 proc-y += consoles.o 17 proc-y += cpuinfo.o 18 proc-y += devices.o 20 proc-y += loadavg.o 21 proc-y += meminfo.o 22 proc-y += stat.o 23 proc-y += uptime.o 24 proc-y += util.o [all …]
|
| A D | Kconfig | 3 bool "/proc file system support" if EXPERT 22 That location should be /proc. A command such as "mount -t proc proc 25 The /proc file system is explained in the file 26 <file:Documentation/filesystems/proc.rst> and on the proc(5) manpage 27 ("man 5 proc"). 33 bool "/proc/kcore support" if !ARM 42 bool "/proc/vmcore support" 84 bool "Sysctl support (/proc/sys)" if EXPERT 105 bool "Enable /proc page monitoring" if EXPERT 108 /proc/pid/smaps, /proc/pid/clear_refs, /proc/pid/pagemap, [all …]
|
| /fs/dlm/ |
| A D | user.c | 206 proc = ua->proc; in dlm_user_add_ast() 268 ua->proc = proc; in device_user_lock() 313 ua->proc = proc; in device_user_unlock() 558 if (proc) in device_write() 578 if (!proc) { in device_write() 586 if (!proc) { in device_write() 602 if (proc) { in device_write() 610 if (proc) { in device_write() 649 if (!proc) { in device_open() 683 kfree(proc); in device_close() [all …]
|
| A D | lock.h | 58 int dlm_user_purge(struct dlm_ls *ls, struct dlm_user_proc *proc, 61 void dlm_clear_proc_locks(struct dlm_ls *ls, struct dlm_user_proc *proc);
|
| A D | lock.c | 5922 ua->proc = ua_tmp->proc; in dlm_user_adopt_orphan() 6133 struct dlm_user_proc *proc) in del_proc_lock() argument 6138 if (list_empty(&proc->locks)) in del_proc_lock() 6171 lkb = del_proc_lock(ls, proc); in dlm_clear_proc_locks() 6211 spin_lock_bh(&proc->locks_spin); in purge_proc_locks() 6212 if (!list_empty(&proc->locks)) { in purge_proc_locks() 6227 spin_lock_bh(&proc->locks_spin); in purge_proc_locks() 6233 spin_unlock_bh(&proc->locks_spin); in purge_proc_locks() 6235 spin_lock_bh(&proc->asts_spin); in purge_proc_locks() 6240 spin_unlock_bh(&proc->asts_spin); in purge_proc_locks() [all …]
|
| /fs/smb/server/ |
| A D | smb2ops.c | 177 [SMB2_CREATE_HE] = { .proc = smb2_open}, 178 [SMB2_QUERY_INFO_HE] = { .proc = smb2_query_info}, 180 [SMB2_CLOSE_HE] = { .proc = smb2_close}, 181 [SMB2_ECHO_HE] = { .proc = smb2_echo}, 183 [SMB2_READ_HE] = { .proc = smb2_read}, 184 [SMB2_WRITE_HE] = { .proc = smb2_write}, 185 [SMB2_FLUSH_HE] = { .proc = smb2_flush}, 186 [SMB2_CANCEL_HE] = { .proc = smb2_cancel}, 187 [SMB2_LOCK_HE] = { .proc = smb2_lock}, 188 [SMB2_IOCTL_HE] = { .proc = smb2_ioctl}, [all …]
|
| A D | server.c | 133 if (!cmds->proc) { in __process_request() 147 ret = cmds->proc(work); in __process_request()
|
| /fs/lockd/ |
| A D | clntproc.c | 265 nlmclnt_call(const struct cred *cred, struct nlm_rqst *req, u32 proc) in nlmclnt_call() argument 279 (int)proc, host->h_name); in nlmclnt_call() 288 msg.rpc_proc = &clnt->cl_procinfo[proc]; in nlmclnt_call() 355 (int)proc, host->h_name); in __nlm_async_call() 361 msg->rpc_proc = &clnt->cl_procinfo[proc]; in __nlm_async_call() 375 task = __nlm_async_call(req, proc, msg, tk_ops); in nlm_do_async_call() 385 int nlm_async_call(struct nlm_rqst *req, u32 proc, const struct rpc_call_ops *tk_ops) in nlm_async_call() argument 391 return nlm_do_async_call(req, proc, &msg, tk_ops); in nlm_async_call() 394 int nlm_async_reply(struct nlm_rqst *req, u32 proc, const struct rpc_call_ops *tk_ops) in nlm_async_reply() argument 399 return nlm_do_async_call(req, proc, &msg, tk_ops); in nlm_async_reply() [all …]
|
| A D | svc.c | 494 static inline int is_callback(u32 proc) in is_callback() argument 496 return proc == NLMPROC_GRANTED in is_callback() 497 || proc == NLMPROC_GRANTED_MSG in is_callback() 498 || proc == NLMPROC_TEST_RES in is_callback() 499 || proc == NLMPROC_LOCK_RES in is_callback() 500 || proc == NLMPROC_CANCEL_RES in is_callback() 501 || proc == NLMPROC_UNLOCK_RES in is_callback() 502 || proc == NLMPROC_NSM_NOTIFY; in is_callback()
|
| A D | mon.c | 43 u32 proc; member 91 static int nsm_mon_unmon(struct nsm_handle *nsm, u32 proc, struct nsm_res *res, in nsm_mon_unmon() argument 100 .proc = NLMPROC_NSM_NOTIFY, in nsm_mon_unmon() 119 msg.rpc_proc = &clnt->cl_procinfo[proc]; in nsm_mon_unmon() 458 *p = cpu_to_be32(argp->proc); in encode_my_id()
|
| A D | clnt4xdr.c | 546 #define PROC(proc, argtype, restype) \ argument 547 [NLMPROC_##proc] = { \ 548 .p_proc = NLMPROC_##proc, \ 553 .p_statidx = NLMPROC_##proc, \ 554 .p_name = #proc, \
|
| A D | clntxdr.c | 552 #define PROC(proc, argtype, restype) \ argument 553 [NLMPROC_##proc] = { \ 554 .p_proc = NLMPROC_##proc, \ 559 .p_statidx = NLMPROC_##proc, \ 560 .p_name = #proc, \
|
| A D | svc4proc.c | 290 static __be32 nlm4svc_callback(struct svc_rqst *rqstp, u32 proc, in nlm4svc_callback() argument 316 if (nlm_async_reply(call, proc, &nlm4svc_callback_ops) < 0) in nlm4svc_callback()
|
| A D | svcproc.c | 322 static __be32 nlmsvc_callback(struct svc_rqst *rqstp, u32 proc, in nlmsvc_callback() argument 348 if (nlm_async_reply(call, proc, &nlmsvc_callback_ops) < 0) in nlmsvc_callback()
|
| /fs/netfs/ |
| A D | Kconfig | 17 /proc/fs/fscache/stats 52 /proc/fs/fscache/stats
|
| /fs/nfsd/ |
| A D | nfssvc.c | 949 const struct svc_procedure *proc = rqstp->rq_procinfo; in nfsd_dispatch() local 959 rqstp->rq_cachetype = proc->pc_cachetype; in nfsd_dispatch() 968 if (!proc->pc_decode(rqstp, &rqstp->rq_arg_stream)) in nfsd_dispatch() 991 *statp = proc->pc_func(rqstp); in nfsd_dispatch() 995 if (!proc->pc_encode(rqstp, &rqstp->rq_res_stream)) in nfsd_dispatch()
|
| /fs/nfs/ |
| A D | nfs2xdr.c | 1053 #define PROC(proc, argtype, restype, timer) \ argument 1054 [NFSPROC_##proc] = { \ 1055 .p_proc = NFSPROC_##proc, \ 1061 .p_statidx = NFSPROC_##proc, \ 1062 .p_name = #proc, \
|
| A D | Makefile | 19 nfsv2-y := nfs2super.o proc.o nfs2xdr.o
|
| A D | nfs3xdr.c | 2440 #define PROC(proc, argtype, restype, timer) \ argument 2441 [NFS3PROC_##proc] = { \ 2442 .p_proc = NFS3PROC_##proc, \ 2448 .p_statidx = NFS3PROC_##proc, \ 2449 .p_name = #proc, \
|
| A D | nfs4xdr.c | 7635 #define PROC(proc, argtype, restype) \ argument 7636 [NFSPROC4_CLNT_##proc] = { \ 7642 .p_statidx = NFSPROC4_CLNT_##proc, \ 7643 .p_name = #proc, \ 7646 #define STUB(proc) \ argument 7647 [NFSPROC4_CLNT_##proc] = { \ 7648 .p_name = #proc, \ 7653 PROC(proc, argtype, restype) 7656 STUB(proc) 7661 PROC(proc, argtype, restype) [all …]
|
| /fs/afs/ |
| A D | Makefile | 44 kafs-$(CONFIG_PROC_FS) += proc.o
|
| /fs/ |
| A D | Kconfig.binfmt | 93 the /proc/PID/coredump_filter pseudo-file; this setting is 94 inherited. See Documentation/filesystems/proc.rst for details. 165 mount binfmt_misc -t binfmt_misc /proc/sys/fs/binfmt_misc
|
| A D | Makefile | 55 obj-$(CONFIG_PROC_FS) += proc/
|
| /fs/jfs/ |
| A D | Kconfig | 51 to be made available to the user in the /proc/fs/jfs/ directory.
|
| /fs/smb/client/ |
| A D | Kconfig | 61 request timing to be displayed in /proc/fs/cifs/DebugData and also 63 value of /proc/fs/cifs/cifsFYI). See Documentation/admin-guide/cifs/usage.rst
|