GNU Linux-libre 4.9.337-gnu1
[releases.git] / drivers / staging / lustre / lustre / include / lustre_linkea.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2013, 2014, Intel Corporation.
24  * Use is subject to license terms.
25  *
26  * Author: di wang <di.wang@intel.com>
27  */
28
29 #define DEFAULT_LINKEA_SIZE     4096
30
31 struct linkea_data {
32         /**
33          * Buffer to keep link EA body.
34          */
35         struct lu_buf           *ld_buf;
36         /**
37          * The matched header, entry and its length in the EA
38          */
39         struct link_ea_header   *ld_leh;
40         struct link_ea_entry    *ld_lee;
41         int                     ld_reclen;
42 };
43
44 int linkea_data_new(struct linkea_data *ldata, struct lu_buf *buf);
45 int linkea_init(struct linkea_data *ldata);
46 void linkea_entry_unpack(const struct link_ea_entry *lee, int *reclen,
47                          struct lu_name *lname, struct lu_fid *pfid);
48 int linkea_entry_pack(struct link_ea_entry *lee, const struct lu_name *lname,
49                       const struct lu_fid *pfid);
50 int linkea_add_buf(struct linkea_data *ldata, const struct lu_name *lname,
51                    const struct lu_fid *pfid);
52 void linkea_del_buf(struct linkea_data *ldata, const struct lu_name *lname);
53 int linkea_links_find(struct linkea_data *ldata, const struct lu_name *lname,
54                       const struct lu_fid  *pfid);
55
56 static inline void linkea_first_entry(struct linkea_data *ldata)
57 {
58         LASSERT(ldata);
59         LASSERT(ldata->ld_leh);
60
61         if (ldata->ld_leh->leh_reccount == 0)
62                 ldata->ld_lee = NULL;
63         else
64                 ldata->ld_lee = (struct link_ea_entry *)(ldata->ld_leh + 1);
65 }
66
67 static inline void linkea_next_entry(struct linkea_data *ldata)
68 {
69         LASSERT(ldata);
70         LASSERT(ldata->ld_leh);
71
72         if (ldata->ld_lee) {
73                 ldata->ld_lee = (struct link_ea_entry *)((char *)ldata->ld_lee +
74                                                          ldata->ld_reclen);
75                 if ((char *)ldata->ld_lee >= ((char *)ldata->ld_leh +
76                                               ldata->ld_leh->leh_len))
77                         ldata->ld_lee = NULL;
78         }
79 }