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