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