• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * Copyright (c) 2021 FUJITSU LIMITED. All rights reserved.
4  * Author: Yang Xu <xuyang2018.jy@fujitsu.com>
5  */
6 
7 #ifndef LTP_QUOTACTL_FMT_VAR_H
8 #define LTP_QUOTACTL_FMT_VAR_H
9 
10 #include "lapi/quotactl.h"
11 
12 #define QUOTACTL_FMT_VARIANTS 2
13 
14 static struct quotactl_fmt_variant {
15 	int32_t fmt_id;
16 	const char *fmt_name;
17 } fmt_variants[] = {
18 	{.fmt_id = QFMT_VFS_V0, .fmt_name = "vfsv0"},
19 	{.fmt_id = QFMT_VFS_V1, .fmt_name = "vfsv1"}
20 };
21 
22 #endif /* LAPI_QUOTACTL_FMT_VAR_H__ */
23