Whamcloud - gitweb
b=2776
[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  * Copyright (C) 2003 Cluster File Systems, Inc.
5  *
6  * This code is issued under the GNU General Public License.
7  * See the file COPYING in this distribution
8  */
9
10 #ifndef OSC_INTERNAL_H
11 #define OSC_INTERNAL_H
12
13 #define OAP_MAGIC 8675309
14
15 struct osc_async_page {
16         int                     oap_magic;
17         struct list_head        oap_pending_item;
18         struct list_head        oap_urgent_item;
19         struct list_head        oap_rpc_item;
20         struct page             *oap_page;
21         int                     oap_cmd;
22
23         obd_off                 oap_obj_off;
24         obd_off                 oap_page_off;
25         int                     oap_count;
26         obd_flag                oap_brw_flags;
27         enum async_flags        oap_async_flags;
28
29         unsigned long           oap_interrupted:1;
30         struct obd_io_group      *oap_oig;
31         struct oig_callback_context oap_occ;
32         struct ptlrpc_request   *oap_request;
33         struct client_obd       *oap_cli;
34         struct lov_oinfo        *oap_loi;
35
36         struct obd_async_page_ops *oap_caller_ops;
37         void                   *oap_caller_data;
38 };
39
40 struct osc_cache_waiter {
41         struct list_head        ocw_entry;
42         wait_queue_head_t       ocw_waitq;
43         struct osc_async_page   *ocw_oap;
44         int                     ocw_rc;
45 };
46
47 #define OSCC_FLAG_RECOVERING 1
48 #define OSCC_FLAG_CREATING   2
49 #define OSCC_FLAG_NOSPC      4 /* can't create more objects on this OST */
50
51 int osc_create(struct obd_export *exp, struct obdo *oa,
52                struct lov_stripe_md **ea, struct obd_trans_info *oti);
53 int osc_real_create(struct obd_export *exp, struct obdo *oa,
54                struct lov_stripe_md **ea, struct obd_trans_info *oti);
55 void oscc_init(struct obd_device *obd);
56 void osc_wake_cache_waiters(struct client_obd *cli);
57
58 #ifdef __KERNEL__
59 int lproc_osc_attach_seqstat(struct obd_device *dev);
60 #else
61 static inline int lproc_osc_attach_seqstat(struct obd_device *dev) {return 0;}
62 #endif
63
64 #endif /* OSC_INTERNAL_H */