blob: c6c61ec97f6b9e2151a09060af329895ea5c0076 [file] [log] [blame]
/*
* Copyright (c) 2005-2014 Linux Test Project
*
* Cyril Hrubis <chrubis@suse.cz> 2014
* Michal Simek <monstr@monstr.eu> 2009
* Kumar Gala <galak@kernel.crashing.org> 2007
* Ricky Ng-Adam <rngadam@yahoo.com> 2005
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of version 2 of the GNU General Public License as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it would be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* Further, this software is distributed without any warranty that it is
* free of the rightful claim of any third person regarding infringement
* or the like. Any license provided herein, whether implied or
* otherwise, applies only to this software file. Patent licenses, if
* any, provided herein do not apply to combinations of this program with
* other software, or any other product whatsoever.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include <sys/vfs.h>
#include "test.h"
#include "tst_fs.h"
long tst_fs_type_(void (*cleanup)(void), const char *path)
{
struct statfs sbuf;
if (statfs(path, &sbuf)) {
tst_brkm(TBROK | TERRNO, cleanup,
"tst_fs_type: Failed to statfs(%s)", path);
}
return sbuf.f_type;
}
const char *tst_fs_type_name(long f_type)
{
switch (f_type) {
case TST_TMPFS_MAGIC:
return "TMPFS";
case TST_NFS_MAGIC:
return "NFS";
case TST_V9FS_MAGIC:
return "9P";
case TST_RAMFS_MAGIC:
return "RAMFS";
case TST_BTRFS_MAGIC:
return "BTRFS";
case TST_XFS_MAGIC:
return "XFS";
case TST_EXT2_OLD_MAGIC:
return "EXT2";
case TST_EXT234_MAGIC:
return "EXT2/EXT3/EXT4";
case TST_MINIX_MAGIC:
case TST_MINIX_MAGIC2:
case TST_MINIX2_MAGIC:
case TST_MINIX2_MAGIC2:
case TST_MINIX3_MAGIC:
return "MINIX";
case TST_UDF_MAGIC:
return "UDF";
case TST_SYSV2_MAGIC:
case TST_SYSV4_MAGIC:
return "SYSV";
case TST_UFS_MAGIC:
case TST_UFS2_MAGIC:
return "UFS";
case TST_F2FS_MAGIC:
return "F2FS";
case TST_NILFS_MAGIC:
return "NILFS";
case TST_EXOFS_MAGIC:
return "EXOFS";
default:
return "Unknown";
}
}