Whamcloud - gitweb
land b1_5 onto HEAD
[fs/lustre-release.git] / lustre / osc / osc_internal.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  */
4
5 #ifndef OSC_INTERNAL_H
6 #define OSC_INTERNAL_H
7
8 #define OAP_MAGIC 8675309
9
10 struct osc_async_page {
11         int                     oap_magic;
12         unsigned short          oap_cmd;
13         unsigned short          oap_interrupted:1;
14
15         struct list_head        oap_pending_item;
16         struct list_head        oap_urgent_item;
17         struct list_head        oap_rpc_item;
18
19         obd_off                 oap_obj_off;
20         unsigned                oap_page_off;
21         enum async_flags        oap_async_flags;
22
23         struct brw_page         oap_brw_page;
24
25         struct oig_callback_context oap_occ;
26         struct obd_io_group     *oap_oig;
27         struct ptlrpc_request   *oap_request;
28         struct client_obd       *oap_cli;
29         struct lov_oinfo        *oap_loi;
30
31         struct obd_async_page_ops *oap_caller_ops;
32         void                    *oap_caller_data;
33 };
34
35 #define oap_page        oap_brw_page.pg
36 #define oap_count       oap_brw_page.count
37 #define oap_brw_flags   oap_brw_page.flag
38
39 #define OAP_FROM_COOKIE(c)                                                    \
40         (LASSERT(((struct osc_async_page *)(c))->oap_magic == OAP_MAGIC),     \
41          (struct osc_async_page *)(c))
42
43 struct osc_cache_waiter {
44         struct list_head        ocw_entry;
45         cfs_waitq_t             ocw_waitq;
46         struct osc_async_page   *ocw_oap;
47         int                     ocw_rc;
48 };
49
50 #define OSCC_FLAG_RECOVERING         0x01
51 #define OSCC_FLAG_CREATING           0x02
52 #define OSCC_FLAG_NOSPC              0x04 /* can't create more objects on OST */
53 #define OSCC_FLAG_SYNC_IN_PROGRESS   0x08 /* only allow one thread to sync */
54 #define OSCC_FLAG_LOW                0x10
55 #define OSCC_FLAG_EXITING            0x20
56
57 int osc_create(struct obd_export *exp, struct obdo *oa,
58                struct lov_stripe_md **ea, struct obd_trans_info *oti);
59 int osc_real_create(struct obd_export *exp, struct obdo *oa,
60                struct lov_stripe_md **ea, struct obd_trans_info *oti);
61 void oscc_init(struct obd_device *obd);
62 void osc_wake_cache_waiters(struct client_obd *cli);
63
64 #ifdef LPROCFS
65 int lproc_osc_attach_seqstat(struct obd_device *dev);
66 #else
67 static inline int lproc_osc_attach_seqstat(struct obd_device *dev) {return 0;}
68 #endif
69
70 #ifndef min_t
71 #define min_t(type,x,y) \
72         ({ type __x = (x); type __y = (y); __x < __y ? __x: __y; })
73 #endif
74
75 #endif /* OSC_INTERNAL_H */