Whamcloud - gitweb
1a6292470020ba81a0c40d707a1a6eb165890df9
[fs/lustre-release.git] / lustre / ptlrpc / ptlrpc_internal.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 [sun.com URL with a
20  * copy of GPLv2].
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 /* Intramodule declarations for ptlrpc. */
38
39 #ifndef PTLRPC_INTERNAL_H
40 #define PTLRPC_INTERNAL_H
41
42 #include "../ldlm/ldlm_internal.h"
43
44 struct ldlm_namespace;
45 struct obd_import;
46 struct ldlm_res_id;
47 struct ptlrpc_request_set;
48 extern int test_req_buffer_pressure;
49
50 void ptlrpc_request_handle_notconn(struct ptlrpc_request *);
51 void lustre_assert_wire_constants(void);
52 int ptlrpc_import_in_recovery(struct obd_import *imp);
53 int ptlrpc_set_import_discon(struct obd_import *imp, __u32 conn_cnt);
54 void ptlrpc_handle_failed_import(struct obd_import *imp);
55 int ptlrpc_replay_next(struct obd_import *imp, int *inflight);
56 void ptlrpc_initiate_recovery(struct obd_import *imp);
57
58 int lustre_unpack_req_ptlrpc_body(struct ptlrpc_request *req, int offset);
59 int lustre_unpack_rep_ptlrpc_body(struct ptlrpc_request *req, int offset);
60
61 #ifdef LPROCFS
62 void ptlrpc_lprocfs_register_service(struct proc_dir_entry *proc_entry,
63                                      struct ptlrpc_service *svc);
64 void ptlrpc_lprocfs_unregister_service(struct ptlrpc_service *svc);
65 void ptlrpc_lprocfs_rpc_sent(struct ptlrpc_request *req);
66 void ptlrpc_lprocfs_do_request_stat (struct ptlrpc_request *req,
67                                      long q_usec, long work_usec);
68 #else
69 #define ptlrpc_lprocfs_register_service(params...) do{}while(0)
70 #define ptlrpc_lprocfs_unregister_service(params...) do{}while(0)
71 #define ptlrpc_lprocfs_rpc_sent(params...) do{}while(0)
72 #define ptlrpc_lprocfs_do_request_stat(params...) do{}while(0)
73 #endif /* LPROCFS */
74
75 /* recovd_thread.c */
76
77 int ptlrpc_expire_one_request(struct ptlrpc_request *req);
78
79 /* pers.c */
80 void ptlrpc_fill_bulk_md(lnet_md_t *md, struct ptlrpc_bulk_desc *desc);
81 void ptlrpc_add_bulk_page(struct ptlrpc_bulk_desc *desc, cfs_page_t *page,
82                           int pageoffset, int len);
83 void ptl_rpc_wipe_bulk_pages(struct ptlrpc_bulk_desc *desc);
84
85 /* pack_generic.c */
86 struct ptlrpc_reply_state *lustre_get_emerg_rs(struct ptlrpc_service *svc);
87 void lustre_put_emerg_rs(struct ptlrpc_reply_state *rs);
88
89 /* pinger.c */
90 int ptlrpc_start_pinger(void);
91 int ptlrpc_stop_pinger(void);
92 void ptlrpc_pinger_sending_on_import(struct obd_import *imp);
93 void ptlrpc_pinger_wake_up(void);
94 void ptlrpc_ping_import_soon(struct obd_import *imp);
95 #ifdef __KERNEL__
96 int ping_evictor_wake(struct obd_export *exp);
97 #else
98 #define ping_evictor_wake(exp)     1
99 #endif
100
101 /* sec_null.c */
102 int  sptlrpc_null_init(void);
103 void sptlrpc_null_fini(void);
104
105 /* sec_plain.c */
106 int  sptlrpc_plain_init(void);
107 void sptlrpc_plain_fini(void);
108
109 /* sec_bulk.c */
110 int  sptlrpc_enc_pool_init(void);
111 void sptlrpc_enc_pool_fini(void);
112 int sptlrpc_proc_read_enc_pool(char *page, char **start, off_t off, int count,
113                                int *eof, void *data);
114
115 /* sec_lproc.c */
116 int  sptlrpc_lproc_init(void);
117 void sptlrpc_lproc_fini(void);
118
119 /* sec_gc.c */
120 int sptlrpc_gc_start_thread(void);
121 void sptlrpc_gc_stop_thread(void);
122
123 /* sec.c */
124 int  __init sptlrpc_init(void);
125 void __exit sptlrpc_fini(void);
126
127 static inline int ll_rpc_recoverable_error(int rc)
128
129         return (rc == -ENOTCONN || rc == -ENODEV);
130 }
131 #endif /* PTLRPC_INTERNAL_H */