Whamcloud - gitweb
b=22850 add changelog entry
[fs/lustre-release.git] / lustre / include / lustre_import.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
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 __IMPORT_H
38 #define __IMPORT_H
39
40 #include <lustre_handles.h>
41 #include <lustre/lustre_idl.h>
42
43 /* Adaptive Timeout stuff */
44 #define D_ADAPTTO D_OTHER
45 #define AT_BINS 4                  /* "bin" means "N seconds of history" */
46 #define AT_FLG_NOHIST 0x1          /* use last reported value only */
47
48 struct adaptive_timeout {
49         time_t       at_binstart;         /* bin start time */
50         unsigned int at_hist[AT_BINS];    /* timeout history bins */
51         unsigned int at_flags;
52         unsigned int at_current;          /* current timeout value */
53         unsigned int at_worst_ever;       /* worst-ever timeout value */
54         time_t       at_worst_time;       /* worst-ever timeout timestamp */
55         spinlock_t   at_lock;
56 };
57
58 enum lustre_imp_state {
59         LUSTRE_IMP_CLOSED     = 1,
60         LUSTRE_IMP_NEW        = 2,
61         LUSTRE_IMP_DISCON     = 3,
62         LUSTRE_IMP_CONNECTING = 4,
63         LUSTRE_IMP_REPLAY     = 5,
64         LUSTRE_IMP_REPLAY_LOCKS = 6,
65         LUSTRE_IMP_REPLAY_WAIT  = 7,
66         LUSTRE_IMP_RECOVER    = 8,
67         LUSTRE_IMP_FULL       = 9,
68         LUSTRE_IMP_EVICTED    = 10,
69 };
70
71 struct ptlrpc_at_array {
72         struct list_head *paa_reqs_array; /* array to hold requests */
73         __u32             paa_size;       /* the size of array */
74         __u32             paa_count;      /* the total count of reqs */
75         time_t            paa_deadline;   /* the earliest deadline of reqs */
76         __u32            *paa_reqs_count; /* the count of reqs in each entry */
77 };
78
79 static inline char * ptlrpc_import_state_name(enum lustre_imp_state state)
80 {
81         static char* import_state_names[] = {
82                 "<UNKNOWN>", "CLOSED",  "NEW", "DISCONN",
83                 "CONNECTING", "REPLAY", "REPLAY_LOCKS", "REPLAY_WAIT",
84                 "RECOVER", "FULL", "EVICTED",
85         };
86
87         LASSERT (state <= LUSTRE_IMP_EVICTED);
88         return import_state_names[state];
89 }
90
91 enum obd_import_event {
92         IMP_EVENT_DISCON     = 0x808001,
93         IMP_EVENT_INACTIVE   = 0x808002,
94         IMP_EVENT_INVALIDATE = 0x808003,
95         IMP_EVENT_ACTIVE     = 0x808004,
96         IMP_EVENT_OCD        = 0x808005,
97 };
98
99 struct obd_import_conn {
100         struct list_head          oic_item;
101         struct ptlrpc_connection *oic_conn;
102         struct obd_uuid           oic_uuid;
103         __u64                     oic_last_attempt; /* jiffies, 64-bit */
104 };
105
106 #define IMP_AT_MAX_PORTALS 8
107 struct imp_at {
108         int                     iat_portal[IMP_AT_MAX_PORTALS];
109         struct adaptive_timeout iat_net_latency;
110         struct adaptive_timeout iat_service_estimate[IMP_AT_MAX_PORTALS];
111 };
112
113 /* state history */
114 #define IMP_STATE_HIST_LEN 16
115 struct import_state_hist {
116         enum lustre_imp_state ish_state;
117         time_t                ish_time;
118 };
119
120 struct obd_import {
121         struct portals_handle     imp_handle;
122         atomic_t                  imp_refcount;
123         struct lustre_handle      imp_dlm_handle; /* client's ldlm export */
124         struct ptlrpc_connection *imp_connection;
125         struct ptlrpc_client     *imp_client;
126         struct list_head          imp_pinger_chain;
127         struct list_head          imp_zombie_chain; /* queue for destruction */
128
129         /* Lists of requests that are retained for replay, waiting for a reply,
130          * or waiting for recovery to complete, respectively.
131          */
132         struct list_head          imp_replay_list;
133         struct list_head          imp_sending_list;
134         struct list_head          imp_delayed_list;
135
136         struct obd_device        *imp_obd;
137         cfs_waitq_t               imp_recovery_waitq;
138
139         atomic_t                  imp_inflight;
140         atomic_t                  imp_unregistering;
141         atomic_t                  imp_replay_inflight;
142         atomic_t                  imp_inval_count;  /* in-progress invalidations */
143         atomic_t                  imp_timeouts;
144         enum lustre_imp_state     imp_state;
145         struct import_state_hist  imp_state_hist[IMP_STATE_HIST_LEN];
146         int                       imp_state_hist_idx;
147         int                       imp_generation;
148         __u32                     imp_conn_cnt;
149         int                       imp_last_generation_checked;
150         __u64                     imp_last_replay_transno;
151         __u64                     imp_peer_committed_transno;
152         __u64                     imp_last_transno_checked;
153         struct lustre_handle      imp_remote_handle;
154         cfs_time_t                imp_next_ping;   /* jiffies */
155         __u64                     imp_last_success_conn;   /* jiffies, 64-bit */
156
157         /* all available obd_import_conn linked here */
158         struct list_head          imp_conn_list;
159         struct obd_import_conn   *imp_conn_current;
160
161         /* Protects flags, level, generation, conn_cnt, *_list */
162         spinlock_t                imp_lock;
163
164         /* flags */
165         unsigned long             imp_invalid:1,          /* evicted */
166                                   imp_deactive:1,         /* administratively disabled */
167                                   imp_replayable:1,       /* try to recover the import */
168                                   imp_dlm_fake:1,         /* don't run recovery (timeout instead) */
169                                   imp_server_timeout:1,   /* use 1/2 timeout on MDS' OSCs */
170                                   imp_initial_recov:1,    /* retry the initial connection */
171                                   imp_initial_recov_bk:1, /* turn off init_recov after trying all failover nids */
172                                   imp_delayed_recovery:1, /* VBR: imp in delayed recovery */
173                                   imp_no_lock_replay:1,   /* VBR: if gap was found then no lock replays */
174                                   imp_vbr_failed:1,       /* recovery by versions was failed */
175                                   imp_force_verify:1,     /* force an immidiate ping */
176                                   imp_pingable:1,         /* pingable */
177                                   imp_resend_replay:1,    /* resend for replay */
178                                   imp_recon_bk:1,         /* turn off reconnect if all failovers fail */
179                                   imp_last_recon:1,       /* internally used by above */
180                                   imp_force_reconnect:1;  /* import must be reconnected instead of chouse new connection */
181         __u32                     imp_connect_op;
182         struct obd_connect_data   imp_connect_data;
183         __u64                     imp_connect_flags_orig;
184
185         __u32                     imp_msg_magic;
186         __u32                     imp_msghdr_flags;       /* adjusted based on server capability */
187
188         struct ptlrpc_request_pool *imp_rq_pool;          /* emergency request pool */
189
190         struct imp_at             imp_at;                 /* adaptive timeout data */
191         time_t                    imp_last_reply_time;    /* for health check */
192 };
193
194 /* import.c */
195 static inline unsigned int at_est2timeout(unsigned int val)
196 {
197         /* add an arbitrary minimum: 125% +5 sec */
198         return (val + (val >> 2) + 5);
199 }
200
201 static inline unsigned int at_timeout2est(unsigned int val)
202 {
203         /* restore estimate value from timeout: e=4/5(t-5) */
204         return (max((val << 2) / 5, 5U) - 4);
205 }
206
207 static inline void at_init(struct adaptive_timeout *at, int val, int flags) {
208         memset(at, 0, sizeof(*at));
209         at->at_current = val;
210         at->at_worst_ever = val;
211         at->at_worst_time = cfs_time_current_sec();
212         at->at_flags = flags;
213         spin_lock_init(&at->at_lock);
214 }
215 static inline int at_get(struct adaptive_timeout *at) {
216         return at->at_current;
217 }
218 int at_measured(struct adaptive_timeout *at, unsigned int val);
219 int import_at_get_index(struct obd_import *imp, int portal);
220 extern unsigned int at_max;
221 #define AT_OFF (at_max == 0)
222
223 /* genops.c */
224 struct obd_export;
225 extern struct obd_import *class_exp2cliimp(struct obd_export *);
226 extern struct obd_import *class_conn2cliimp(struct lustre_handle *);
227
228 #endif /* __IMPORT_H */