Whamcloud - gitweb
get rid of some unused structure for smfs
[fs/lustre-release.git] / lustre / include / linux / lustre_import.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * Copyright (C) 2001  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 __IMPORT_H
11 #define __IMPORT_H
12
13 #include <linux/lustre_handles.h>
14 #include <linux/lustre_idl.h>
15
16 enum lustre_imp_state {
17         LUSTRE_IMP_CLOSED     = 1,
18         LUSTRE_IMP_NEW        = 2,
19         LUSTRE_IMP_DISCON     = 3,
20         LUSTRE_IMP_CONNECTING = 4,
21         LUSTRE_IMP_REPLAY     = 5,
22         LUSTRE_IMP_REPLAY_LOCKS = 6,
23         LUSTRE_IMP_REPLAY_WAIT  = 7,
24         LUSTRE_IMP_RECOVER    = 8,
25         LUSTRE_IMP_FULL       = 9,
26         LUSTRE_IMP_EVICTED    = 10,
27 };
28
29 static inline char * ptlrpc_import_state_name(enum lustre_imp_state state)
30 {
31         
32         static char* import_state_names[] = {
33                 "<UNKNOWN>", "CLOSED",  "NEW", "DISCONN", 
34                 "CONNECTING", "REPLAY", "REPLAY_LOCKS", "REPLAY_WAIT", 
35                 "RECOVER", "FULL", "EVICTED",
36         };
37
38         LASSERT (state <= LUSTRE_IMP_EVICTED);
39         return import_state_names[state];
40 }
41
42 enum obd_import_event {
43         IMP_EVENT_DISCON     = 0x808001,
44         IMP_EVENT_INACTIVE   = 0x808002,
45         IMP_EVENT_INVALIDATE = 0x808003,
46         IMP_EVENT_ACTIVE     = 0x808004,
47 };
48
49 struct obd_import {
50         struct portals_handle     imp_handle;
51         atomic_t                  imp_refcount;
52         struct lustre_handle      imp_dlm_handle; /* client's ldlm export */
53         struct ptlrpc_connection *imp_connection;
54         struct ptlrpc_client     *imp_client;
55         struct list_head          imp_observers;
56         struct list_head          imp_pinger_chain;
57
58         /* Lists of requests that are retained for replay, waiting for a reply,
59          * or waiting for recovery to complete, respectively.
60          */
61         struct list_head          imp_replay_list;
62         struct list_head          imp_sending_list;
63         struct list_head          imp_delayed_list;
64
65         struct obd_device        *imp_obd;
66         wait_queue_head_t         imp_recovery_waitq;
67         __u64                     imp_last_replay_transno;
68         atomic_t                  imp_inflight;
69         atomic_t                  imp_replay_inflight;
70         enum lustre_imp_state     imp_state;
71         int                       imp_generation;
72         __u32                     imp_conn_cnt;
73         __u64                     imp_max_transno;
74         __u64                     imp_peer_committed_transno;
75         struct obd_uuid           imp_target_uuid; /* XXX -> lustre_name */
76         struct lustre_handle      imp_remote_handle;
77         unsigned long             imp_next_ping;
78         unsigned long             imp_connect_start;
79         
80         /* Protects flags, level, generation, conn_cnt, *_list */
81         spinlock_t                imp_lock;
82
83         /* flags */
84         int                       imp_invalid:1, imp_replayable:1,
85                                   imp_dlm_fake:1, imp_server_timeout:1,
86                                   imp_initial_recov:1, imp_force_verify:1,
87                                   imp_pingable:1;
88         __u32                     imp_connect_op;
89 };
90
91 typedef void (*obd_import_callback)(struct obd_import *imp, void *closure,
92                                     int event, void *event_arg, void *cb_data);
93
94 struct obd_import_observer {
95         struct list_head     oio_chain;
96         obd_import_callback  oio_cb;
97         void                *oio_cb_data;
98 };
99
100 void class_observe_import(struct obd_import *imp, obd_import_callback cb,
101                           void *cb_data);
102 void class_unobserve_import(struct obd_import *imp, obd_import_callback cb,
103                             void *cb_data);
104 void class_notify_import_observers(struct obd_import *imp, int event,
105                                    void *event_arg);
106
107 #define IMP_EVENT_ACTIVE   1
108 #define IMP_EVENT_INACTIVE 2
109
110 /* genops.c */
111 struct obd_export;
112 extern struct obd_import *class_exp2cliimp(struct obd_export *);
113 extern struct obd_import *class_conn2cliimp(struct lustre_handle *);
114
115 #endif /* __IMPORT_H */