我找到了这个链接(http://www.spinics.net/lists/newbies/msg41016.html)并且一直在考虑这样做。所以我在内核模块中编写了代码:
#include <linux/path.h>
#include <linux/namei.h>
#include <linux/fs.h>
struct path p;
struct kstat ks;
kern_path(filepath, 0, &p);
vfs_getattr(&p, &ks);
printk(KERN_INFO "size: %lld\n", ks.size);
哪个不会编译,因为:
/root/kernelmodule/hello.c:15: warning: passing argument 1 of ‘vfs_getattr’ from incompatible pointer type
include/linux/fs.h:2563: note: expected ‘struct vfsmount *’ but argument is of type ‘struct path *’
/root/kernelmodule/hello.c:15: warning: passing argument 2 of ‘vfs_getattr’ from incompatible pointer type
include/linux/fs.h:2563: note: expected ‘struct dentry *’ but argument is of type ‘struct kstat *’
/root/kernelmodule/hello.c:15: error: too few arguments to function ‘vfs_getattr’
所以我真的很困惑,因为我在看这个文档: http: //lxr.free-electrons.com/source/fs/stat.c#L40
现在我在 /linux/fs.h 中看到 vfs_getattr 的原型是:
extern int vfs_getattr(struct vfsmount *, struct dentry *, struct kstat *);
任何人都可以帮助我实施吗?我正在阅读 vfsmount 和 dentry,但仍然迷路。