Whamcloud - gitweb
- landed b_hd_cray_merge3
[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 int mdc_packmd(struct obd_export *exp, struct lov_mds_md **lmmp,
25                struct lov_stripe_md *lsm);
26
27 int mdc_unpackmd(struct obd_export *exp, struct lov_stripe_md **lsmp,
28                  struct lov_mds_md *lmm, int lmm_size);
29
30 void mdc_getattr_pack(struct lustre_msg *msg, int offset,
31                       __u64 valid, int flags, struct mdc_op_data *data);
32 void mdc_open_pack(struct lustre_msg *msg, int offset,
33                    struct mdc_op_data *op_data, __u32 mode, __u64 rdev,
34                    __u32 flags, const void *lmm, int lmmlen);
35 void mdc_readdir_pack(struct ptlrpc_request *req, int req_offset,
36                       __u64 offset, __u32 size, struct lustre_id *mdc_id);
37 void mdc_close_pack(struct ptlrpc_request *req, int offset, struct obdo *oa,
38                     __u64 valid, struct obd_client_handle *och);
39
40 struct mdc_open_data {
41         struct obd_client_handle *mod_och;
42         struct ptlrpc_request    *mod_open_req;
43         struct ptlrpc_request    *mod_close_req;
44 };
45
46 struct mdc_rpc_lock {
47         struct semaphore rpcl_sem;
48         struct lookup_intent *rpcl_it;
49 };
50
51 static inline void mdc_init_rpc_lock(struct mdc_rpc_lock *lck)
52 {
53         sema_init(&lck->rpcl_sem, 1);
54         lck->rpcl_it = NULL;
55 }
56
57 static inline void mdc_get_rpc_lock(struct mdc_rpc_lock *lck, 
58                                     struct lookup_intent *it)
59 {
60         ENTRY;
61         down(&lck->rpcl_sem);
62         if (it) { 
63                 lck->rpcl_it = it;
64         }
65 }
66
67 static inline void mdc_put_rpc_lock(struct mdc_rpc_lock *lck, 
68                                     struct lookup_intent *it)
69 {
70         EXIT;
71         if (it == NULL) {
72                 LASSERT(it == lck->rpcl_it);
73                 up(&lck->rpcl_sem);
74                 return;
75         }
76         if (it) {
77                 LASSERT(it == lck->rpcl_it);
78                 lck->rpcl_it = NULL;
79                 up(&lck->rpcl_sem);
80         }
81 }
82
83 #endif /* MDC_INTERNAL_H */