/* * Michal Simek , 2009-08-03 - ramfs * Kumar Gala , 2007-11-14 - nfs * Ricky Ng-Adam , 2005-01-01 - tmpfs * * DESCRIPTION * Check if current directory is on a tmpfs/nfs/ramfs filesystem * If current directory is tmpfs/nfs/ramfs, return 1 * If current directory is NOT tmpfs/nfs/ramfs, return 0 */ #include #define TMPFS_MAGIC 0x01021994 /* man 2 statfs */ int tst_is_cwd_tmpfs(void) { struct statfs sf; statfs(".", &sf); /* Verify that the file is not on a tmpfs (in-memory) filesystem */ return (sf.f_type == TMPFS_MAGIC); } #define NFS_MAGIC 0x6969 /* man 2 statfs */ int tst_is_cwd_nfs(void) { struct statfs sf; statfs(".", &sf); /* Verify that the file is not on a nfs filesystem */ return (sf.f_type == NFS_MAGIC); } #define V9FS_MAGIC 0x01021997 /* kernel-source/include/linux/magic.h */ int tst_is_cwd_v9fs(void) { struct statfs sf; statfs(".", &sf); /* Verify that the file is not on a nfs filesystem */ return (sf.f_type == V9FS_MAGIC); } #define RAMFS_MAGIC 0x858458f6 int tst_is_cwd_ramfs(void) { struct statfs sf; statfs(".", &sf); /* Verify that the file is not on a ramfs (in-memory) filesystem */ return (sf.f_type == RAMFS_MAGIC); }