Whamcloud - gitweb
LU-5580 ptlrpc: policy switch directly in tbf
[fs/lustre-release.git] / lustre / include / lustre_lfsck.h
index 0d6f666..4c86cfe 100644 (file)
@@ -20,7 +20,7 @@
  * GPL HEADER END
  */
 /*
- * Copyright (c) 2013, Intel Corporation.
+ * Copyright (c) 2013, 2014, Intel Corporation.
  */
 /*
  * lustre/include/lustre_lfsck.h
@@ -144,24 +144,25 @@ int lfsck_start(const struct lu_env *env, struct dt_device *key,
 int lfsck_stop(const struct lu_env *env, struct dt_device *key,
               struct lfsck_stop *stop);
 int lfsck_in_notify(const struct lu_env *env, struct dt_device *key,
-                   struct lfsck_request *lr);
+                   struct lfsck_request *lr, struct thandle *th);
 int lfsck_query(const struct lu_env *env, struct dt_device *key,
                struct lfsck_request *lr);
 
-int lfsck_get_speed(struct dt_device *key, void *buf, int len);
+int lfsck_get_speed(struct seq_file *m, struct dt_device *key);
 int lfsck_set_speed(struct dt_device *key, int val);
-int lfsck_get_windows(struct dt_device *key, void *buf, int len);
+int lfsck_get_windows(struct seq_file *m, struct dt_device *key);
 int lfsck_set_windows(struct dt_device *key, int val);
 
-int lfsck_dump(struct dt_device *key, void *buf, int len, enum lfsck_type type);
+int lfsck_dump(struct seq_file *m, struct dt_device *key, enum lfsck_type type);
 
 static inline void lfsck_pack_rfa(struct lfsck_request *lr,
-                                 const struct lu_fid *fid)
+                                 const struct lu_fid *fid,
+                                 __u32 event, __u16 com)
 {
        memset(lr, 0, sizeof(*lr));
-       lr->lr_event = LE_FID_ACCESSED;
-       lr->lr_active = LT_LAYOUT;
        lr->lr_fid = *fid;
+       lr->lr_event = event;
+       lr->lr_active = com;
 }
 
 #endif /* _LUSTRE_LFSCK_H */