summaryrefslogtreecommitdiffstats
path: root/kernel/tests/lib/tst_fs_type.c
blob: 1d0ac9669237138f55335ad90c5c53a34d787d23 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*
 * 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 0;
	}

	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";
	case TST_OVERLAYFS_MAGIC:
		return "OVERLAYFS";
	default:
		return "Unknown";
	}
}