summaryrefslogtreecommitdiffstats
path: root/sys/compat
diff options
context:
space:
mode:
authornetchild <netchild@FreeBSD.org>2006-08-27 08:56:54 +0000
committernetchild <netchild@FreeBSD.org>2006-08-27 08:56:54 +0000
commit33681b868dabf07c556daf5ddf2018396147b692 (patch)
tree3e282e9060098960da00f55bf8e5f701c240f024 /sys/compat
parentd7beaaec70e2c6e8d7734e36600ba5c6df7911cb (diff)
downloadFreeBSD-src-33681b868dabf07c556daf5ddf2018396147b692.zip
FreeBSD-src-33681b868dabf07c556daf5ddf2018396147b692.tar.gz
Add the linux statfs64 call. This allows Tivoli backup to proceed a little
but further on -current (still not successful, but a step into the right direction). Sponsored by: Google SoC 2006 Submitted by: rdivacky Tested by: Paul Mather <paul@gromit.dlib.vt.edu>
Diffstat (limited to 'sys/compat')
-rw-r--r--sys/compat/linux/linux_stats.c51
1 files changed, 51 insertions, 0 deletions
diff --git a/sys/compat/linux/linux_stats.c b/sys/compat/linux/linux_stats.c
index f19019a..41903fd 100644
--- a/sys/compat/linux/linux_stats.c
+++ b/sys/compat/linux/linux_stats.c
@@ -312,6 +312,19 @@ struct l_statfs {
l_int f_spare[6];
};
+struct l_statfs64 {
+ l_int f_type;
+ l_int f_bsize;
+ uint64_t f_blocks;
+ uint64_t f_bfree;
+ uint64_t f_bavail;
+ uint64_t f_files;
+ uint64_t f_ffree;
+ l_fsid_t f_fsid;
+ l_int f_namelen;
+ l_int f_spare[6];
+};
+
#define LINUX_CODA_SUPER_MAGIC 0x73757245L
#define LINUX_EXT2_SUPER_MAGIC 0xEF53L
#define LINUX_HPFS_SUPER_MAGIC 0xf995e849L
@@ -387,6 +400,44 @@ linux_statfs(struct thread *td, struct linux_statfs_args *args)
return copyout(&linux_statfs, args->buf, sizeof(linux_statfs));
}
+static void
+bsd_to_linux_statfs64(struct statfs *bsd_statfs, struct l_statfs64 *linux_statfs)
+{
+
+ linux_statfs->f_type = bsd_to_linux_ftype(bsd_statfs->f_fstypename);
+ linux_statfs->f_bsize = bsd_statfs->f_bsize;
+ linux_statfs->f_blocks = bsd_statfs->f_blocks;
+ linux_statfs->f_bfree = bsd_statfs->f_bfree;
+ linux_statfs->f_bavail = bsd_statfs->f_bavail;
+ linux_statfs->f_ffree = bsd_statfs->f_ffree;
+ linux_statfs->f_files = bsd_statfs->f_files;
+ linux_statfs->f_fsid.val[0] = bsd_statfs->f_fsid.val[0];
+ linux_statfs->f_fsid.val[1] = bsd_statfs->f_fsid.val[1];
+ linux_statfs->f_namelen = MAXNAMLEN;
+}
+
+int
+linux_statfs64(struct thread *td, struct linux_statfs64_args *args)
+{
+ struct l_statfs64 linux_statfs;
+ struct statfs bsd_statfs;
+ char *path;
+ int error;
+
+ LCONVPATHEXIST(td, args->path, &path);
+
+#ifdef DEBUG
+ if (ldebug(statfs64))
+ printf(ARGS(statfs64, "%s, *"), path);
+#endif
+ error = kern_statfs(td, path, UIO_SYSSPACE, &bsd_statfs);
+ LFREEPATH(path);
+ if (error)
+ return (error);
+ bsd_to_linux_statfs64(&bsd_statfs, &linux_statfs);
+ return copyout(&linux_statfs, args->buf, sizeof(linux_statfs));
+}
+
int
linux_fstatfs(struct thread *td, struct linux_fstatfs_args *args)
{
OpenPOWER on IntegriCloud