Whamcloud - gitweb
LU-3285 lov: add MDT target to the LOV device
[fs/lustre-release.git] / lustre / include / obd.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) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 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 __OBD_H
34 #define __OBD_H
35
36 #include <linux/spinlock.h>
37
38 #include <uapi/linux/lustre/lustre_idl.h>
39 #include <lustre_lib.h>
40 #include <libcfs/bitmap.h>
41 #ifdef HAVE_SERVER_SUPPORT
42 # include <lu_target.h>
43 # include <obd_target.h>
44 #endif
45 #include <lu_ref.h>
46 #include <lustre_export.h>
47 #include <lustre_fid.h>
48 #include <lustre_fld.h>
49 #include <lustre_handles.h>
50 #include <lustre_intent.h>
51 #include <lvfs.h>
52 #include <lustre_quota.h>
53
54 #define MAX_OBD_DEVICES 8192
55
56 struct osc_async_rc {
57         int     ar_rc;
58         int     ar_force_sync;
59         __u64   ar_min_xid;
60 };
61
62 struct lov_oinfo {                 /* per-stripe data structure */
63         struct ost_id   loi_oi;    /* object ID/Sequence on the target OST */
64         int loi_ost_idx;           /* OST stripe index in lov_tgt_desc->tgts */
65         int loi_ost_gen;           /* generation of this loi_ost_idx */
66
67         unsigned long loi_kms_valid:1;
68         __u64 loi_kms;             /* known minimum size */
69         struct ost_lvb loi_lvb;
70         struct osc_async_rc     loi_ar;
71 };
72
73 static inline void loi_kms_set(struct lov_oinfo *oinfo, __u64 kms)
74 {
75         oinfo->loi_kms = kms;
76         oinfo->loi_kms_valid = 1;
77 }
78
79 struct lov_stripe_md;
80 struct obd_info;
81
82 typedef int (*obd_enqueue_update_f)(void *cookie, int rc);
83
84 /* obd info for a particular level (lov, osc). */
85 struct obd_info {
86         /* OBD_STATFS_* flags */
87         __u64                   oi_flags;
88         /* statfs data specific for every OSC, if needed at all. */
89         struct obd_statfs      *oi_osfs;
90         /* An update callback which is called to update some data on upper
91          * level. E.g. it is used for update lsm->lsm_oinfo at every received
92          * request in osc level for enqueue requests. It is also possible to
93          * update some caller data from LOV layer if needed. */
94         obd_enqueue_update_f    oi_cb_up;
95 };
96
97 struct obd_type {
98         struct list_head         typ_chain;
99         struct obd_ops          *typ_dt_ops;
100         struct md_ops           *typ_md_ops;
101         struct proc_dir_entry   *typ_procroot;
102         struct proc_dir_entry   *typ_procsym;
103         __u32                    typ_sym_filter;
104         char                    *typ_name;
105         int                      typ_refcnt;
106         struct lu_device_type   *typ_lu;
107         spinlock_t               obd_type_lock;
108         struct kobject          *typ_kobj;
109 };
110
111 struct brw_page {
112         u64              off;
113         struct page     *pg;
114         u32              count;
115         u32              flag;
116 };
117
118 struct timeout_item {
119         enum timeout_event ti_event;
120         cfs_time_t         ti_timeout;
121         timeout_cb_t       ti_cb;
122         void              *ti_cb_data;
123         struct list_head   ti_obd_list;
124         struct list_head   ti_chain;
125 };
126
127 #define OBD_MAX_RIF_DEFAULT     8
128 #define OBD_MAX_RIF_MAX         512
129 #define OSC_MAX_RIF_MAX         256
130 #define OSC_MAX_DIRTY_DEFAULT   (OBD_MAX_RIF_DEFAULT * 4)
131 #define OSC_MAX_DIRTY_MB_MAX    2048     /* arbitrary, but < MAX_LONG bytes */
132 #define OSC_DEFAULT_RESENDS     10
133
134 /* possible values for fo_sync_lock_cancel */
135 enum {
136         NEVER_SYNC_ON_CANCEL = 0,
137         BLOCKING_SYNC_ON_CANCEL = 1,
138         ALWAYS_SYNC_ON_CANCEL = 2,
139         NUM_SYNC_ON_CANCEL_STATES
140 };
141
142 /*
143  * Limit reply buffer size for striping data to one x86_64 page. This
144  * value is chosen to fit the striping data for common use cases while
145  * staying well below the limit at which the buffer must be backed by
146  * vmalloc(). Excessive use of vmalloc() may cause spinlock contention
147  * on the MDS.
148  */
149 #define OBD_MAX_DEFAULT_EA_SIZE         4096
150
151 enum obd_cl_sem_lock_class {
152         OBD_CLI_SEM_NORMAL,
153         OBD_CLI_SEM_MGC,
154         OBD_CLI_SEM_MDCOSC,
155 };
156
157 struct mdc_rpc_lock;
158 struct obd_import;
159 struct client_obd {
160         struct rw_semaphore      cl_sem;
161         struct obd_uuid          cl_target_uuid;
162         struct obd_import       *cl_import; /* ptlrpc connection state */
163         size_t                   cl_conn_count;
164
165         /* Cache maximum and default values for easize. This is
166          * strictly a performance optimization to minimize calls to
167          * obd_size_diskmd(). The default values are used to calculate the
168          * initial size of a request buffer. The ptlrpc layer will resize the
169          * buffer as needed to accommodate a larger reply from the
170          * server. The default values should be small enough to avoid wasted
171          * memory and excessive use of vmalloc(), yet large enough to avoid
172          * reallocating the buffer in the common use case. */
173
174         /* Default EA size for striping attributes. It is initialized at
175          * mount-time based on the default stripe width of the filesystem,
176          * then it tracks the largest observed EA size advertised by
177          * the MDT, up to a maximum value of OBD_MAX_DEFAULT_EA_SIZE. */
178         __u32                    cl_default_mds_easize;
179
180         /* Maximum possible EA size computed at mount-time based on
181          * the number of OSTs in the filesystem. May be increased at
182          * run-time if a larger observed size is advertised by the MDT. */
183         __u32                    cl_max_mds_easize;
184
185         enum lustre_sec_part     cl_sp_me;
186         enum lustre_sec_part     cl_sp_to;
187         struct sptlrpc_flavor    cl_flvr_mgc; /* fixed flavor of mgc->mgs */
188
189         /* the grant values are protected by loi_list_lock below */
190         unsigned long            cl_dirty_pages;      /* all _dirty_ in pages */
191         unsigned long            cl_dirty_max_pages;  /* allowed w/o rpc */
192         unsigned long            cl_dirty_transit;    /* dirty synchronous */
193         unsigned long            cl_avail_grant;   /* bytes of credit for ost */
194         unsigned long            cl_lost_grant;    /* lost credits (trunc) */
195         /* grant consumed for dirty pages */
196         unsigned long            cl_dirty_grant;
197
198         /* since we allocate grant by blocks, we don't know how many grant will
199          * be used to add a page into cache. As a solution, we reserve maximum
200          * grant before trying to dirty a page and unreserve the rest.
201          * See osc_{reserve|unreserve}_grant for details. */
202         long                    cl_reserved_grant;
203         struct list_head        cl_cache_waiters; /* waiting for cache/grant */
204         cfs_time_t              cl_next_shrink_grant;   /* jiffies */
205         struct list_head        cl_grant_shrink_list;  /* Timeout event list */
206         int                     cl_grant_shrink_interval; /* seconds */
207
208         /* A chunk is an optimal size used by osc_extent to determine
209          * the extent size. A chunk is max(PAGE_SIZE, OST block size) */
210         int                     cl_chunkbits;
211         /* extent insertion metadata overhead to be accounted in grant,
212          * in bytes */
213         unsigned int            cl_grant_extent_tax;
214         /* maximum extent size, in number of pages */
215         unsigned int            cl_max_extent_pages;
216
217         /* keep track of objects that have lois that contain pages which
218          * have been queued for async brw.  this lock also protects the
219          * lists of osc_client_pages that hang off of the loi */
220         /*
221          * ->cl_loi_list_lock protects consistency of
222          * ->cl_loi_{ready,read,write}_list. ->ap_make_ready() and
223          * ->ap_completion() call-backs are executed under this lock. As we
224          * cannot guarantee that these call-backs never block on all platforms
225          * (as a matter of fact they do block on Mac OS X), type of
226          * ->cl_loi_list_lock is platform dependent: it's a spin-lock on Linux
227          * and blocking mutex on Mac OS X. (Alternative is to make this lock
228          * blocking everywhere, but we don't want to slow down fast-path of
229          * our main platform.)
230          *
231          * NB by Jinshan: though field names are still _loi_, but actually
232          * osc_object{}s are in the list.
233          */
234         spinlock_t              cl_loi_list_lock;
235         struct list_head        cl_loi_ready_list;
236         struct list_head        cl_loi_hp_ready_list;
237         struct list_head        cl_loi_write_list;
238         struct list_head        cl_loi_read_list;
239         __u32                   cl_r_in_flight;
240         __u32                   cl_w_in_flight;
241         /* just a sum of the loi/lop pending numbers to be exported by /proc */
242         atomic_t                cl_pending_w_pages;
243         atomic_t                cl_pending_r_pages;
244         __u32                   cl_max_pages_per_rpc;
245         __u32                   cl_max_rpcs_in_flight;
246         struct obd_histogram    cl_read_rpc_hist;
247         struct obd_histogram    cl_write_rpc_hist;
248         struct obd_histogram    cl_read_page_hist;
249         struct obd_histogram    cl_write_page_hist;
250         struct obd_histogram    cl_read_offset_hist;
251         struct obd_histogram    cl_write_offset_hist;
252
253         /** LRU for osc caching pages */
254         struct cl_client_cache  *cl_cache;
255         /** member of cl_cache->ccc_lru */
256         struct list_head         cl_lru_osc;
257         /** # of available LRU slots left in the per-OSC cache.
258          * Available LRU slots are shared by all OSCs of the same file system,
259          * therefore this is a pointer to cl_client_cache::ccc_lru_left. */
260         atomic_long_t           *cl_lru_left;
261         /** # of busy LRU pages. A page is considered busy if it's in writeback
262          * queue, or in transfer. Busy pages can't be discarded so they are not
263          * in LRU cache. */
264         atomic_long_t            cl_lru_busy;
265         /** # of LRU pages in the cache for this client_obd */
266         atomic_long_t            cl_lru_in_list;
267         /** # of threads are shrinking LRU cache. To avoid contention, it's not
268          * allowed to have multiple threads shrinking LRU cache. */
269         atomic_t                 cl_lru_shrinkers;
270         /** The time when this LRU cache was last used. */
271         time64_t                 cl_lru_last_used;
272         /** stats: how many reclaims have happened for this client_obd.
273          * reclaim and shrink - shrink is async, voluntarily rebalancing;
274          * reclaim is sync, initiated by IO thread when the LRU slots are
275          * in shortage. */
276         __u64                    cl_lru_reclaim;
277         /** List of LRU pages for this client_obd */
278         struct list_head         cl_lru_list;
279         /** Lock for LRU page list */
280         spinlock_t               cl_lru_list_lock;
281         /** # of unstable pages in this client_obd.
282          * An unstable page is a page state that WRITE RPC has finished but
283          * the transaction has NOT yet committed. */
284         atomic_long_t            cl_unstable_count;
285         /** Link to osc_shrinker_list */
286         struct list_head         cl_shrink_list;
287
288         /* number of in flight destroy rpcs is limited to max_rpcs_in_flight */
289         atomic_t                 cl_destroy_in_flight;
290         wait_queue_head_t        cl_destroy_waitq;
291
292         struct mdc_rpc_lock     *cl_rpc_lock;
293
294         /* modify rpcs in flight
295          * currently used for metadata only */
296         spinlock_t               cl_mod_rpcs_lock;
297         __u16                    cl_max_mod_rpcs_in_flight;
298         __u16                    cl_mod_rpcs_in_flight;
299         __u16                    cl_close_rpcs_in_flight;
300         wait_queue_head_t        cl_mod_rpcs_waitq;
301         unsigned long           *cl_mod_tag_bitmap;
302         struct obd_histogram     cl_mod_rpcs_hist;
303
304         /* mgc datastruct */
305         struct mutex              cl_mgc_mutex;
306         struct local_oid_storage *cl_mgc_los;
307         struct dt_object         *cl_mgc_configs_dir;
308         atomic_t                  cl_mgc_refcount;
309         struct obd_export        *cl_mgc_mgsexp;
310
311         /* checksumming for data sent over the network */
312         unsigned int             cl_checksum:1, /* 0 = disabled, 1 = enabled */
313                                  cl_checksum_dump:1; /* same */
314         /* supported checksum types that are worked out at connect time */
315         __u32                    cl_supp_cksum_types;
316         /* checksum algorithm to be used */
317         enum cksum_types         cl_cksum_type;
318
319         /* also protected by the poorly named _loi_list_lock lock above */
320         struct osc_async_rc      cl_ar;
321
322         /* sequence manager */
323         struct lu_client_seq    *cl_seq;
324         struct rw_semaphore      cl_seq_rwsem;
325
326         atomic_t                 cl_resends; /* resend count */
327
328         /* ptlrpc work for writeback in ptlrpcd context */
329         void                    *cl_writeback_work;
330         void                    *cl_lru_work;
331         /* hash tables for osc_quota_info */
332         struct cfs_hash         *cl_quota_hash[LL_MAXQUOTAS];
333         /* Links to the global list of registered changelog devices */
334         struct list_head         cl_chg_dev_linkage;
335 };
336 #define obd2cli_tgt(obd) ((char *)(obd)->u.cli.cl_target_uuid.uuid)
337
338 struct obd_id_info {
339         u32      idx;
340         u64     *data;
341 };
342
343 struct echo_client_obd {
344         struct obd_export      *ec_exp; /* the local connection to osc/lov */
345         spinlock_t              ec_lock;
346         struct list_head        ec_objects;
347         struct list_head        ec_locks;
348         __u64                   ec_unique;
349 };
350
351 /* Generic subset of OSTs */
352 struct ost_pool {
353         __u32              *op_array;      /* array of index of
354                                                    lov_obd->lov_tgts */
355         unsigned int        op_count;      /* number of OSTs in the array */
356         unsigned int        op_size;       /* allocated size of lp_array */
357         struct rw_semaphore op_rw_sem;     /* to protect ost_pool use */
358 };
359
360 /* allow statfs data caching for 1 second */
361 #define OBD_STATFS_CACHE_SECONDS 1
362
363 struct lov_tgt_desc {
364         struct list_head    ltd_kill;
365         struct obd_uuid     ltd_uuid;
366         struct obd_device  *ltd_obd;
367         struct obd_export  *ltd_exp;
368         __u32               ltd_gen;
369         __u32               ltd_index;   /* index in lov_obd->tgts */
370         unsigned long       ltd_active:1,/* is this target up for requests */
371                             ltd_activate:1,/* should  target be activated */
372                             ltd_reap:1;  /* should this target be deleted */
373 };
374
375 struct lov_md_tgt_desc {
376         struct obd_device *lmtd_mdc;
377         __u32              lmtd_index;
378 };
379
380 struct lov_obd {
381         struct lov_desc         desc;
382         struct lov_tgt_desc   **lov_tgts;               /* sparse array */
383         struct ost_pool         lov_packed;             /* all OSTs in a packed
384                                                            array */
385         struct mutex            lov_lock;
386         struct obd_connect_data lov_ocd;
387         struct proc_dir_entry  *targets_proc_entry;
388         atomic_t                lov_refcount;
389         __u32                   lov_death_row;  /* tgts scheduled to be deleted */
390         __u32                   lov_tgt_size;   /* size of tgts array */
391         int                     lov_connects;
392         int                     lov_pool_count;
393         struct cfs_hash        *lov_pools_hash_body; /* used for key access */
394         struct list_head        lov_pool_list;  /* used for sequential access */
395         struct proc_dir_entry  *lov_pool_proc_entry;
396         enum lustre_sec_part    lov_sp_me;
397
398         /* Cached LRU and unstable data from upper layer */
399         struct cl_client_cache *lov_cache;
400
401         struct rw_semaphore     lov_notify_lock;
402         /* Data-on-MDT: MDC array */
403         struct lov_md_tgt_desc  *lov_mdc_tgts;
404 };
405
406 struct lmv_tgt_desc {
407         struct obd_uuid         ltd_uuid;
408         struct obd_device       *ltd_obd;
409         struct obd_export       *ltd_exp;
410         __u32                   ltd_idx;
411         struct mutex            ltd_fid_mutex;
412         unsigned long           ltd_active:1; /* target up for requests */
413 };
414
415 struct lmv_obd {
416         struct lu_client_fld    lmv_fld;
417         spinlock_t              lmv_lock;
418         struct lmv_desc         desc;
419         struct obd_uuid         cluuid;
420         struct proc_dir_entry   *targets_proc_entry;
421
422         struct mutex            lmv_init_mutex;
423         int                     connected;
424         int                     max_easize;
425         int                     max_def_easize;
426
427         __u32                   tgts_size; /* size of tgts array */
428         struct lmv_tgt_desc     **tgts;
429
430         struct obd_connect_data conn_data;
431 };
432
433 struct niobuf_local {
434         __u64           lnb_file_offset;
435         __u32           lnb_page_offset;
436         __u32           lnb_len;
437         __u32           lnb_flags;
438         int             lnb_rc;
439         struct page     *lnb_page;
440         void            *lnb_data;
441 };
442
443 struct tgt_thread_big_cache {
444         struct niobuf_local     local[PTLRPC_MAX_BRW_PAGES];
445 };
446
447 #define LUSTRE_FLD_NAME         "fld"
448 #define LUSTRE_SEQ_NAME         "seq"
449
450 #define LUSTRE_MDD_NAME         "mdd"
451 #define LUSTRE_OSD_LDISKFS_NAME "osd-ldiskfs"
452 #define LUSTRE_OSD_ZFS_NAME     "osd-zfs"
453 #define LUSTRE_VVP_NAME         "vvp"
454 #define LUSTRE_LMV_NAME         "lmv"
455 #define LUSTRE_SLP_NAME         "slp"
456 #define LUSTRE_LOD_NAME         "lod"
457 #define LUSTRE_OSP_NAME         "osp"
458 #define LUSTRE_LWP_NAME         "lwp"
459
460 /* obd device type names */
461  /* FIXME all the references to LUSTRE_MDS_NAME should be swapped with LUSTRE_MDT_NAME */
462 #define LUSTRE_MDS_NAME         "mds"
463 #define LUSTRE_MDT_NAME         "mdt"
464 #define LUSTRE_MDC_NAME         "mdc"
465 #define LUSTRE_OSS_NAME         "ost"       /* FIXME change name to oss */
466 #define LUSTRE_OST_NAME         "obdfilter" /* FIXME change name to ost */
467 #define LUSTRE_OSC_NAME         "osc"
468 #define LUSTRE_LOV_NAME         "lov"
469 #define LUSTRE_MGS_NAME         "mgs"
470 #define LUSTRE_MGC_NAME         "mgc"
471
472 #define LUSTRE_ECHO_NAME        "obdecho"
473 #define LUSTRE_ECHO_CLIENT_NAME "echo_client"
474 #define LUSTRE_QMT_NAME         "qmt"
475
476 /* Constant obd names (post-rename) */
477 #define LUSTRE_MDS_OBDNAME "MDS"
478 #define LUSTRE_OSS_OBDNAME "OSS"
479 #define LUSTRE_MGS_OBDNAME "MGS"
480 #define LUSTRE_MGC_OBDNAME "MGC"
481
482 static inline int is_lwp_on_mdt(char *name)
483 {
484         char   *ptr;
485
486         ptr = strrchr(name, '-');
487         if (ptr == NULL) {
488                 CERROR("%s is not a obdname\n", name);
489                 return 0;
490         }
491
492         /* LWP name on MDT is fsname-MDTxxxx-lwp-MDTxxxx */
493
494         if (strncmp(ptr + 1, "MDT", 3) != 0)
495                 return 0;
496
497         while (*(--ptr) != '-' && ptr != name);
498
499         if (ptr == name)
500                 return 0;
501
502         if (strncmp(ptr + 1, LUSTRE_LWP_NAME, strlen(LUSTRE_LWP_NAME)) != 0)
503                 return 0;
504
505         return 1;
506 }
507
508 static inline int is_lwp_on_ost(char *name)
509 {
510         char   *ptr;
511
512         ptr = strrchr(name, '-');
513         if (ptr == NULL) {
514                 CERROR("%s is not a obdname\n", name);
515                 return 0;
516         }
517
518         /* LWP name on OST is fsname-MDTxxxx-lwp-OSTxxxx */
519
520         if (strncmp(ptr + 1, "OST", 3) != 0)
521                 return 0;
522
523         while (*(--ptr) != '-' && ptr != name);
524
525         if (ptr == name)
526                 return 0;
527
528         if (strncmp(ptr + 1, LUSTRE_LWP_NAME, strlen(LUSTRE_LWP_NAME)) != 0)
529                 return 0;
530
531         return 1;
532 }
533
534 /*
535  * Events signalled through obd_notify() upcall-chain.
536  */
537 enum obd_notify_event {
538         /* Device connect start */
539         OBD_NOTIFY_CONNECT,
540         /* Device activated */
541         OBD_NOTIFY_ACTIVE,
542         /* Device deactivated */
543         OBD_NOTIFY_INACTIVE,
544         /* Connect data for import were changed */
545         OBD_NOTIFY_OCD,
546         /* Administratively deactivate/activate event */
547         OBD_NOTIFY_DEACTIVATE,
548         OBD_NOTIFY_ACTIVATE
549 };
550
551 /*
552  * Data structure used to pass obd_notify()-event to non-obd listeners (llite
553  * and liblustre being main examples).
554  */
555 struct obd_notify_upcall {
556         int (*onu_upcall)(struct obd_device *host, struct obd_device *watched,
557                           enum obd_notify_event ev, void *owner);
558         /* Opaque datum supplied by upper layer listener */
559         void *onu_owner;
560 };
561
562 struct target_recovery_data {
563         svc_handler_t           trd_recovery_handler;
564         pid_t                   trd_processing_task;
565         struct completion       trd_starting;
566         struct completion       trd_finishing;
567 };
568
569 struct obd_llog_group {
570         struct llog_ctxt   *olg_ctxts[LLOG_MAX_CTXTS];
571         wait_queue_head_t  olg_waitq;
572         spinlock_t         olg_lock;
573         struct mutex       olg_cat_processing;
574 };
575
576 /* corresponds to one of the obd's */
577 #define OBD_DEVICE_MAGIC        0XAB5CD6EF
578
579 struct obd_device {
580         struct obd_type                 *obd_type;
581         __u32                            obd_magic; /* OBD_DEVICE_MAGIC */
582         int                              obd_minor; /* device number: lctl dl */
583         struct lu_device                *obd_lu_dev;
584
585         /* common and UUID name of this device */
586         struct obd_uuid                  obd_uuid;
587         char                             obd_name[MAX_OBD_NAME];
588
589         /* bitfield modification is protected by obd_dev_lock */
590         unsigned long
591                 obd_attached:1,         /* finished attach */
592                 obd_set_up:1,           /* finished setup */
593                 obd_recovering:1,       /* there are recoverable clients */
594                 obd_abort_recovery:1,   /* recovery expired */
595                 obd_version_recov:1,    /* obd uses version checking */
596                 obd_replayable:1,       /* recovery enabled; inform clients */
597                 obd_no_transno:1,       /* no committed-transno notification */
598                 obd_no_recov:1,         /* fail instead of retry messages */
599                 obd_stopping:1,         /* started cleanup */
600                 obd_starting:1,         /* started setup */
601                 obd_force:1,            /* cleanup with > 0 obd refcount */
602                 obd_fail:1,             /* cleanup with failover */
603                 obd_no_conn:1,          /* deny new connections */
604                 obd_inactive:1,         /* device active/inactive
605                                          * (for /proc/status only!!) */
606                 obd_no_ir:1,            /* no imperative recovery. */
607                 obd_process_conf:1,     /* device is processing mgs config */
608                 obd_uses_nid_stats:1,   /* maintain per-client OBD stats */
609                 obd_checksum_dump:1;    /* dump pages upon cksum error */
610
611         /* use separate field as it is set in interrupt to don't mess with
612          * protection of other bits using _bh lock */
613         unsigned long obd_recovery_expired:1;
614         /* uuid-export hash body */
615         struct cfs_hash             *obd_uuid_hash;
616         /* nid-export hash body */
617         struct cfs_hash             *obd_nid_hash;
618         /* nid stats body */
619         struct cfs_hash             *obd_nid_stats_hash;
620         /* client_generation-export hash body */
621         struct cfs_hash             *obd_gen_hash;
622         struct list_head        obd_nid_stats;
623         struct list_head        obd_exports;
624         struct list_head        obd_unlinked_exports;
625         struct list_head        obd_delayed_exports;
626         struct list_head        obd_lwp_list;
627         atomic_t                obd_refcount;
628         int                     obd_num_exports;
629         spinlock_t              obd_nid_lock;
630         struct ldlm_namespace  *obd_namespace;
631         struct ptlrpc_client    obd_ldlm_client; /* XXX OST/MDS only */
632         /* a spinlock is OK for what we do now, may need a semaphore later */
633         spinlock_t              obd_dev_lock; /* protect OBD bitfield above */
634         spinlock_t              obd_osfs_lock;
635         struct obd_statfs       obd_osfs;       /* locked by obd_osfs_lock */
636         __u64                   obd_osfs_age;
637         __u64                   obd_last_committed;
638         struct mutex            obd_dev_mutex;
639         struct lvfs_run_ctxt    obd_lvfs_ctxt;
640         struct obd_llog_group   obd_olg;        /* default llog group */
641         struct obd_device       *obd_observer;
642         struct rw_semaphore     obd_observer_link_sem;
643         struct obd_notify_upcall obd_upcall;
644         struct obd_export       *obd_self_export;
645         struct obd_export       *obd_lwp_export;
646         /* list of exports in LRU order, for ping evictor, with obd_dev_lock */
647         struct list_head        obd_exports_timed;
648         time_t                  obd_eviction_timer;     /* for ping evictor */
649
650         int                     obd_max_recoverable_clients;
651         atomic_t                obd_connected_clients;
652         int                     obd_stale_clients;
653         /* this lock protects all recovery list_heads, timer and
654          * obd_next_recovery_transno value */
655         spinlock_t              obd_recovery_task_lock;
656         __u64                   obd_next_recovery_transno;
657         int                     obd_replayed_requests;
658         int                     obd_requests_queued_for_recovery;
659         wait_queue_head_t       obd_next_transno_waitq;
660         /* protected by obd_recovery_task_lock */
661         struct timer_list       obd_recovery_timer;
662         /* seconds */
663         time64_t                obd_recovery_start;
664         /* seconds, for lprocfs_status */
665         time64_t                obd_recovery_end;
666         time64_t                obd_recovery_time_hard;
667         time64_t                obd_recovery_timeout;
668         int                     obd_recovery_ir_factor;
669
670         /* new recovery stuff from CMD2 */
671         int                             obd_replayed_locks;
672         atomic_t                        obd_req_replay_clients;
673         atomic_t                        obd_lock_replay_clients;
674         struct target_recovery_data     obd_recovery_data;
675
676         /* all lists are protected by obd_recovery_task_lock */
677         struct list_head                obd_req_replay_queue;
678         struct list_head                obd_lock_replay_queue;
679         struct list_head                obd_final_req_queue;
680
681         union {
682 #ifdef HAVE_SERVER_SUPPORT
683                 struct obd_device_target obt;
684                 struct filter_obd filter;
685                 struct ost_obd ost;
686                 struct echo_obd echo;
687 #endif
688                 struct client_obd cli;
689                 struct echo_client_obd echo_client;
690                 struct lov_obd lov;
691                 struct lmv_obd lmv;
692         } u;
693
694         /* Fields used by LProcFS */
695         struct lprocfs_stats            *obd_stats;
696         unsigned int                    obd_cntr_base;
697
698         unsigned int                     obd_md_cntr_base;
699         struct lprocfs_stats            *obd_md_stats;
700
701         struct proc_dir_entry   *obd_proc_entry;
702         struct proc_dir_entry   *obd_proc_exports_entry;
703         struct proc_dir_entry   *obd_svc_procroot;
704         struct lprocfs_stats    *obd_svc_stats;
705         struct attribute_group  *obd_attrs;
706         struct lprocfs_vars     *obd_vars;
707         atomic_t                obd_evict_inprogress;
708         wait_queue_head_t       obd_evict_inprogress_waitq;
709         struct list_head        obd_evict_list; /* protected with pet_lock */
710
711         /**
712          * LDLM pool part. Save last calculated SLV and Limit.
713          */
714         rwlock_t                        obd_pool_lock;
715         __u64                           obd_pool_slv;
716         int                             obd_pool_limit;
717
718         int                             obd_conn_inprogress;
719
720         /**
721          * List of outstanding class_incref()'s fo this OBD. For debugging. */
722         struct lu_ref                   obd_reference;
723
724         struct kobject          obd_kobj; /* sysfs object */
725         struct completion       obd_kobj_unregister;
726 };
727
728 /* get/set_info keys */
729 #define KEY_ASYNC               "async"
730 #define KEY_CHANGELOG_CLEAR     "changelog_clear"
731 #define KEY_FID2PATH            "fid2path"
732 #define KEY_CHECKSUM            "checksum"
733 #define KEY_CLEAR_FS            "clear_fs"
734 #define KEY_CONN_DATA           "conn_data"
735 #define KEY_EVICT_BY_NID        "evict_by_nid"
736 #define KEY_FIEMAP              "fiemap"
737 #define KEY_FLUSH_CTX           "flush_ctx"
738 #define KEY_GRANT_SHRINK        "grant_shrink"
739 #define KEY_HSM_COPYTOOL_SEND   "hsm_send"
740 #define KEY_INIT_RECOV_BACKUP   "init_recov_bk"
741 #define KEY_INTERMDS            "inter_mds"
742 #define KEY_LAST_ID             "last_id"
743 #define KEY_LAST_FID            "last_fid"
744 #define KEY_MAX_EASIZE          "max_easize"
745 #define KEY_DEFAULT_EASIZE      "default_easize"
746 #define KEY_MGSSEC              "mgssec"
747 #define KEY_READ_ONLY           "read-only"
748 #define KEY_REGISTER_TARGET     "register_target"
749 #define KEY_SET_FS              "set_fs"
750 #define KEY_TGT_COUNT           "tgt_count"
751 /*      KEY_SET_INFO in lustre_idl.h */
752 #define KEY_SPTLRPC_CONF        "sptlrpc_conf"
753
754 #define KEY_CACHE_SET           "cache_set"
755 #define KEY_CACHE_LRU_SHRINK    "cache_lru_shrink"
756 #define KEY_OSP_CONNECTED       "osp_connected"
757
758 struct lu_context;
759
760 static inline int it_to_lock_mode(struct lookup_intent *it)
761 {
762         /* CREAT needs to be tested before open (both could be set) */
763         if (it->it_op & IT_CREAT)
764                 return LCK_CW;
765         else if (it->it_op & (IT_GETATTR | IT_OPEN | IT_LOOKUP |
766                               IT_LAYOUT))
767                 return LCK_CR;
768         else if (it->it_op &  IT_READDIR)
769                 return LCK_PR;
770         else if (it->it_op &  IT_GETXATTR)
771                 return LCK_PR;
772         else if (it->it_op &  IT_SETXATTR)
773                 return LCK_PW;
774
775         LASSERTF(0, "Invalid it_op: %d\n", it->it_op);
776         return -EINVAL;
777 }
778
779 enum md_op_flags {
780         MF_MDC_CANCEL_FID1      = 1 << 0,
781         MF_MDC_CANCEL_FID2      = 1 << 1,
782         MF_MDC_CANCEL_FID3      = 1 << 2,
783         MF_MDC_CANCEL_FID4      = 1 << 3,
784         MF_GET_MDT_IDX          = 1 << 4,
785 };
786
787 enum md_cli_flags {
788         CLI_SET_MEA     = 1 << 0,
789         CLI_RM_ENTRY    = 1 << 1,
790         CLI_HASH64      = 1 << 2,
791         CLI_API32       = 1 << 3,
792         CLI_MIGRATE     = 1 << 4,
793 };
794
795 /**
796  * GETXATTR is not included as only a couple of fields in the reply body
797  * is filled, but not FID which is needed for common intent handling in
798  * mdc_finish_intent_lock()
799  */
800 static inline bool it_has_reply_body(const struct lookup_intent *it)
801 {
802         return it->it_op & (IT_OPEN | IT_UNLINK | IT_LOOKUP | IT_GETATTR);
803 }
804
805 struct md_op_data {
806         struct lu_fid           op_fid1; /* operation fid1 (usualy parent) */
807         struct lu_fid           op_fid2; /* operation fid2 (usualy child) */
808         struct lu_fid           op_fid3; /* 2 extra fids to find conflicting */
809         struct lu_fid           op_fid4; /* to the operation locks. */
810         u32                     op_mds;  /* what mds server open will go to */
811         __u32                   op_mode;
812         struct lustre_handle    op_handle;
813         s64                     op_mod_time;
814         const char              *op_name;
815         size_t                  op_namelen;
816         struct lmv_stripe_md    *op_mea1;
817         struct lmv_stripe_md    *op_mea2;
818         __u32                   op_suppgids[2];
819         __u32                   op_fsuid;
820         __u32                   op_fsgid;
821         cfs_cap_t               op_cap;
822         void                    *op_data;
823         size_t                  op_data_size;
824
825         /* iattr fields and blocks. */
826         struct iattr            op_attr;
827         loff_t                  op_attr_blocks;
828         __u64                   op_valid; /* OBD_MD_* */
829         unsigned int            op_attr_flags; /* LUSTRE_{SYNC,..}_FL */
830
831         enum md_op_flags        op_flags;
832
833         /* Various operation flags. */
834         enum mds_op_bias        op_bias;
835
836         /* used to transfer info between the stacks of MD client
837          * see enum op_cli_flags */
838         enum md_cli_flags       op_cli_flags;
839
840         /* File object data version for HSM release, on client */
841         __u64                   op_data_version;
842         struct lustre_handle    op_lease_handle;
843
844         /* File security context, for creates. */
845         const char             *op_file_secctx_name;
846         void                   *op_file_secctx;
847         __u32                   op_file_secctx_size;
848
849         /* default stripe offset */
850         __u32                   op_default_stripe_offset;
851
852         __u32                   op_projid;
853
854         /* Used by readdir */
855         unsigned int            op_max_pages;
856
857 };
858
859 struct md_callback {
860         int (*md_blocking_ast)(struct ldlm_lock *lock,
861                                struct ldlm_lock_desc *desc,
862                                void *data, int flag);
863 };
864
865 struct md_enqueue_info;
866 /* metadata stat-ahead */
867 typedef int (* md_enqueue_cb_t)(struct ptlrpc_request *req,
868                                 struct md_enqueue_info *minfo,
869                                 int rc);
870
871 struct md_enqueue_info {
872         struct md_op_data               mi_data;
873         struct lookup_intent            mi_it;
874         struct lustre_handle            mi_lockh;
875         struct inode                   *mi_dir;
876         struct ldlm_enqueue_info        mi_einfo;
877         md_enqueue_cb_t                 mi_cb;
878         void                           *mi_cbdata;
879 };
880
881 struct obd_ops {
882         struct module *o_owner;
883         int (*o_iocontrol)(unsigned int cmd, struct obd_export *exp, int len,
884                            void *karg, void __user *uarg);
885         int (*o_get_info)(const struct lu_env *env, struct obd_export *,
886                           __u32 keylen, void *key, __u32 *vallen, void *val);
887         int (*o_set_info_async)(const struct lu_env *, struct obd_export *,
888                                 __u32 keylen, void *key,
889                                 __u32 vallen, void *val,
890                                 struct ptlrpc_request_set *set);
891         int (*o_setup) (struct obd_device *dev, struct lustre_cfg *cfg);
892         int (*o_precleanup)(struct obd_device *dev);
893         int (*o_cleanup)(struct obd_device *dev);
894         int (*o_process_config)(struct obd_device *dev, size_t len, void *data);
895         int (*o_postrecov)(struct obd_device *dev);
896         int (*o_add_conn)(struct obd_import *imp, struct obd_uuid *uuid,
897                           int priority);
898         int (*o_del_conn)(struct obd_import *imp, struct obd_uuid *uuid);
899         /* connect to the target device with given connection
900          * data. @ocd->ocd_connect_flags is modified to reflect flags actually
901          * granted by the target, which are guaranteed to be a subset of flags
902          * asked for. If @ocd == NULL, use default parameters. */
903         int (*o_connect)(const struct lu_env *env,
904                          struct obd_export **exp, struct obd_device *src,
905                          struct obd_uuid *cluuid, struct obd_connect_data *ocd,
906                          void *localdata);
907         int (*o_reconnect)(const struct lu_env *env,
908                            struct obd_export *exp, struct obd_device *src,
909                            struct obd_uuid *cluuid,
910                            struct obd_connect_data *ocd,
911                            void *localdata);
912         int (*o_disconnect)(struct obd_export *exp);
913
914         /* Initialize/finalize fids infrastructure. */
915         int (*o_fid_init)(struct obd_device *obd,
916                           struct obd_export *exp, enum lu_cli_type type);
917         int (*o_fid_fini)(struct obd_device *obd);
918
919         /* Allocate new fid according to passed @hint. */
920         int (*o_fid_alloc)(const struct lu_env *env, struct obd_export *exp,
921                            struct lu_fid *fid, struct md_op_data *op_data);
922
923         /*
924          * Object with @fid is getting deleted, we may want to do something
925          * about this.
926          */
927         int (*o_statfs)(const struct lu_env *, struct obd_export *exp,
928                         struct obd_statfs *osfs, __u64 max_age, __u32 flags);
929         int (*o_statfs_async)(struct obd_export *exp, struct obd_info *oinfo,
930                               __u64 max_age, struct ptlrpc_request_set *set);
931         int (*o_create)(const struct lu_env *env, struct obd_export *exp,
932                         struct obdo *oa);
933         int (*o_destroy)(const struct lu_env *env, struct obd_export *exp,
934                          struct obdo *oa);
935         int (*o_setattr)(const struct lu_env *, struct obd_export *exp,
936                          struct obdo *oa);
937         int (*o_getattr)(const struct lu_env *env, struct obd_export *exp,
938                          struct obdo *oa);
939         int (*o_preprw)(const struct lu_env *env, int cmd,
940                         struct obd_export *exp, struct obdo *oa, int objcount,
941                         struct obd_ioobj *obj, struct niobuf_remote *remote,
942                         int *nr_pages, struct niobuf_local *local);
943         int (*o_commitrw)(const struct lu_env *env, int cmd,
944                           struct obd_export *exp, struct obdo *oa,
945                           int objcount, struct obd_ioobj *obj,
946                           struct niobuf_remote *remote, int pages,
947                           struct niobuf_local *local, int rc);
948         int (*o_init_export)(struct obd_export *exp);
949         int (*o_destroy_export)(struct obd_export *exp);
950
951         int (*o_import_event)(struct obd_device *, struct obd_import *,
952                               enum obd_import_event);
953
954         int (*o_notify)(struct obd_device *obd, struct obd_device *watched,
955                         enum obd_notify_event ev);
956
957         int (*o_health_check)(const struct lu_env *env, struct obd_device *);
958         struct obd_uuid *(*o_get_uuid) (struct obd_export *exp);
959
960         /* quota methods */
961         int (*o_quotactl)(struct obd_device *, struct obd_export *,
962                           struct obd_quotactl *);
963
964         int (*o_ping)(const struct lu_env *, struct obd_export *exp);
965
966         /* pools methods */
967         int (*o_pool_new)(struct obd_device *obd, char *poolname);
968         int (*o_pool_del)(struct obd_device *obd, char *poolname);
969         int (*o_pool_add)(struct obd_device *obd, char *poolname,
970                           char *ostname);
971         int (*o_pool_rem)(struct obd_device *obd, char *poolname,
972                           char *ostname);
973         void (*o_getref)(struct obd_device *obd);
974         void (*o_putref)(struct obd_device *obd);
975         /*
976          * NOTE: If adding ops, add another LPROCFS_OBD_OP_INIT() line
977          * to lprocfs_alloc_obd_stats() in obdclass/lprocfs_status.c.
978          * Also, add a wrapper function in include/linux/obd_class.h. */
979 };
980
981 /* lmv structures */
982 struct lustre_md {
983         struct mdt_body         *body;
984         struct lu_buf            layout;
985         struct lmv_stripe_md    *lmv;
986 #ifdef CONFIG_FS_POSIX_ACL
987         struct posix_acl        *posix_acl;
988 #endif
989 };
990
991 struct md_open_data {
992         struct obd_client_handle        *mod_och;
993         struct ptlrpc_request           *mod_open_req;
994         struct ptlrpc_request           *mod_close_req;
995         atomic_t                         mod_refcount;
996         bool                             mod_is_create;
997 };
998
999 struct obd_client_handle {
1000         struct lustre_handle     och_fh;
1001         struct lu_fid            och_fid;
1002         struct md_open_data     *och_mod;
1003         struct lustre_handle     och_lease_handle; /* open lock for lease */
1004         __u32                    och_magic;
1005         int                      och_flags;
1006 };
1007
1008 #define OBD_CLIENT_HANDLE_MAGIC 0xd15ea5ed
1009
1010 struct lookup_intent;
1011 struct cl_attr;
1012
1013 struct md_ops {
1014         /* Every operation from MD_STATS_FIRST_OP up to and including
1015          * MD_STATS_LAST_OP will be counted by EXP_MD_OP_INCREMENT()
1016          * and will appear in /proc/fs/lustre/{lmv,mdc}/.../md_stats.
1017          * Operations after MD_STATS_LAST_OP are excluded from stats.
1018          * There are a few reasons for doing this: we prune the 17
1019          * counters which will be of minimal use in understanding
1020          * metadata utilization, we save memory by allocating 15
1021          * instead of 32 counters, we save cycles by not counting.
1022          *
1023          * MD_STATS_FIRST_OP must be the first member of md_ops.
1024          */
1025 #define MD_STATS_FIRST_OP m_close
1026         int (*m_close)(struct obd_export *, struct md_op_data *,
1027                        struct md_open_data *, struct ptlrpc_request **);
1028
1029         int (*m_create)(struct obd_export *, struct md_op_data *,
1030                         const void *, size_t, umode_t, uid_t, gid_t,
1031                         cfs_cap_t, __u64, struct ptlrpc_request **);
1032
1033         int (*m_enqueue)(struct obd_export *, struct ldlm_enqueue_info *,
1034                          const union ldlm_policy_data *, struct md_op_data *,
1035                          struct lustre_handle *, __u64);
1036
1037         int (*m_getattr)(struct obd_export *, struct md_op_data *,
1038                          struct ptlrpc_request **);
1039
1040         int (*m_intent_lock)(struct obd_export *, struct md_op_data *,
1041                              struct lookup_intent *,
1042                              struct ptlrpc_request **,
1043                              ldlm_blocking_callback, __u64);
1044
1045         int (*m_link)(struct obd_export *, struct md_op_data *,
1046                       struct ptlrpc_request **);
1047
1048         int (*m_rename)(struct obd_export *, struct md_op_data *,
1049                         const char *, size_t, const char *, size_t,
1050                         struct ptlrpc_request **);
1051
1052         int (*m_setattr)(struct obd_export *, struct md_op_data *, void *,
1053                          size_t , struct ptlrpc_request **);
1054
1055         int (*m_fsync)(struct obd_export *, const struct lu_fid *,
1056                        struct ptlrpc_request **);
1057
1058         int (*m_read_page)(struct obd_export *, struct md_op_data *,
1059                            struct md_callback *cb_op, __u64 hash_offset,
1060                            struct page **ppage);
1061
1062         int (*m_unlink)(struct obd_export *, struct md_op_data *,
1063                         struct ptlrpc_request **);
1064
1065         int (*m_setxattr)(struct obd_export *, const struct lu_fid *,
1066                           u64, const char *, const char *, int, int, int, u32,
1067                           struct ptlrpc_request **);
1068
1069         int (*m_getxattr)(struct obd_export *, const struct lu_fid *,
1070                           u64, const char *, const char *, int, int, int,
1071                           struct ptlrpc_request **);
1072
1073         int (*m_intent_getattr_async)(struct obd_export *,
1074                                       struct md_enqueue_info *);
1075
1076         int (*m_revalidate_lock)(struct obd_export *, struct lookup_intent *,
1077                                  struct lu_fid *, __u64 *bits);
1078
1079 #define MD_STATS_LAST_OP m_revalidate_lock
1080
1081         int (*m_get_root)(struct obd_export *, const char *, struct lu_fid *);
1082         int (*m_null_inode)(struct obd_export *, const struct lu_fid *);
1083
1084         int (*m_getattr_name)(struct obd_export *, struct md_op_data *,
1085                               struct ptlrpc_request **);
1086
1087         int (*m_init_ea_size)(struct obd_export *, __u32, __u32);
1088
1089         int (*m_get_lustre_md)(struct obd_export *, struct ptlrpc_request *,
1090                                struct obd_export *, struct obd_export *,
1091                                struct lustre_md *);
1092
1093         int (*m_free_lustre_md)(struct obd_export *, struct lustre_md *);
1094
1095         int (*m_merge_attr)(struct obd_export *,
1096                             const struct lmv_stripe_md *lsm,
1097                             struct cl_attr *attr, ldlm_blocking_callback);
1098
1099         int (*m_set_open_replay_data)(struct obd_export *,
1100                                       struct obd_client_handle *,
1101                                       struct lookup_intent *);
1102
1103         int (*m_clear_open_replay_data)(struct obd_export *,
1104                                         struct obd_client_handle *);
1105
1106         int (*m_set_lock_data)(struct obd_export *,
1107                                const struct lustre_handle *, void *, __u64 *);
1108
1109         enum ldlm_mode (*m_lock_match)(struct obd_export *, __u64,
1110                                        const struct lu_fid *, enum ldlm_type,
1111                                        union ldlm_policy_data *, enum ldlm_mode,
1112                                        struct lustre_handle *);
1113
1114         int (*m_cancel_unused)(struct obd_export *, const struct lu_fid *,
1115                                union ldlm_policy_data *, enum ldlm_mode,
1116                                enum ldlm_cancel_flags flags, void *opaque);
1117
1118         int (*m_get_fid_from_lsm)(struct obd_export *,
1119                                   const struct lmv_stripe_md *,
1120                                   const char *name, int namelen,
1121                                   struct lu_fid *fid);
1122         int (*m_unpackmd)(struct obd_export *exp, struct lmv_stripe_md **plsm,
1123                           const union lmv_mds_md *lmv, size_t lmv_size);
1124 };
1125
1126 static inline struct md_open_data *obd_mod_alloc(void)
1127 {
1128         struct md_open_data *mod;
1129         OBD_ALLOC_PTR(mod);
1130         if (mod == NULL)
1131                 return NULL;
1132         atomic_set(&mod->mod_refcount, 1);
1133         return mod;
1134 }
1135
1136 #define obd_mod_get(mod) atomic_inc(&(mod)->mod_refcount)
1137 #define obd_mod_put(mod)                                          \
1138 ({                                                                \
1139         if (atomic_dec_and_test(&(mod)->mod_refcount)) {          \
1140                 if ((mod)->mod_open_req)                          \
1141                         ptlrpc_req_finished((mod)->mod_open_req); \
1142                 OBD_FREE_PTR(mod);                                \
1143         }                                                         \
1144 })
1145
1146 void obdo_from_inode(struct obdo *dst, struct inode *src, u64 valid);
1147 void obdo_set_parent_fid(struct obdo *dst, const struct lu_fid *parent);
1148 void obdo_set_o_projid(struct obdo *dst, u32 projid);
1149
1150 /* return 1 if client should be resend request */
1151 static inline int client_should_resend(int resend, struct client_obd *cli)
1152 {
1153         return atomic_read(&cli->cl_resends) ?
1154                atomic_read(&cli->cl_resends) > resend : 1;
1155 }
1156
1157 /**
1158  * Return device name for this device
1159  *
1160  * XXX: lu_device is declared before obd_device, while a pointer pointing
1161  * back to obd_device in lu_device, so this helper function defines here
1162  * instead of in lu_object.h
1163  */
1164 static inline const char *lu_dev_name(const struct lu_device *lu_dev)
1165 {
1166         return lu_dev->ld_obd->obd_name;
1167 }
1168
1169 static inline bool filename_is_volatile(const char *name, size_t namelen,
1170                                         int *idx)
1171 {
1172         const char      *start;
1173         char            *end;
1174
1175         if (strncmp(name, LUSTRE_VOLATILE_HDR, LUSTRE_VOLATILE_HDR_LEN) != 0)
1176                 return false;
1177
1178         /* caller does not care of idx */
1179         if (idx == NULL)
1180                 return true;
1181
1182         /* volatile file, the MDT can be set from name */
1183         /* name format is LUSTRE_VOLATILE_HDR:[idx]: */
1184         /* if no MDT is specified, use std way */
1185         if (namelen < LUSTRE_VOLATILE_HDR_LEN + 2)
1186                 goto bad_format;
1187         /* test for no MDT idx case */
1188         if ((*(name + LUSTRE_VOLATILE_HDR_LEN) == ':') &&
1189             (*(name + LUSTRE_VOLATILE_HDR_LEN + 1) == ':')) {
1190                 *idx = -1;
1191                 return true;
1192         }
1193         /* we have an idx, read it */
1194         start = name + LUSTRE_VOLATILE_HDR_LEN + 1;
1195         *idx = simple_strtoul(start, &end, 16);
1196         /* error cases:
1197          * no digit, no trailing :, negative value
1198          */
1199         if (((*idx == 0) && (end == start)) ||
1200             (*end != ':') || (*idx < 0))
1201                 goto bad_format;
1202
1203         return true;
1204 bad_format:
1205         /* bad format of mdt idx, we cannot return an error
1206          * to caller so we use hash algo */
1207         CERROR("Bad volatile file name format: %s\n",
1208                name + LUSTRE_VOLATILE_HDR_LEN);
1209         return false;
1210 }
1211
1212 static inline int cli_brw_size(struct obd_device *obd)
1213 {
1214         LASSERT(obd != NULL);
1215         return obd->u.cli.cl_max_pages_per_rpc << PAGE_SHIFT;
1216 }
1217
1218 /* when RPC size or the max RPCs in flight is increased, the max dirty pages
1219  * of the client should be increased accordingly to avoid sending fragmented
1220  * RPCs over the network when the client runs out of the maximum dirty space
1221  * when so many RPCs are being generated.
1222  */
1223 static inline void client_adjust_max_dirty(struct client_obd *cli)
1224 {
1225          /* initializing */
1226         if (cli->cl_dirty_max_pages <= 0)
1227                 cli->cl_dirty_max_pages = (OSC_MAX_DIRTY_DEFAULT * 1024 * 1024)
1228                                                         >> PAGE_SHIFT;
1229         else {
1230                 unsigned long dirty_max = cli->cl_max_rpcs_in_flight *
1231                                           cli->cl_max_pages_per_rpc;
1232
1233                 if (dirty_max > cli->cl_dirty_max_pages)
1234                         cli->cl_dirty_max_pages = dirty_max;
1235         }
1236
1237         if (cli->cl_dirty_max_pages > totalram_pages / 8)
1238                 cli->cl_dirty_max_pages = totalram_pages / 8;
1239 }
1240
1241 #endif /* __OBD_H */