Whamcloud - gitweb
- changes about @flags in m_disconnect(). It should be cohenernt with m_connect(),
[fs/lustre-release.git] / lustre / mdc / mdc_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 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 #ifndef MDC_INTERNAL_H
22 #define MDC_INTERNAL_H
23
24 void mdc_getattr_pack(struct lustre_msg *msg, int offset,
25                       __u64 valid, int flags, struct mdc_op_data *data);
26 void mdc_open_pack(struct lustre_msg *msg, int offset,
27                    struct mdc_op_data *op_data, __u32 mode, __u64 rdev,
28                    __u32 flags, const void *lmm, int lmmlen);
29 void mdc_readdir_pack(struct ptlrpc_request *req, int req_offset,
30                       __u64 offset, __u32 size, struct lustre_id *mdc_id);
31 void mdc_close_pack(struct ptlrpc_request *req, int offset, struct obdo *oa,
32                     __u64 valid, struct obd_client_handle *och);
33
34 struct mdc_open_data {
35         struct obd_client_handle *mod_och;
36         struct ptlrpc_request    *mod_open_req;
37         struct ptlrpc_request    *mod_close_req;
38 };
39
40 struct mdc_rpc_lock {
41         struct semaphore rpcl_sem;
42         struct lookup_intent *rpcl_it;
43 };
44
45 static inline void mdc_init_rpc_lock(struct mdc_rpc_lock *lck)
46 {
47         sema_init(&lck->rpcl_sem, 1);
48         lck->rpcl_it = NULL;
49 }
50
51 static inline void mdc_get_rpc_lock(struct mdc_rpc_lock *lck, 
52                                     struct lookup_intent *it)
53 {
54         ENTRY;
55         down(&lck->rpcl_sem);
56         if (it) { 
57                 lck->rpcl_it = it;
58         }
59 }
60
61 static inline void mdc_put_rpc_lock(struct mdc_rpc_lock *lck, 
62                                     struct lookup_intent *it)
63 {
64         EXIT;
65         if (it == NULL) {
66                 LASSERT(it == lck->rpcl_it);
67                 up(&lck->rpcl_sem);
68                 return;
69         }
70         if (it) {
71                 LASSERT(it == lck->rpcl_it);
72                 lck->rpcl_it = NULL;
73                 up(&lck->rpcl_sem);
74         }
75 }
76
77 #endif /* MDC_INTERNAL_H */