Linux sys_stat vfs_statx与cp_new_stat64填充
Linux sys_stat vfs_statx与cp_new_stat64填充stat(2) 系列系统调用在内核的统一入口是 vfs_statx。64 位架构上,通过 ksys_stat 进入:c
long ksys_stat(const char __user *filename, struct kstat __user *statbuf)
{
struct kstat stat;
int error;er…