Whamcloud - gitweb
LU-9201 libcfs: reduce libcfs checksum speed test time
[fs/lustre-release.git] / lustre / ofd / ofd_internal.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2012, 2016, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  */
32
33 #ifndef _OFD_INTERNAL_H
34 #define _OFD_INTERNAL_H
35
36 #include <obd.h>
37 #include <obd_class.h>
38 #include <dt_object.h>
39 #include <md_object.h>
40 #include <lustre_fid.h>
41
42 #define OFD_INIT_OBJID  0
43 #define OFD_PRECREATE_BATCH_DEFAULT (OBJ_SUBDIR_COUNT * 4)
44
45 /* on small filesystems we should not precreate too many objects in
46  * a single transaction, otherwise we can overflow transactions */
47 #define OFD_PRECREATE_SMALL_FS          (1024ULL * 1024 * 1024)
48 #define OFD_PRECREATE_BATCH_SMALL       8
49
50 /* Limit the returned fields marked valid to those that we actually might set */
51 #define OFD_VALID_FLAGS (LA_TYPE | LA_MODE | LA_SIZE | LA_BLOCKS | \
52                          LA_BLKSIZE | LA_ATIME | LA_MTIME | LA_CTIME)
53
54 /* per-client-per-object persistent state (LRU) */
55 struct ofd_mod_data {
56         struct list_head fmd_list;        /* linked to fed_mod_list */
57         struct lu_fid    fmd_fid;         /* FID being written to */
58         __u64            fmd_mactime_xid; /* xid highest {m,a,c}time setattr */
59         cfs_time_t       fmd_expire;      /* time when the fmd should expire */
60         int              fmd_refcount;    /* reference counter - list holds 1 */
61 };
62
63 #define OFD_FMD_MAX_NUM_DEFAULT 128
64 #define OFD_FMD_MAX_AGE_DEFAULT msecs_to_jiffies((obd_timeout+10)*MSEC_PER_SEC)
65
66 #define OFD_SOFT_SYNC_LIMIT_DEFAULT 16
67
68 /* request stats */
69 enum {
70         LPROC_OFD_STATS_READ = 0,
71         LPROC_OFD_STATS_WRITE,
72         LPROC_OFD_STATS_GETATTR,
73         LPROC_OFD_STATS_SETATTR,
74         LPROC_OFD_STATS_PUNCH,
75         LPROC_OFD_STATS_SYNC,
76         LPROC_OFD_STATS_DESTROY,
77         LPROC_OFD_STATS_CREATE,
78         LPROC_OFD_STATS_STATFS,
79         LPROC_OFD_STATS_GET_INFO,
80         LPROC_OFD_STATS_SET_INFO,
81         LPROC_OFD_STATS_QUOTACTL,
82         LPROC_OFD_STATS_LAST,
83 };
84
85 static inline void ofd_counter_incr(struct obd_export *exp, int opcode,
86                                     char *jobid, long amount)
87 {
88         if (exp->exp_obd && exp->exp_obd->obd_stats)
89                 lprocfs_counter_add(exp->exp_obd->obd_stats, opcode, amount);
90
91         if (exp->exp_obd && exp->exp_obd->u.obt.obt_jobstats.ojs_hash &&
92             (exp_connect_flags(exp) & OBD_CONNECT_JOBSTATS))
93                 lprocfs_job_stats_log(exp->exp_obd, jobid, opcode, amount);
94
95         if (exp->exp_nid_stats != NULL &&
96             exp->exp_nid_stats->nid_stats != NULL) {
97                 lprocfs_counter_add(exp->exp_nid_stats->nid_stats, opcode,
98                                     amount);
99         }
100 }
101
102 struct ofd_seq {
103         struct list_head        os_list;
104         struct ost_id           os_oi;
105         spinlock_t              os_last_oid_lock;
106         struct mutex            os_create_lock;
107         atomic_t                os_refc;
108         struct dt_object        *os_lastid_obj;
109         unsigned long           os_destroys_in_progress:1;
110 };
111
112 struct ofd_device {
113         struct dt_device         ofd_dt_dev;
114         struct dt_device        *ofd_osd;
115         struct obd_export       *ofd_osd_exp;
116         struct dt_device_param   ofd_dt_conf;
117         /* DLM name-space for meta-data locks maintained by this server */
118         struct ldlm_namespace   *ofd_namespace;
119
120         /* last_rcvd file */
121         struct lu_target         ofd_lut;
122         struct dt_object        *ofd_health_check_file;
123         struct local_oid_storage *ofd_los;
124
125         __u64                    ofd_inconsistency_self_detected;
126         __u64                    ofd_inconsistency_self_repaired;
127
128         struct list_head        ofd_seq_list;
129         rwlock_t                ofd_seq_list_lock;
130         int                     ofd_seq_count;
131         int                     ofd_precreate_batch;
132         spinlock_t              ofd_batch_lock;
133
134         /* protect all statfs-related counters */
135         spinlock_t               ofd_osfs_lock;
136         /* statfs optimization: we cache a bit  */
137         struct obd_statfs        ofd_osfs;
138         __u64                    ofd_osfs_age;
139         int                      ofd_blockbits;
140         /* counters used during statfs update, protected by ofd_osfs_lock.
141          * record when some statfs refresh are in progress */
142         int                      ofd_statfs_inflight;
143
144         /* writes between prep & commit which might be accounted twice in
145          * ofd_osfs.os_bavail */
146         u64                      ofd_osfs_unstable;
147
148         /* track writes completed while statfs refresh is underway.
149          * tracking is only effective when ofd_statfs_inflight > 1 */
150         u64                      ofd_osfs_inflight;
151
152         /* grants: all values in bytes */
153         /* grant lock to protect all grant counters */
154         spinlock_t               ofd_grant_lock;
155         /* total amount of dirty data reported by clients in incoming obdo */
156         u64                      ofd_tot_dirty;
157         /* sum of filesystem space granted to clients for async writes */
158         u64                      ofd_tot_granted;
159         /* grant used by I/Os in progress (between prepare and commit) */
160         u64                      ofd_tot_pending;
161         /* number of clients using grants */
162         int                      ofd_tot_granted_clients;
163
164         /* preferred BRW size, decided by storage type and capability */
165         __u32                    ofd_brw_size;
166         /* checksum types supported on this node */
167         enum cksum_types         ofd_cksum_types_supported;
168
169         /* ofd mod data: ofd_device wide values */
170         int                      ofd_fmd_max_num; /* per ofd ofd_mod_data */
171         cfs_duration_t           ofd_fmd_max_age; /* time to fmd expiry */
172
173         spinlock_t               ofd_flags_lock;
174         unsigned long            ofd_raid_degraded:1,
175                                  /* sync journal on writes */
176                                  ofd_syncjournal:1,
177                                  /* shall we grant space to clients not
178                                   * supporting OBD_CONNECT_GRANT_PARAM? */
179                                  ofd_grant_compat_disable:1,
180                                  /* Protected by ofd_lastid_rwsem. */
181                                  ofd_lastid_rebuilding:1,
182                                  ofd_record_fid_accessed:1,
183                                  ofd_lfsck_verify_pfid:1,
184                                  ofd_skip_lfsck:1;
185         struct seq_server_site   ofd_seq_site;
186         /* the limit of SOFT_SYNC RPCs that will trigger a soft sync */
187         unsigned int             ofd_soft_sync_limit;
188         /* Protect ::ofd_lastid_rebuilding */
189         struct rw_semaphore      ofd_lastid_rwsem;
190         __u64                    ofd_lastid_gen;
191         struct ptlrpc_thread     ofd_inconsistency_thread;
192         struct list_head         ofd_inconsistency_list;
193         spinlock_t               ofd_inconsistency_lock;
194 };
195
196 static inline struct ofd_device *ofd_dev(struct lu_device *d)
197 {
198         return container_of0(d, struct ofd_device, ofd_dt_dev.dd_lu_dev);
199 }
200
201 static inline struct obd_device *ofd_obd(struct ofd_device *ofd)
202 {
203         return ofd->ofd_dt_dev.dd_lu_dev.ld_obd;
204 }
205
206 static inline struct ofd_device *ofd_exp(struct obd_export *exp)
207 {
208         return ofd_dev(exp->exp_obd->obd_lu_dev);
209 }
210
211 static inline char *ofd_name(struct ofd_device *ofd)
212 {
213         return ofd->ofd_dt_dev.dd_lu_dev.ld_obd->obd_name;
214 }
215
216 struct ofd_object {
217         struct lu_object_header ofo_header;
218         struct dt_object        ofo_obj;
219         struct lu_fid           ofo_pfid;
220         unsigned int            ofo_pfid_checking:1,
221                                 ofo_pfid_verified:1;
222 };
223
224 static inline struct ofd_object *ofd_obj(struct lu_object *o)
225 {
226         return container_of0(o, struct ofd_object, ofo_obj.do_lu);
227 }
228
229 static inline int ofd_object_exists(struct ofd_object *obj)
230 {
231         LASSERT(obj != NULL);
232         if (lu_object_is_dying(obj->ofo_obj.do_lu.lo_header))
233                 return 0;
234         return lu_object_exists(&obj->ofo_obj.do_lu);
235 }
236
237 static inline struct dt_object *fo2dt(struct ofd_object *obj)
238 {
239         return &obj->ofo_obj;
240 }
241
242 static inline struct dt_object *ofd_object_child(struct ofd_object *_obj)
243 {
244         struct lu_object *lu = &(_obj)->ofo_obj.do_lu;
245
246         return container_of0(lu_object_next(lu), struct dt_object, do_lu);
247 }
248
249 static inline struct ofd_device *ofd_obj2dev(const struct ofd_object *fo)
250 {
251         return ofd_dev(fo->ofo_obj.do_lu.lo_dev);
252 }
253
254 static inline void ofd_read_lock(const struct lu_env *env,
255                                  struct ofd_object *fo)
256 {
257         struct dt_object  *next = ofd_object_child(fo);
258
259         next->do_ops->do_read_lock(env, next, 0);
260 }
261
262 static inline void ofd_read_unlock(const struct lu_env *env,
263                                    struct ofd_object *fo)
264 {
265         struct dt_object  *next = ofd_object_child(fo);
266
267         next->do_ops->do_read_unlock(env, next);
268 }
269
270 static inline void ofd_write_lock(const struct lu_env *env,
271                                   struct ofd_object *fo)
272 {
273         struct dt_object *next = ofd_object_child(fo);
274
275         next->do_ops->do_write_lock(env, next, 0);
276 }
277
278 static inline void ofd_write_unlock(const struct lu_env *env,
279                                     struct ofd_object *fo)
280 {
281         struct dt_object  *next = ofd_object_child(fo);
282
283         next->do_ops->do_write_unlock(env, next);
284 }
285
286 /*
287  * Common data shared by obdofd-level handlers. This is allocated per-thread
288  * to reduce stack consumption.
289  */
290 struct ofd_thread_info {
291         const struct lu_env             *fti_env;
292
293         struct obd_export               *fti_exp;
294         __u64                            fti_xid;
295         __u64                            fti_pre_version;
296
297         struct lu_fid                    fti_fid;
298         struct lu_attr                   fti_attr;
299         struct lu_attr                   fti_attr2;
300         struct ldlm_res_id               fti_resid;
301         union {
302                 struct filter_fid        fti_mds_fid;
303                 struct filter_fid_old    fti_mds_fid_old;
304         };
305         struct ost_id                    fti_ostid;
306         struct ofd_object               *fti_obj;
307         union {
308                 char                     name[64]; /* for ofd_init0() */
309                 struct obd_statfs        osfs;    /* for obdofd_statfs() */
310         } fti_u;
311
312         /* Ops object filename */
313         struct lu_name                   fti_name;
314         struct dt_object_format          fti_dof;
315         struct lu_buf                    fti_buf;
316         loff_t                           fti_off;
317
318         /* Space used by the I/O, used by grant code */
319         unsigned long                    fti_used;
320         struct ost_lvb                   fti_lvb;
321         union {
322                 struct lfsck_request     fti_lr;
323                 struct obd_connect_data  fti_ocd;
324         };
325 };
326
327 extern void target_recovery_fini(struct obd_device *obd);
328 extern void target_recovery_init(struct lu_target *lut, svc_handler_t handler);
329
330 /* ofd_dev.c */
331 extern struct lu_context_key ofd_thread_key;
332 int ofd_postrecov(const struct lu_env *env, struct ofd_device *ofd);
333 int ofd_fiemap_get(const struct lu_env *env, struct ofd_device *ofd,
334                    struct lu_fid *fid, struct fiemap *fiemap);
335
336 /* ofd_obd.c */
337 extern struct obd_ops ofd_obd_ops;
338 int ofd_statfs_internal(const struct lu_env *env, struct ofd_device *ofd,
339                         struct obd_statfs *osfs, __u64 max_age,
340                         int *from_cache);
341 int ofd_destroy_by_fid(const struct lu_env *env, struct ofd_device *ofd,
342                        const struct lu_fid *fid, int orphan);
343 int ofd_statfs(const struct lu_env *env,  struct obd_export *exp,
344                struct obd_statfs *osfs, __u64 max_age, __u32 flags);
345 int ofd_obd_disconnect(struct obd_export *exp);
346
347 /* ofd_fs.c */
348 u64 ofd_seq_last_oid(struct ofd_seq *oseq);
349 void ofd_seq_last_oid_set(struct ofd_seq *oseq, u64 id);
350 int ofd_seq_last_oid_write(const struct lu_env *env, struct ofd_device *ofd,
351                            struct ofd_seq *oseq);
352 int ofd_seqs_init(const struct lu_env *env, struct ofd_device *ofd);
353 struct ofd_seq *ofd_seq_get(struct ofd_device *ofd, u64 seq);
354 void ofd_seq_put(const struct lu_env *env, struct ofd_seq *oseq);
355
356 int ofd_fs_setup(const struct lu_env *env, struct ofd_device *ofd,
357                  struct obd_device *obd);
358 void ofd_fs_cleanup(const struct lu_env *env, struct ofd_device *ofd);
359 int ofd_precreate_batch(struct ofd_device *ofd, int batch);
360 struct ofd_seq *ofd_seq_load(const struct lu_env *env, struct ofd_device *ofd,
361                              u64 seq);
362 void ofd_seqs_fini(const struct lu_env *env, struct ofd_device *ofd);
363 void ofd_seqs_free(const struct lu_env *env, struct ofd_device *ofd);
364
365 /* ofd_io.c */
366 int ofd_start_inconsistency_verification_thread(struct ofd_device *ofd);
367 int ofd_stop_inconsistency_verification_thread(struct ofd_device *ofd);
368 int ofd_verify_ff(const struct lu_env *env, struct ofd_object *fo,
369                   struct obdo *oa);
370 int ofd_preprw(const struct lu_env *env,int cmd, struct obd_export *exp,
371                struct obdo *oa, int objcount, struct obd_ioobj *obj,
372                struct niobuf_remote *rnb, int *nr_local,
373                struct niobuf_local *lnb);
374 int ofd_commitrw(const struct lu_env *env, int cmd, struct obd_export *exp,
375                  struct obdo *oa, int objcount, struct obd_ioobj *obj,
376                  struct niobuf_remote *rnb, int npages,
377                  struct niobuf_local *lnb, int old_rc);
378
379 /* ofd_trans.c */
380 struct thandle *ofd_trans_create(const struct lu_env *env,
381                                  struct ofd_device *ofd);
382 int ofd_trans_start(const struct lu_env *env,
383                     struct ofd_device *ofd, struct ofd_object *fo,
384                     struct thandle *th);
385 int ofd_trans_stop(const struct lu_env *env, struct ofd_device *ofd,
386                     struct thandle *th, int rc);
387 int ofd_txn_stop_cb(const struct lu_env *env, struct thandle *txn,
388                     void *cookie);
389
390 /* lproc_ofd.c */
391 #ifdef CONFIG_PROC_FS
392 extern struct lprocfs_vars lprocfs_ofd_obd_vars[];
393 void ofd_stats_counter_init(struct lprocfs_stats *stats);
394 #else
395 static inline void ofd_stats_counter_init(struct lprocfs_stats *stats) {}
396 #endif
397
398 /* ofd_objects.c */
399 struct ofd_object *ofd_object_find(const struct lu_env *env,
400                                    struct ofd_device *ofd,
401                                    const struct lu_fid *fid);
402 int ofd_object_ff_load(const struct lu_env *env, struct ofd_object *fo);
403 int ofd_precreate_objects(const struct lu_env *env, struct ofd_device *ofd,
404                           u64 id, struct ofd_seq *oseq, int nr, int sync);
405
406 void ofd_object_put(const struct lu_env *env, struct ofd_object *fo);
407 int ofd_attr_set(const struct lu_env *env, struct ofd_object *fo,
408                  struct lu_attr *la, struct filter_fid *ff);
409 int ofd_object_punch(const struct lu_env *env, struct ofd_object *fo,
410                      __u64 start, __u64 end, struct lu_attr *la,
411                      struct filter_fid *ff, struct obdo *oa);
412 int ofd_object_destroy(const struct lu_env *, struct ofd_object *, int);
413 int ofd_attr_get(const struct lu_env *env, struct ofd_object *fo,
414                  struct lu_attr *la);
415 int ofd_attr_handle_ugid(const struct lu_env *env, struct ofd_object *fo,
416                          struct lu_attr *la, int is_setattr);
417
418 static inline
419 struct ofd_object *ofd_object_find_exists(const struct lu_env *env,
420                                           struct ofd_device *ofd,
421                                           const struct lu_fid *fid)
422 {
423         struct ofd_object *fo;
424
425         fo = ofd_object_find(env, ofd, fid);
426         if (!IS_ERR(fo) && !ofd_object_exists(fo)) {
427                 ofd_object_put(env, fo);
428                 fo = ERR_PTR(-ENOENT);
429         }
430         return fo;
431 }
432
433 /* ofd_grants.c */
434 static inline int ofd_grant_param_supp(struct obd_export *exp)
435 {
436         return !!(exp_connect_flags(exp) & OBD_CONNECT_GRANT_PARAM);
437 }
438
439 /* Blocksize used for client not supporting OBD_CONNECT_GRANT_PARAM.
440  * That's 4KB=2^12 which is the biggest block size known to work whatever
441  * the client's page size is. */
442 #define COMPAT_BSIZE_SHIFT 12
443
444 static inline int ofd_grant_prohibit(struct obd_export *exp,
445                                      struct ofd_device *ofd)
446 {
447         /* When ofd_grant_compat_disable is set, we don't grant any space to
448          * clients not supporting OBD_CONNECT_GRANT_PARAM.
449          * Otherwise, space granted to such a client is inflated since it
450          * consumes PAGE_SIZE of grant space per block */
451         return !!(ofd_obd(ofd)->obd_self_export != exp &&
452                   !ofd_grant_param_supp(exp) && ofd->ofd_grant_compat_disable);
453 }
454
455 void ofd_grant_sanity_check(struct obd_device *obd, const char *func);
456 void ofd_grant_connect(const struct lu_env *env, struct obd_export *exp,
457                        struct obd_connect_data *data, bool new_conn);
458 void ofd_grant_discard(struct obd_export *exp);
459 void ofd_grant_prepare_read(const struct lu_env *env, struct obd_export *exp,
460                             struct obdo *oa);
461 void ofd_grant_prepare_write(const struct lu_env *env, struct obd_export *exp,
462                              struct obdo *oa, struct niobuf_remote *rnb,
463                              int niocount);
464 void ofd_grant_commit(struct obd_export *exp, unsigned long grant_used, int rc);
465 int ofd_grant_commit_cb_add(struct thandle *th, struct obd_export *exp,
466                             unsigned long grant);
467 long ofd_grant_create(const struct lu_env *env, struct obd_export *exp,
468                       int *nr);
469
470 /* ofd_fmd.c */
471 int ofd_fmd_init(void);
472 void ofd_fmd_exit(void);
473 struct ofd_mod_data *ofd_fmd_find(struct obd_export *exp,
474                                   const struct lu_fid *fid);
475 struct ofd_mod_data *ofd_fmd_get(struct obd_export *exp,
476                                  const struct lu_fid *fid);
477 void ofd_fmd_put(struct obd_export *exp, struct ofd_mod_data *fmd);
478 void ofd_fmd_expire(struct obd_export *exp);
479 void ofd_fmd_cleanup(struct obd_export *exp);
480 #ifdef DO_FMD_DROP
481 void ofd_fmd_drop(struct obd_export *exp, const struct lu_fid *fid);
482 #else
483 #define ofd_fmd_drop(exp, fid) do {} while (0)
484 #endif
485
486 /* ofd_dev.c */
487 int ofd_fid_set_index(const struct lu_env *env, struct ofd_device *ofd,
488                       int index);
489 int ofd_fid_init(const struct lu_env *env, struct ofd_device *ofd);
490 int ofd_fid_fini(const struct lu_env *env, struct ofd_device *ofd);
491
492 /* ofd_lvb.c */
493 extern struct ldlm_valblock_ops ofd_lvbo;
494
495 /* ofd_dlm.c */
496 int ofd_intent_policy(struct ldlm_namespace *ns, struct ldlm_lock **lockp,
497                       void *req_cookie, enum ldlm_mode mode, __u64 flags,
498                       void *data);
499
500 static inline struct ofd_thread_info *ofd_info(const struct lu_env *env)
501 {
502         struct ofd_thread_info *info;
503
504         lu_env_refill((void *)env);
505         info = lu_context_key_get(&env->le_ctx, &ofd_thread_key);
506         LASSERT(info);
507         return info;
508 }
509
510 static inline struct ofd_thread_info *ofd_info_init(const struct lu_env *env,
511                                                     struct obd_export *exp)
512 {
513         struct ofd_thread_info *info;
514
515         info = ofd_info(env);
516         LASSERT(info->fti_exp == NULL);
517         LASSERT(info->fti_env == NULL);
518         LASSERT(info->fti_attr.la_valid == 0);
519
520         info->fti_env = env;
521         info->fti_exp = exp;
522         info->fti_pre_version = 0;
523         return info;
524 }
525
526 static inline struct ofd_thread_info *tsi2ofd_info(struct tgt_session_info *tsi)
527 {
528         struct ptlrpc_request   *req = tgt_ses_req(tsi);
529         struct ofd_thread_info  *info;
530
531         info = ofd_info(tsi->tsi_env);
532         LASSERT(info->fti_exp == NULL);
533         LASSERT(info->fti_env == NULL);
534         LASSERT(info->fti_attr.la_valid == 0);
535
536         info->fti_env = tsi->tsi_env;
537         info->fti_exp = tsi->tsi_exp;
538
539         info->fti_xid = req->rq_xid;
540         /** VBR: take versions from request */
541         if (req->rq_reqmsg != NULL &&
542             lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY) {
543                 __u64 *pre_version = lustre_msg_get_versions(req->rq_reqmsg);
544
545                 info->fti_pre_version = pre_version ? pre_version[0] : 0;
546         }
547         return info;
548 }
549
550 /* sync on lock cancel is useless when we force a journal flush,
551  * and if we enable async journal commit, we should also turn on
552  * sync on lock cancel if it is not enabled already. */
553 static inline void ofd_slc_set(struct ofd_device *ofd)
554 {
555         if (ofd->ofd_syncjournal == 1)
556                 ofd->ofd_lut.lut_sync_lock_cancel = NEVER_SYNC_ON_CANCEL;
557         else if (ofd->ofd_lut.lut_sync_lock_cancel == NEVER_SYNC_ON_CANCEL)
558                 ofd->ofd_lut.lut_sync_lock_cancel = ALWAYS_SYNC_ON_CANCEL;
559 }
560
561 static inline void ofd_prepare_fidea(struct filter_fid *ff,
562                                      const struct obdo *oa)
563 {
564         /* packing fid and converting it to LE for storing into EA.
565          * Here ->o_stripe_idx should be filled by LOV and rest of
566          * fields - by client. */
567         ff->ff_parent.f_seq = cpu_to_le64(oa->o_parent_seq);
568         ff->ff_parent.f_oid = cpu_to_le32(oa->o_parent_oid);
569         /* XXX: we are ignoring o_parent_ver here, since this should
570          *      be the same for all objects in this fileset. */
571         ff->ff_parent.f_ver = cpu_to_le32(oa->o_stripe_idx);
572 }
573
574 static inline int ofd_validate_seq(struct obd_export *exp, __u64 seq)
575 {
576         struct filter_export_data *fed = &exp->exp_filter_data;
577
578         if (unlikely(seq == FID_SEQ_OST_MDT0 && fed->fed_group != 0)) {
579                 /* IDIF request only operates on MDT0 group */
580                 CERROR("%s: Invalid sequence %#llx for group %u\n",
581                        exp->exp_obd->obd_name, seq, fed->fed_group);
582                 RETURN(-EINVAL);
583         }
584
585         return 0;
586 }
587 #endif /* _OFD_INTERNAL_H */