Whamcloud - gitweb
LU-17744 ldiskfs: mballoc stats fixes
[fs/lustre-release.git] / lustre / include / lustre / lustre_lfsck_user.h
index e116e07..7b84426 100644 (file)
@@ -6,13 +6,13 @@
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License version 2 only,
  * as published by the Free Software Foundation.
-
+ *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License version 2 for more details.  A copy is
  * included in the COPYING file that accompanied this code.
-
+ *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
@@ -20,7 +20,7 @@
  * GPL HEADER END
  */
 /*
- * Copyright (c) 2012, 2013, Intel Corporation.
+ * Copyright (c) 2012, 2017, Intel Corporation.
  */
 /*
  * lustre/include/lustre/lustre_lfsck_user.h
  * Author: Fan, Yong <fan.yong@intel.com>
  */
 
-#ifndef _LUSTRE_LFSCK_USER_H
-# define _LUSTRE_LFSCK_USER_H
-# include <lustre/lustre_user.h>
-
-enum lfsck_param_flags {
-       /* Reset LFSCK iterator position to the device beginning. */
-       LPF_RESET               = 0x0001,
-
-       /* Exit when fail. */
-       LPF_FAILOUT             = 0x0002,
-
-       /* Dryrun mode, only check without modification */
-       LPF_DRYRUN              = 0x0004,
-
-       /* LFSCK runs on all targets. */
-       LPF_ALL_TGT             = 0x0008,
-
-       /* Broadcast the command to other MDTs. Only valid on the sponsor MDT */
-       LPF_BROADCAST           = 0x0010,
-
-       /* Handle orphan objects. */
-       LPF_ORPHAN              = 0x0020,
-
-       /* Create OST-object for dangling LOV EA. */
-       LPF_CREATE_OSTOBJ       = 0x0040,
-};
-
-enum lfsck_type {
-       /* For MDT and OST internal OSD consistency check/repair. */
-       LFSCK_TYPE_SCRUB        = 0x0000,
-
-       /* For MDT-OST (layout, object) consistency check/repair. */
-       LFSCK_TYPE_LAYOUT       = 0x0001,
-
-       /* For MDT-MDT (remote object) consistency check/repair. */
-       LFSCK_TYPE_DNE          = 0x0002,
-
-       /* For MDT (FID-in-dirent, linkEA) consistency check/repair. */
-       LFSCK_TYPE_NAMESPACE    = 0x0004,
-       LFSCK_TYPES_SUPPORTED   = (LFSCK_TYPE_SCRUB | LFSCK_TYPE_LAYOUT |
-                                  LFSCK_TYPE_NAMESPACE),
-       LFSCK_TYPES_DEF         = LFSCK_TYPES_SUPPORTED,
-       LFSCK_TYPES_ALL         = ((__u16)(~0))
-};
-
-#define LFSCK_VERSION_V1       1
-#define LFSCK_VERSION_V2       2
-
-#define LFSCK_SPEED_NO_LIMIT   0
-#define LFSCK_SPEED_LIMIT_DEF  LFSCK_SPEED_NO_LIMIT
-#define LFSCK_ASYNC_WIN_DEFAULT 1024
-#define LFSCK_ASYNC_WIN_MAX    ((__u16)(~0))
-
-enum lfsck_start_valid {
-       LSV_SPEED_LIMIT         = 0x00000001,
-       LSV_ERROR_HANDLE        = 0x00000002,
-       LSV_DRYRUN              = 0x00000004,
-       LSV_ASYNC_WINDOWS       = 0x00000008,
-       LSV_CREATE_OSTOBJ       = 0x00000010,
-};
-
-/* Arguments for starting lfsck. */
-struct lfsck_start {
-       /* Which arguments are valid, see 'enum lfsck_start_valid'. */
-       __u32   ls_valid;
-
-       /* How many items can be scanned at most per second. */
-       __u32   ls_speed_limit;
-
-       /* For compatibility between user space tools and kernel service. */
-       __u16   ls_version;
-
-       /* Which LFSCK components to be (have been) started. */
-       __u16   ls_active;
-
-       /* Flags for the LFSCK, see 'enum lfsck_param_flags'. */
-       __u16   ls_flags;
-
-       /* The windows size for async requests pipeline. */
-       __u16   ls_async_windows;
-};
-
-struct lfsck_stop {
-       __u32   ls_status;
-       __u16   ls_flags;
-       __u16   ls_padding_1; /* For 64-bits aligned. */
-       __u64   ls_padding_2;
-};
+/*
+ * NOTE: This file is DEPRECATED! Please include linux/lustre/lustre_lfsck_user.h
+ * directly instead of this file. This file will be removed from a
+ * future version of lustre!
+ */
 
-#endif /* _LUSTRE_LFSCK_USER_H */
+#include <linux/lustre/lustre_lfsck_user.h>
+#warning "Including lustre_lfsck_user.h is deprecated. Include linux/lustre/lustre_lfsck_user.h directly."