/proc/mounts

This commit is contained in:
chenjing 2021-04-06 15:21:29 +08:00
parent a2e59ba316
commit c13366fd92
2 changed files with 10 additions and 0 deletions

View File

@ -50,6 +50,7 @@ struct Mount {
void *data; /* private data */
uint32_t hashseed; /* Random seed for vfshash */
unsigned long mountFlags; /* Flags for mount */
char pathName[PATH_MAX]; /* path name of mount point */
};
struct MountOps {

View File

@ -257,9 +257,18 @@ int VfsProcfsClose(struct file *filep)
return result;
}
int VfsProcfsStatfs(struct Mount *mnt, struct statfs *buf)
{
(void)memset_s(buf, sizeof(struct statfs), 0, sizeof(struct statfs));
buf->f_type = PROCFS_MAGIC;
return LOS_OK;
}
const struct MountOps procfs_operations = {
.Mount = VfsProcfsMount,
.Unmount = NULL,
.Statfs = VfsProcStatfs,
};
static struct VnodeOps g_procfsVops = {