Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:kernel\trace\trace.c Create Date:2022-07-28 12:03:45
Last Modify:2020-03-12 14:18:49 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:trace_automount

Proto:static struct vfsmount *trace_automount(struct dentry *mntpt, void *ingore)

Type:struct vfsmount

Parameter:

TypeParameterName
struct dentry *mntpt
void *ingore
8785  type = get_fs_type("tracefs")
8786  If Not type Then Return NULL
8788  mnt = vfs_submount(mntpt, type, "tracefs", NULL)
8789  put_filesystem(type)
8790  If IS_ERR(mnt) Then Return NULL
8792  mntget(mnt)
8794  Return mnt