Whamcloud - gitweb
Minor bugfix to allow multiple networked operations:
[fs/lustre-release.git] / lustre / include / linux / lustre_net.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (C) 2002 Cluster File Systems, Inc.
5  *
6  *   This file is part of Lustre, http://www.lustre.org.
7  *
8  *   Lustre is free software; you can redistribute it and/or
9  *   modify it under the terms of version 2 of the GNU General Public
10  *   License as published by the Free Software Foundation.
11  *
12  *   Lustre is distributed in the hope that it will be useful,
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *   GNU General Public License for more details.
16  *
17  *   You should have received a copy of the GNU General Public License
18  *   along with Lustre; if not, write to the Free Software
19  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  */
22
23 #ifndef _LUSTRE_NET_H
24 #define _LUSTRE_NET_H
25
26 #include <linux/kp30.h>
27 #include <portals/p30.h>
28 #include <linux/lustre_idl.h>
29
30 #define OSC_REQUEST_PORTAL 1
31 #define OSC_REPLY_PORTAL   2
32 #define MDS_REQUEST_PORTAL 3
33 #define MDS_REPLY_PORTAL   4
34 #define OST_REQUEST_PORTAL 5
35 #define OST_REPLY_PORTAL   6
36
37 struct ptlrpc_service {
38         char *srv_buf;
39         __u32 srv_buf_size;
40         __u32 srv_ring_length;
41         __u32 srv_portal;
42
43         struct lustre_peer srv_self;
44
45         /* FIXME: perhaps a list of EQs, if multiple NIs are used? */
46         ptl_handle_eq_t srv_eq;
47
48         ptl_handle_me_t srv_me;
49         ptl_process_id_t srv_id;
50         ptl_md_t srv_md;
51         ptl_handle_md_t srv_md_h;
52         wait_queue_head_t *srv_wait_queue;
53 };
54
55
56 struct ptlrpc_request { 
57         struct list_head rq_list;
58         struct mds_obd *rq_obd;
59         struct ost_obd *rq_ost;
60         int rq_status;
61
62         char *rq_reqbuf;
63         int rq_reqlen;
64         struct ptlreq_hdr *rq_reqhdr;
65         union ptl_req rq_req;
66         __u32 rq_xid;
67
68         char *rq_repbuf;
69         int rq_replen;
70         struct ptlrep_hdr *rq_rephdr;
71         union ptl_rep rq_rep;
72
73         void * rq_reply_handle;
74         wait_queue_head_t rq_wait_for_rep;
75
76         ptl_md_t rq_reply_md;
77         ptl_handle_md_t rq_reply_md_h;
78         ptl_md_t rq_req_md;
79         __u32 rq_reply_portal;
80         __u32 rq_req_portal;
81
82         struct lustre_peer rq_peer;
83 };
84
85 /* rpc/rpc.c */
86 int ptl_send_buf(struct ptlrpc_request *request, struct lustre_peer *peer,
87                  int portal, int is_request);
88 int ptl_send_rpc(struct ptlrpc_request *request, struct lustre_peer *peer);
89 int rpc_register_service(struct ptlrpc_service *service, char *uuid);
90
91 /* FIXME */
92 #if 1
93 # define LUSTRE_NAL "ksocknal"
94 #else
95 # define LUSTRE_NAL "kqswnal"
96 #endif
97
98 #endif