Whamcloud - gitweb
8aaf4f5258ce12df8da9810ca8913fd633ff669f
[fs/lustre-release.git] / lustre / utils / wiretest.c
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) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  */
32
33 #include <errno.h>
34 #include <limits.h>
35 #include <stdio.h>
36 #include <string.h>
37
38 #include <linux/lustre/lustre_idl.h>
39 #ifdef HAVE_SERVER_SUPPORT
40 #include <linux/lustre/lustre_lfsck_user.h>
41 #include <linux/lustre/lustre_disk.h>
42 #ifdef CONFIG_FS_POSIX_ACL
43 #include <linux/posix_acl_xattr.h>
44 #ifdef HAVE_STRUCT_POSIX_ACL_XATTR
45 # define posix_acl_xattr_header struct posix_acl_xattr_header
46 # define posix_acl_xattr_entry  struct posix_acl_xattr_entry
47 #endif /* HAVE_STRUCT_POSIX_ACL_XATTR */
48 #endif /* CONFIG_FS_POSIX_ACL */
49 #endif /* HAVE_SERVER_SUPPORT */
50 #include <linux/lustre/lustre_cfg.h>
51
52 #define LASSERT(cond) if (!(cond)) { printf("failed " #cond "\n"); ret = 1; }
53 #define LASSERTF(cond, fmt, ...) if (!(cond)) { printf("failed '" #cond "'" fmt, ## __VA_ARGS__); ret = 1; }
54 /*
55  * BUILD_BUG_ON() is Compile-time LASSERT, which verifies correctness at
56  * compile-time rather than runtime. If "cond" is true, then there are two
57  * identical cases ("0" and "0"), which is an error that causes the compiler to
58  * complain. If "cond" is false, then there are two different cases
59  * ("(non-zero)" and "0").
60  *
61  */
62 #ifndef BUILD_BUG_ON
63 #define BUILD_BUG_ON(cond) do {switch (0) {case (cond): case 1: break; } } while (0)
64 #endif
65
66 int ret;
67
68 void lustre_assert_wire_constants(void);
69
70 int main()
71 {
72         lustre_assert_wire_constants();
73
74         if (ret == 0)
75                 printf("wire constants OK\n");
76
77         return ret;
78 }
79
80 void lustre_assert_wire_constants(void)
81 {
82         /* Wire protocol assertions generated by 'wirecheck'
83          * (make -C lustre/utils newwiretest)
84          */
85
86         /* Constants... */
87         LASSERTF(PTL_RPC_MSG_REQUEST == 4711, "found %lld\n",
88                  (long long)PTL_RPC_MSG_REQUEST);
89         LASSERTF(PTL_RPC_MSG_ERR == 4712, "found %lld\n",
90                  (long long)PTL_RPC_MSG_ERR);
91         LASSERTF(PTL_RPC_MSG_REPLY == 4713, "found %lld\n",
92                  (long long)PTL_RPC_MSG_REPLY);
93         LASSERTF(MDS_DIR_END_OFF == 0xfffffffffffffffeULL, "found 0x%.16llxULL\n",
94                  MDS_DIR_END_OFF);
95         LASSERTF(DEAD_HANDLE_MAGIC == 0xdeadbeefcafebabeULL, "found 0x%.16llxULL\n",
96                  DEAD_HANDLE_MAGIC);
97         BUILD_BUG_ON(MTI_NAME_MAXLEN != 64);
98         LASSERTF(OST_REPLY == 0, "found %lld\n",
99                  (long long)OST_REPLY);
100         LASSERTF(OST_GETATTR == 1, "found %lld\n",
101                  (long long)OST_GETATTR);
102         LASSERTF(OST_SETATTR == 2, "found %lld\n",
103                  (long long)OST_SETATTR);
104         LASSERTF(OST_READ == 3, "found %lld\n",
105                  (long long)OST_READ);
106         LASSERTF(OST_WRITE == 4, "found %lld\n",
107                  (long long)OST_WRITE);
108         LASSERTF(OST_CREATE == 5, "found %lld\n",
109                  (long long)OST_CREATE);
110         LASSERTF(OST_DESTROY == 6, "found %lld\n",
111                  (long long)OST_DESTROY);
112         LASSERTF(OST_GET_INFO == 7, "found %lld\n",
113                  (long long)OST_GET_INFO);
114         LASSERTF(OST_CONNECT == 8, "found %lld\n",
115                  (long long)OST_CONNECT);
116         LASSERTF(OST_DISCONNECT == 9, "found %lld\n",
117                  (long long)OST_DISCONNECT);
118         LASSERTF(OST_PUNCH == 10, "found %lld\n",
119                  (long long)OST_PUNCH);
120         LASSERTF(OST_OPEN == 11, "found %lld\n",
121                  (long long)OST_OPEN);
122         LASSERTF(OST_CLOSE == 12, "found %lld\n",
123                  (long long)OST_CLOSE);
124         LASSERTF(OST_STATFS == 13, "found %lld\n",
125                  (long long)OST_STATFS);
126         LASSERTF(OST_SYNC == 16, "found %lld\n",
127                  (long long)OST_SYNC);
128         LASSERTF(OST_SET_INFO == 17, "found %lld\n",
129                  (long long)OST_SET_INFO);
130         LASSERTF(OST_QUOTACHECK == 18, "found %lld\n",
131                  (long long)OST_QUOTACHECK);
132         LASSERTF(OST_QUOTACTL == 19, "found %lld\n",
133                  (long long)OST_QUOTACTL);
134         LASSERTF(OST_QUOTA_ADJUST_QUNIT == 20, "found %lld\n",
135                  (long long)OST_QUOTA_ADJUST_QUNIT);
136         LASSERTF(OST_LADVISE == 21, "found %lld\n",
137                  (long long)OST_LADVISE);
138         LASSERTF(OST_FALLOCATE == 22, "found %lld\n",
139                  (long long)OST_FALLOCATE);
140         LASSERTF(OST_LAST_OPC == 23, "found %lld\n",
141                  (long long)OST_LAST_OPC);
142         LASSERTF(OBD_OBJECT_EOF == 0xffffffffffffffffULL, "found 0x%.16llxULL\n",
143                  OBD_OBJECT_EOF);
144         LASSERTF(OST_MIN_PRECREATE == 32, "found %lld\n",
145                  (long long)OST_MIN_PRECREATE);
146         LASSERTF(OST_MAX_PRECREATE == 20000, "found %lld\n",
147                  (long long)OST_MAX_PRECREATE);
148         LASSERTF(OST_LVB_ERR_INIT == 0xffbadbad80000000ULL, "found 0x%.16llxULL\n",
149                  OST_LVB_ERR_INIT);
150         LASSERTF(OST_LVB_ERR_MASK == 0xffbadbad00000000ULL, "found 0x%.16llxULL\n",
151                  OST_LVB_ERR_MASK);
152         LASSERTF(MDS_FIRST_OPC == 33, "found %lld\n",
153                  (long long)MDS_FIRST_OPC);
154         LASSERTF(MDS_GETATTR == 33, "found %lld\n",
155                  (long long)MDS_GETATTR);
156         LASSERTF(MDS_GETATTR_NAME == 34, "found %lld\n",
157                  (long long)MDS_GETATTR_NAME);
158         LASSERTF(MDS_CLOSE == 35, "found %lld\n",
159                  (long long)MDS_CLOSE);
160         LASSERTF(MDS_REINT == 36, "found %lld\n",
161                  (long long)MDS_REINT);
162         LASSERTF(MDS_READPAGE == 37, "found %lld\n",
163                  (long long)MDS_READPAGE);
164         LASSERTF(MDS_CONNECT == 38, "found %lld\n",
165                  (long long)MDS_CONNECT);
166         LASSERTF(MDS_DISCONNECT == 39, "found %lld\n",
167                  (long long)MDS_DISCONNECT);
168         LASSERTF(MDS_GET_ROOT == 40, "found %lld\n",
169                  (long long)MDS_GET_ROOT);
170         LASSERTF(MDS_STATFS == 41, "found %lld\n",
171                  (long long)MDS_STATFS);
172         LASSERTF(MDS_PIN == 42, "found %lld\n",
173                  (long long)MDS_PIN);
174         LASSERTF(MDS_UNPIN == 43, "found %lld\n",
175                  (long long)MDS_UNPIN);
176         LASSERTF(MDS_SYNC == 44, "found %lld\n",
177                  (long long)MDS_SYNC);
178         LASSERTF(MDS_DONE_WRITING == 45, "found %lld\n",
179                  (long long)MDS_DONE_WRITING);
180         LASSERTF(MDS_SET_INFO == 46, "found %lld\n",
181                  (long long)MDS_SET_INFO);
182         LASSERTF(MDS_QUOTACHECK == 47, "found %lld\n",
183                  (long long)MDS_QUOTACHECK);
184         LASSERTF(MDS_QUOTACTL == 48, "found %lld\n",
185                  (long long)MDS_QUOTACTL);
186         LASSERTF(MDS_GETXATTR == 49, "found %lld\n",
187                  (long long)MDS_GETXATTR);
188         LASSERTF(MDS_SETXATTR == 50, "found %lld\n",
189                  (long long)MDS_SETXATTR);
190         LASSERTF(MDS_WRITEPAGE == 51, "found %lld\n",
191                  (long long)MDS_WRITEPAGE);
192         LASSERTF(MDS_IS_SUBDIR == 52, "found %lld\n",
193                  (long long)MDS_IS_SUBDIR);
194         LASSERTF(MDS_GET_INFO == 53, "found %lld\n",
195                  (long long)MDS_GET_INFO);
196         LASSERTF(MDS_HSM_STATE_GET == 54, "found %lld\n",
197                  (long long)MDS_HSM_STATE_GET);
198         LASSERTF(MDS_HSM_STATE_SET == 55, "found %lld\n",
199                  (long long)MDS_HSM_STATE_SET);
200         LASSERTF(MDS_HSM_ACTION == 56, "found %lld\n",
201                  (long long)MDS_HSM_ACTION);
202         LASSERTF(MDS_HSM_PROGRESS == 57, "found %lld\n",
203                  (long long)MDS_HSM_PROGRESS);
204         LASSERTF(MDS_HSM_REQUEST == 58, "found %lld\n",
205                  (long long)MDS_HSM_REQUEST);
206         LASSERTF(MDS_HSM_CT_REGISTER == 59, "found %lld\n",
207                  (long long)MDS_HSM_CT_REGISTER);
208         LASSERTF(MDS_HSM_CT_UNREGISTER == 60, "found %lld\n",
209                  (long long)MDS_HSM_CT_UNREGISTER);
210         LASSERTF(MDS_SWAP_LAYOUTS == 61, "found %lld\n",
211                  (long long)MDS_SWAP_LAYOUTS);
212         LASSERTF(MDS_RMFID == 62, "found %lld\n",
213                  (long long)MDS_RMFID);
214         LASSERTF(MDS_LAST_OPC == 63, "found %lld\n",
215                  (long long)MDS_LAST_OPC);
216         LASSERTF(REINT_SETATTR == 1, "found %lld\n",
217                  (long long)REINT_SETATTR);
218         LASSERTF(REINT_CREATE == 2, "found %lld\n",
219                  (long long)REINT_CREATE);
220         LASSERTF(REINT_LINK == 3, "found %lld\n",
221                  (long long)REINT_LINK);
222         LASSERTF(REINT_UNLINK == 4, "found %lld\n",
223                  (long long)REINT_UNLINK);
224         LASSERTF(REINT_RENAME == 5, "found %lld\n",
225                  (long long)REINT_RENAME);
226         LASSERTF(REINT_OPEN == 6, "found %lld\n",
227                  (long long)REINT_OPEN);
228         LASSERTF(REINT_SETXATTR == 7, "found %lld\n",
229                  (long long)REINT_SETXATTR);
230         LASSERTF(REINT_RMENTRY == 8, "found %lld\n",
231                  (long long)REINT_RMENTRY);
232         LASSERTF(REINT_MIGRATE == 9, "found %lld\n",
233                  (long long)REINT_MIGRATE);
234         LASSERTF(REINT_MAX == 11, "found %lld\n",
235                  (long long)REINT_MAX);
236         LASSERTF(DISP_IT_EXECD == 0x00000001UL, "found 0x%.8xUL\n",
237                 (unsigned)DISP_IT_EXECD);
238         LASSERTF(DISP_LOOKUP_EXECD == 0x00000002UL, "found 0x%.8xUL\n",
239                 (unsigned)DISP_LOOKUP_EXECD);
240         LASSERTF(DISP_LOOKUP_NEG == 0x00000004UL, "found 0x%.8xUL\n",
241                 (unsigned)DISP_LOOKUP_NEG);
242         LASSERTF(DISP_LOOKUP_POS == 0x00000008UL, "found 0x%.8xUL\n",
243                 (unsigned)DISP_LOOKUP_POS);
244         LASSERTF(DISP_OPEN_CREATE == 0x00000010UL, "found 0x%.8xUL\n",
245                 (unsigned)DISP_OPEN_CREATE);
246         LASSERTF(DISP_OPEN_OPEN == 0x00000020UL, "found 0x%.8xUL\n",
247                 (unsigned)DISP_OPEN_OPEN);
248         LASSERTF(DISP_ENQ_COMPLETE == 0x00400000UL, "found 0x%.8xUL\n",
249                 (unsigned)DISP_ENQ_COMPLETE);
250         LASSERTF(DISP_ENQ_OPEN_REF == 0x00800000UL, "found 0x%.8xUL\n",
251                 (unsigned)DISP_ENQ_OPEN_REF);
252         LASSERTF(DISP_ENQ_CREATE_REF == 0x01000000UL, "found 0x%.8xUL\n",
253                 (unsigned)DISP_ENQ_CREATE_REF);
254         LASSERTF(DISP_OPEN_LOCK == 0x02000000UL, "found 0x%.8xUL\n",
255                 (unsigned)DISP_OPEN_LOCK);
256         LASSERTF(MDS_STATUS_CONN == 1, "found %lld\n",
257                  (long long)MDS_STATUS_CONN);
258         LASSERTF(MDS_STATUS_LOV == 2, "found %lld\n",
259                  (long long)MDS_STATUS_LOV);
260         LASSERTF(MDS_ATTR_MODE == 0x0000000000000001ULL, "found 0x%.16llxULL\n",
261                         (long long)MDS_ATTR_MODE);
262         LASSERTF(MDS_ATTR_UID == 0x0000000000000002ULL, "found 0x%.16llxULL\n",
263                         (long long)MDS_ATTR_UID);
264         LASSERTF(MDS_ATTR_GID == 0x0000000000000004ULL, "found 0x%.16llxULL\n",
265                         (long long)MDS_ATTR_GID);
266         LASSERTF(MDS_ATTR_SIZE == 0x0000000000000008ULL, "found 0x%.16llxULL\n",
267                         (long long)MDS_ATTR_SIZE);
268         LASSERTF(MDS_ATTR_ATIME == 0x0000000000000010ULL, "found 0x%.16llxULL\n",
269                         (long long)MDS_ATTR_ATIME);
270         LASSERTF(MDS_ATTR_MTIME == 0x0000000000000020ULL, "found 0x%.16llxULL\n",
271                         (long long)MDS_ATTR_MTIME);
272         LASSERTF(MDS_ATTR_CTIME == 0x0000000000000040ULL, "found 0x%.16llxULL\n",
273                         (long long)MDS_ATTR_CTIME);
274         LASSERTF(MDS_ATTR_ATIME_SET == 0x0000000000000080ULL, "found 0x%.16llxULL\n",
275                         (long long)MDS_ATTR_ATIME_SET);
276         LASSERTF(MDS_ATTR_MTIME_SET == 0x0000000000000100ULL, "found 0x%.16llxULL\n",
277                         (long long)MDS_ATTR_MTIME_SET);
278         LASSERTF(MDS_ATTR_FORCE == 0x0000000000000200ULL, "found 0x%.16llxULL\n",
279                         (long long)MDS_ATTR_FORCE);
280         LASSERTF(MDS_ATTR_ATTR_FLAG == 0x0000000000000400ULL, "found 0x%.16llxULL\n",
281                         (long long)MDS_ATTR_ATTR_FLAG);
282         LASSERTF(MDS_ATTR_KILL_SUID == 0x0000000000000800ULL, "found 0x%.16llxULL\n",
283                         (long long)MDS_ATTR_KILL_SUID);
284         LASSERTF(MDS_ATTR_KILL_SGID == 0x0000000000001000ULL, "found 0x%.16llxULL\n",
285                         (long long)MDS_ATTR_KILL_SGID);
286         LASSERTF(MDS_ATTR_CTIME_SET == 0x0000000000002000ULL, "found 0x%.16llxULL\n",
287                         (long long)MDS_ATTR_CTIME_SET);
288         LASSERTF(MDS_ATTR_FROM_OPEN == 0x0000000000004000ULL, "found 0x%.16llxULL\n",
289                         (long long)MDS_ATTR_FROM_OPEN);
290         LASSERTF(MDS_ATTR_BLOCKS == 0x0000000000008000ULL, "found 0x%.16llxULL\n",
291                         (long long)MDS_ATTR_BLOCKS);
292         LASSERTF(MDS_ATTR_PROJID == 0x0000000000010000ULL, "found 0x%.16llxULL\n",
293                         (long long)MDS_ATTR_PROJID);
294         LASSERTF(MDS_ATTR_LSIZE == 0x0000000000020000ULL, "found 0x%.16llxULL\n",
295                         (long long)MDS_ATTR_LSIZE);
296         LASSERTF(MDS_ATTR_LBLOCKS == 0x0000000000040000ULL, "found 0x%.16llxULL\n",
297                         (long long)MDS_ATTR_LBLOCKS);
298         LASSERTF(MDS_ATTR_OVERRIDE == 0x0000000002000000ULL, "found 0x%.16llxULL\n",
299                         (long long)MDS_ATTR_OVERRIDE);
300         LASSERTF(FLD_QUERY == 900, "found %lld\n",
301                  (long long)FLD_QUERY);
302         LASSERTF(FLD_READ == 901, "found %lld\n",
303                  (long long)FLD_READ);
304         LASSERTF(FLD_FIRST_OPC == 900, "found %lld\n",
305                  (long long)FLD_FIRST_OPC);
306         LASSERTF(FLD_LAST_OPC == 902, "found %lld\n",
307                  (long long)FLD_LAST_OPC);
308         LASSERTF(SEQ_QUERY == 700, "found %lld\n",
309                  (long long)SEQ_QUERY);
310         LASSERTF(SEQ_FIRST_OPC == 700, "found %lld\n",
311                  (long long)SEQ_FIRST_OPC);
312         LASSERTF(SEQ_LAST_OPC == 701, "found %lld\n",
313                  (long long)SEQ_LAST_OPC);
314         LASSERTF(LFSCK_NOTIFY == 1101, "found %lld\n",
315                  (long long)LFSCK_NOTIFY);
316         LASSERTF(LFSCK_QUERY == 1102, "found %lld\n",
317                  (long long)LFSCK_QUERY);
318         LASSERTF(LFSCK_FIRST_OPC == 1101, "found %lld\n",
319                  (long long)LFSCK_FIRST_OPC);
320         LASSERTF(LFSCK_LAST_OPC == 1103, "found %lld\n",
321                  (long long)LFSCK_LAST_OPC);
322         LASSERTF(SEQ_ALLOC_SUPER == 0, "found %lld\n",
323                  (long long)SEQ_ALLOC_SUPER);
324         LASSERTF(SEQ_ALLOC_META == 1, "found %lld\n",
325                  (long long)SEQ_ALLOC_META);
326         LASSERTF(LDLM_ENQUEUE == 101, "found %lld\n",
327                  (long long)LDLM_ENQUEUE);
328         LASSERTF(LDLM_CONVERT == 102, "found %lld\n",
329                  (long long)LDLM_CONVERT);
330         LASSERTF(LDLM_CANCEL == 103, "found %lld\n",
331                  (long long)LDLM_CANCEL);
332         LASSERTF(LDLM_BL_CALLBACK == 104, "found %lld\n",
333                  (long long)LDLM_BL_CALLBACK);
334         LASSERTF(LDLM_CP_CALLBACK == 105, "found %lld\n",
335                  (long long)LDLM_CP_CALLBACK);
336         LASSERTF(LDLM_GL_CALLBACK == 106, "found %lld\n",
337                  (long long)LDLM_GL_CALLBACK);
338         LASSERTF(LDLM_SET_INFO == 107, "found %lld\n",
339                  (long long)LDLM_SET_INFO);
340         LASSERTF(LDLM_LAST_OPC == 108, "found %lld\n",
341                  (long long)LDLM_LAST_OPC);
342         LASSERTF(LCK_MINMODE == 0, "found %lld\n",
343                  (long long)LCK_MINMODE);
344         LASSERTF(LCK_EX == 1, "found %lld\n",
345                  (long long)LCK_EX);
346         LASSERTF(LCK_PW == 2, "found %lld\n",
347                  (long long)LCK_PW);
348         LASSERTF(LCK_PR == 4, "found %lld\n",
349                  (long long)LCK_PR);
350         LASSERTF(LCK_CW == 8, "found %lld\n",
351                  (long long)LCK_CW);
352         LASSERTF(LCK_CR == 16, "found %lld\n",
353                  (long long)LCK_CR);
354         LASSERTF(LCK_NL == 32, "found %lld\n",
355                  (long long)LCK_NL);
356         LASSERTF(LCK_GROUP == 64, "found %lld\n",
357                  (long long)LCK_GROUP);
358         LASSERTF(LCK_COS == 128, "found %lld\n",
359                  (long long)LCK_COS);
360         LASSERTF(LCK_MAXMODE == 129, "found %lld\n",
361                  (long long)LCK_MAXMODE);
362         LASSERTF(LCK_MODE_NUM == 8, "found %lld\n",
363                  (long long)LCK_MODE_NUM);
364         BUILD_BUG_ON(LDLM_PLAIN != 10);
365         BUILD_BUG_ON(LDLM_EXTENT != 11);
366         BUILD_BUG_ON(LDLM_FLOCK != 12);
367         BUILD_BUG_ON(LDLM_IBITS != 13);
368         BUILD_BUG_ON(LDLM_MAX_TYPE != 14);
369         BUILD_BUG_ON(LUSTRE_RES_ID_SEQ_OFF != 0);
370         BUILD_BUG_ON(LUSTRE_RES_ID_VER_OID_OFF != 1);
371         LASSERTF(OUT_UPDATE == 1000, "found %lld\n",
372                  (long long)OUT_UPDATE);
373         LASSERTF(OUT_UPDATE_LAST_OPC == 1001, "found %lld\n",
374                  (long long)OUT_UPDATE_LAST_OPC);
375         BUILD_BUG_ON(LUSTRE_RES_ID_QUOTA_SEQ_OFF != 2);
376         BUILD_BUG_ON(LUSTRE_RES_ID_QUOTA_VER_OID_OFF != 3);
377         BUILD_BUG_ON(LUSTRE_RES_ID_HSH_OFF != 3);
378         BUILD_BUG_ON(LQUOTA_TYPE_USR != 0);
379         BUILD_BUG_ON(LQUOTA_TYPE_GRP != 1);
380         BUILD_BUG_ON(LQUOTA_RES_MD != 1);
381         BUILD_BUG_ON(LQUOTA_RES_DT != 2);
382         LASSERTF(OBD_PING == 400, "found %lld\n",
383                  (long long)OBD_PING);
384         LASSERTF(OBD_IDX_READ == 403, "found %lld\n",
385                  (long long)OBD_IDX_READ);
386         LASSERTF(OBD_LAST_OPC == 404, "found %lld\n",
387                  (long long)OBD_LAST_OPC);
388         LASSERTF(QUOTA_DQACQ == 601, "found %lld\n",
389                  (long long)QUOTA_DQACQ);
390         LASSERTF(QUOTA_DQREL == 602, "found %lld\n",
391                  (long long)QUOTA_DQREL);
392         LASSERTF(QUOTA_LAST_OPC == 603, "found %lld\n",
393                  (long long)QUOTA_LAST_OPC);
394         LASSERTF(MGS_CONNECT == 250, "found %lld\n",
395                  (long long)MGS_CONNECT);
396         LASSERTF(MGS_DISCONNECT == 251, "found %lld\n",
397                  (long long)MGS_DISCONNECT);
398         LASSERTF(MGS_EXCEPTION == 252, "found %lld\n",
399                  (long long)MGS_EXCEPTION);
400         LASSERTF(MGS_TARGET_REG == 253, "found %lld\n",
401                  (long long)MGS_TARGET_REG);
402         LASSERTF(MGS_TARGET_DEL == 254, "found %lld\n",
403                  (long long)MGS_TARGET_DEL);
404         LASSERTF(MGS_SET_INFO == 255, "found %lld\n",
405                  (long long)MGS_SET_INFO);
406         LASSERTF(MGS_CONFIG_READ == 256, "found %lld\n",
407                  (long long)MGS_CONFIG_READ);
408         LASSERTF(MGS_LAST_OPC == 257, "found %lld\n",
409                  (long long)MGS_LAST_OPC);
410         LASSERTF(SEC_CTX_INIT == 801, "found %lld\n",
411                  (long long)SEC_CTX_INIT);
412         LASSERTF(SEC_CTX_INIT_CONT == 802, "found %lld\n",
413                  (long long)SEC_CTX_INIT_CONT);
414         LASSERTF(SEC_CTX_FINI == 803, "found %lld\n",
415                  (long long)SEC_CTX_FINI);
416         LASSERTF(SEC_LAST_OPC == 804, "found %lld\n",
417                  (long long)SEC_LAST_OPC);
418         /* Sizes and Offsets */
419
420         /* Checks for struct obd_uuid */
421         LASSERTF((int)sizeof(struct obd_uuid) == 40, "found %lld\n",
422                  (long long)(int)sizeof(struct obd_uuid));
423
424         /* Checks for struct lu_seq_range */
425         LASSERTF((int)sizeof(struct lu_seq_range) == 24, "found %lld\n",
426                  (long long)(int)sizeof(struct lu_seq_range));
427         LASSERTF((int)offsetof(struct lu_seq_range, lsr_start) == 0, "found %lld\n",
428                  (long long)(int)offsetof(struct lu_seq_range, lsr_start));
429         LASSERTF((int)sizeof(((struct lu_seq_range *)0)->lsr_start) == 8, "found %lld\n",
430                  (long long)(int)sizeof(((struct lu_seq_range *)0)->lsr_start));
431         LASSERTF((int)offsetof(struct lu_seq_range, lsr_end) == 8, "found %lld\n",
432                  (long long)(int)offsetof(struct lu_seq_range, lsr_end));
433         LASSERTF((int)sizeof(((struct lu_seq_range *)0)->lsr_end) == 8, "found %lld\n",
434                  (long long)(int)sizeof(((struct lu_seq_range *)0)->lsr_end));
435         LASSERTF((int)offsetof(struct lu_seq_range, lsr_index) == 16, "found %lld\n",
436                  (long long)(int)offsetof(struct lu_seq_range, lsr_index));
437         LASSERTF((int)sizeof(((struct lu_seq_range *)0)->lsr_index) == 4, "found %lld\n",
438                  (long long)(int)sizeof(((struct lu_seq_range *)0)->lsr_index));
439         LASSERTF((int)offsetof(struct lu_seq_range, lsr_flags) == 20, "found %lld\n",
440                  (long long)(int)offsetof(struct lu_seq_range, lsr_flags));
441         LASSERTF((int)sizeof(((struct lu_seq_range *)0)->lsr_flags) == 4, "found %lld\n",
442                  (long long)(int)sizeof(((struct lu_seq_range *)0)->lsr_flags));
443         LASSERTF(LU_SEQ_RANGE_MDT == 0, "found %lld\n",
444                  (long long)LU_SEQ_RANGE_MDT);
445         LASSERTF(LU_SEQ_RANGE_OST == 1, "found %lld\n",
446                  (long long)LU_SEQ_RANGE_OST);
447
448         /* Checks for struct lustre_mdt_attrs */
449         LASSERTF((int)sizeof(struct lustre_mdt_attrs) == 24, "found %lld\n",
450                  (long long)(int)sizeof(struct lustre_mdt_attrs));
451         LASSERTF((int)offsetof(struct lustre_mdt_attrs, lma_compat) == 0, "found %lld\n",
452                  (long long)(int)offsetof(struct lustre_mdt_attrs, lma_compat));
453         LASSERTF((int)sizeof(((struct lustre_mdt_attrs *)0)->lma_compat) == 4, "found %lld\n",
454                  (long long)(int)sizeof(((struct lustre_mdt_attrs *)0)->lma_compat));
455         LASSERTF((int)offsetof(struct lustre_mdt_attrs, lma_incompat) == 4, "found %lld\n",
456                  (long long)(int)offsetof(struct lustre_mdt_attrs, lma_incompat));
457         LASSERTF((int)sizeof(((struct lustre_mdt_attrs *)0)->lma_incompat) == 4, "found %lld\n",
458                  (long long)(int)sizeof(((struct lustre_mdt_attrs *)0)->lma_incompat));
459         LASSERTF((int)offsetof(struct lustre_mdt_attrs, lma_self_fid) == 8, "found %lld\n",
460                  (long long)(int)offsetof(struct lustre_mdt_attrs, lma_self_fid));
461         LASSERTF((int)sizeof(((struct lustre_mdt_attrs *)0)->lma_self_fid) == 16, "found %lld\n",
462                  (long long)(int)sizeof(((struct lustre_mdt_attrs *)0)->lma_self_fid));
463         LASSERTF(LMAC_HSM == 0x00000001UL, "found 0x%.8xUL\n",
464                 (unsigned)LMAC_HSM);
465         LASSERTF(LMAC_NOT_IN_OI == 0x00000004UL, "found 0x%.8xUL\n",
466                 (unsigned)LMAC_NOT_IN_OI);
467         LASSERTF(LMAC_FID_ON_OST == 0x00000008UL, "found 0x%.8xUL\n",
468                 (unsigned)LMAC_FID_ON_OST);
469         LASSERTF(LMAC_STRIPE_INFO == 0x00000010UL, "found 0x%.8xUL\n",
470                 (unsigned)LMAC_STRIPE_INFO);
471         LASSERTF(LMAC_COMP_INFO == 0x00000020UL, "found 0x%.8xUL\n",
472                 (unsigned)LMAC_COMP_INFO);
473         LASSERTF(LMAC_IDX_BACKUP == 0x00000040UL, "found 0x%.8xUL\n",
474                 (unsigned)LMAC_IDX_BACKUP);
475         LASSERTF(LMAI_RELEASED == 0x00000001UL, "found 0x%.8xUL\n",
476                 (unsigned)LMAI_RELEASED);
477         LASSERTF(LMAI_AGENT == 0x00000002UL, "found 0x%.8xUL\n",
478                 (unsigned)LMAI_AGENT);
479         LASSERTF(LMAI_REMOTE_PARENT == 0x00000004UL, "found 0x%.8xUL\n",
480                 (unsigned)LMAI_REMOTE_PARENT);
481         LASSERTF(LMAI_STRIPED == 0x00000008UL, "found 0x%.8xUL\n",
482                 (unsigned)LMAI_STRIPED);
483         LASSERTF(LMAI_ORPHAN == 0x00000010UL, "found 0x%.8xUL\n",
484                 (unsigned)LMAI_ORPHAN);
485
486         /* Checks for struct lustre_ost_attrs */
487         LASSERTF((int)sizeof(struct lustre_ost_attrs) == 64, "found %lld\n",
488                  (long long)(int)sizeof(struct lustre_ost_attrs));
489         LASSERTF((int)offsetof(struct lustre_ost_attrs, loa_lma) == 0, "found %lld\n",
490                  (long long)(int)offsetof(struct lustre_ost_attrs, loa_lma));
491         LASSERTF((int)sizeof(((struct lustre_ost_attrs *)0)->loa_lma) == 24, "found %lld\n",
492                  (long long)(int)sizeof(((struct lustre_ost_attrs *)0)->loa_lma));
493         LASSERTF((int)offsetof(struct lustre_ost_attrs, loa_parent_fid) == 24, "found %lld\n",
494                  (long long)(int)offsetof(struct lustre_ost_attrs, loa_parent_fid));
495         LASSERTF((int)sizeof(((struct lustre_ost_attrs *)0)->loa_parent_fid) == 16, "found %lld\n",
496                  (long long)(int)sizeof(((struct lustre_ost_attrs *)0)->loa_parent_fid));
497         LASSERTF((int)offsetof(struct lustre_ost_attrs, loa_stripe_size) == 40, "found %lld\n",
498                  (long long)(int)offsetof(struct lustre_ost_attrs, loa_stripe_size));
499         LASSERTF((int)sizeof(((struct lustre_ost_attrs *)0)->loa_stripe_size) == 4, "found %lld\n",
500                  (long long)(int)sizeof(((struct lustre_ost_attrs *)0)->loa_stripe_size));
501         LASSERTF((int)offsetof(struct lustre_ost_attrs, loa_comp_id) == 44, "found %lld\n",
502                  (long long)(int)offsetof(struct lustre_ost_attrs, loa_comp_id));
503         LASSERTF((int)sizeof(((struct lustre_ost_attrs *)0)->loa_comp_id) == 4, "found %lld\n",
504                  (long long)(int)sizeof(((struct lustre_ost_attrs *)0)->loa_comp_id));
505         LASSERTF((int)offsetof(struct lustre_ost_attrs, loa_comp_start) == 48, "found %lld\n",
506                  (long long)(int)offsetof(struct lustre_ost_attrs, loa_comp_start));
507         LASSERTF((int)sizeof(((struct lustre_ost_attrs *)0)->loa_comp_start) == 8, "found %lld\n",
508                  (long long)(int)sizeof(((struct lustre_ost_attrs *)0)->loa_comp_start));
509         LASSERTF((int)offsetof(struct lustre_ost_attrs, loa_comp_end) == 56, "found %lld\n",
510                  (long long)(int)offsetof(struct lustre_ost_attrs, loa_comp_end));
511         LASSERTF((int)sizeof(((struct lustre_ost_attrs *)0)->loa_comp_end) == 8, "found %lld\n",
512                  (long long)(int)sizeof(((struct lustre_ost_attrs *)0)->loa_comp_end));
513         LASSERTF(OUT_CREATE == 1, "found %lld\n",
514                  (long long)OUT_CREATE);
515         LASSERTF(OUT_DESTROY == 2, "found %lld\n",
516                  (long long)OUT_DESTROY);
517         LASSERTF(OUT_REF_ADD == 3, "found %lld\n",
518                  (long long)OUT_REF_ADD);
519         LASSERTF(OUT_REF_DEL == 4, "found %lld\n",
520                  (long long)OUT_REF_DEL);
521         LASSERTF(OUT_ATTR_SET == 5, "found %lld\n",
522                  (long long)OUT_ATTR_SET);
523         LASSERTF(OUT_ATTR_GET == 6, "found %lld\n",
524                  (long long)OUT_ATTR_GET);
525         LASSERTF(OUT_XATTR_SET == 7, "found %lld\n",
526                  (long long)OUT_XATTR_SET);
527         LASSERTF(OUT_XATTR_GET == 8, "found %lld\n",
528                  (long long)OUT_XATTR_GET);
529         LASSERTF(OUT_INDEX_LOOKUP == 9, "found %lld\n",
530                  (long long)OUT_INDEX_LOOKUP);
531         LASSERTF(OUT_INDEX_LOOKUP == 9, "found %lld\n",
532                  (long long)OUT_INDEX_LOOKUP);
533         LASSERTF(OUT_INDEX_INSERT == 10, "found %lld\n",
534                  (long long)OUT_INDEX_INSERT);
535         LASSERTF(OUT_INDEX_DELETE == 11, "found %lld\n",
536                  (long long)OUT_INDEX_DELETE);
537         LASSERTF(OUT_WRITE == 12, "found %lld\n",
538                  (long long)OUT_WRITE);
539         LASSERTF(OUT_XATTR_DEL == 13, "found %lld\n",
540                  (long long)OUT_XATTR_DEL);
541         LASSERTF(OUT_PUNCH == 14, "found %lld\n",
542                  (long long)OUT_PUNCH);
543         LASSERTF(OUT_READ == 15, "found %lld\n",
544                  (long long)OUT_READ);
545         LASSERTF(OUT_NOOP == 16, "found %lld\n",
546                  (long long)OUT_NOOP);
547         LASSERTF(OUT_XATTR_LIST == 17, "found %lld\n",
548                  (long long)OUT_XATTR_LIST);
549
550         /* Checks for struct lustre_som_attrs */
551         LASSERTF((int)sizeof(struct lustre_som_attrs) == 24, "found %lld\n",
552                  (long long)(int)sizeof(struct lustre_som_attrs));
553         LASSERTF((int)offsetof(struct lustre_som_attrs, lsa_valid) == 0, "found %lld\n",
554                  (long long)(int)offsetof(struct lustre_som_attrs, lsa_valid));
555         LASSERTF((int)sizeof(((struct lustre_som_attrs *)0)->lsa_valid) == 2, "found %lld\n",
556                  (long long)(int)sizeof(((struct lustre_som_attrs *)0)->lsa_valid));
557         LASSERTF((int)offsetof(struct lustre_som_attrs, lsa_reserved) == 2, "found %lld\n",
558                  (long long)(int)offsetof(struct lustre_som_attrs, lsa_reserved));
559         LASSERTF((int)sizeof(((struct lustre_som_attrs *)0)->lsa_reserved) == 6, "found %lld\n",
560                  (long long)(int)sizeof(((struct lustre_som_attrs *)0)->lsa_reserved));
561         LASSERTF((int)offsetof(struct lustre_som_attrs, lsa_size) == 8, "found %lld\n",
562                  (long long)(int)offsetof(struct lustre_som_attrs, lsa_size));
563         LASSERTF((int)sizeof(((struct lustre_som_attrs *)0)->lsa_size) == 8, "found %lld\n",
564                  (long long)(int)sizeof(((struct lustre_som_attrs *)0)->lsa_size));
565         LASSERTF((int)offsetof(struct lustre_som_attrs, lsa_blocks) == 16, "found %lld\n",
566                  (long long)(int)offsetof(struct lustre_som_attrs, lsa_blocks));
567         LASSERTF((int)sizeof(((struct lustre_som_attrs *)0)->lsa_blocks) == 8, "found %lld\n",
568                  (long long)(int)sizeof(((struct lustre_som_attrs *)0)->lsa_blocks));
569
570         /* Checks for struct hsm_attrs */
571         LASSERTF((int)sizeof(struct hsm_attrs) == 24, "found %lld\n",
572                  (long long)(int)sizeof(struct hsm_attrs));
573         LASSERTF((int)offsetof(struct hsm_attrs, hsm_compat) == 0, "found %lld\n",
574                  (long long)(int)offsetof(struct hsm_attrs, hsm_compat));
575         LASSERTF((int)sizeof(((struct hsm_attrs *)0)->hsm_compat) == 4, "found %lld\n",
576                  (long long)(int)sizeof(((struct hsm_attrs *)0)->hsm_compat));
577         LASSERTF((int)offsetof(struct hsm_attrs, hsm_flags) == 4, "found %lld\n",
578                  (long long)(int)offsetof(struct hsm_attrs, hsm_flags));
579         LASSERTF((int)sizeof(((struct hsm_attrs *)0)->hsm_flags) == 4, "found %lld\n",
580                  (long long)(int)sizeof(((struct hsm_attrs *)0)->hsm_flags));
581         LASSERTF((int)offsetof(struct hsm_attrs, hsm_arch_id) == 8, "found %lld\n",
582                  (long long)(int)offsetof(struct hsm_attrs, hsm_arch_id));
583         LASSERTF((int)sizeof(((struct hsm_attrs *)0)->hsm_arch_id) == 8, "found %lld\n",
584                  (long long)(int)sizeof(((struct hsm_attrs *)0)->hsm_arch_id));
585         LASSERTF((int)offsetof(struct hsm_attrs, hsm_arch_ver) == 16, "found %lld\n",
586                  (long long)(int)offsetof(struct hsm_attrs, hsm_arch_ver));
587         LASSERTF((int)sizeof(((struct hsm_attrs *)0)->hsm_arch_ver) == 8, "found %lld\n",
588                  (long long)(int)sizeof(((struct hsm_attrs *)0)->hsm_arch_ver));
589
590         /* Checks for struct ost_id */
591         LASSERTF((int)sizeof(struct ost_id) == 16, "found %lld\n",
592                  (long long)(int)sizeof(struct ost_id));
593         LASSERTF((int)offsetof(struct ost_id, oi) == 0, "found %lld\n",
594                  (long long)(int)offsetof(struct ost_id, oi));
595         LASSERTF((int)sizeof(((struct ost_id *)0)->oi) == 16, "found %lld\n",
596                  (long long)(int)sizeof(((struct ost_id *)0)->oi));
597         LASSERTF(LUSTRE_FID_INIT_OID == 1, "found %lld\n",
598                  (long long)LUSTRE_FID_INIT_OID);
599         LASSERTF(FID_SEQ_OST_MDT0 == 0, "found %lld\n",
600                  (long long)FID_SEQ_OST_MDT0);
601         LASSERTF(FID_SEQ_LLOG == 1, "found %lld\n",
602                  (long long)FID_SEQ_LLOG);
603         LASSERTF(FID_SEQ_ECHO == 2, "found %lld\n",
604                  (long long)FID_SEQ_ECHO);
605         LASSERTF(FID_SEQ_UNUSED_START == 3, "found %lld\n",
606                  (long long)FID_SEQ_UNUSED_START);
607         LASSERTF(FID_SEQ_UNUSED_END == 9, "found %lld\n",
608                  (long long)FID_SEQ_UNUSED_END);
609         LASSERTF(FID_SEQ_LLOG_NAME == 10, "found %lld\n",
610                  (long long)FID_SEQ_LLOG_NAME);
611         LASSERTF(FID_SEQ_RSVD == 11, "found %lld\n",
612                  (long long)FID_SEQ_RSVD);
613         LASSERTF(FID_SEQ_IGIF == 12, "found %lld\n",
614                  (long long)FID_SEQ_IGIF);
615         LASSERTF(FID_SEQ_IGIF_MAX == 0x00000000ffffffffULL, "found 0x%.16llxULL\n",
616                         (long long)FID_SEQ_IGIF_MAX);
617         LASSERTF(FID_SEQ_IDIF == 0x0000000100000000ULL, "found 0x%.16llxULL\n",
618                         (long long)FID_SEQ_IDIF);
619         LASSERTF(FID_SEQ_IDIF_MAX == 0x00000001ffffffffULL, "found 0x%.16llxULL\n",
620                         (long long)FID_SEQ_IDIF_MAX);
621         LASSERTF(FID_SEQ_START == 0x0000000200000000ULL, "found 0x%.16llxULL\n",
622                         (long long)FID_SEQ_START);
623         LASSERTF(FID_SEQ_LOCAL_FILE == 0x0000000200000001ULL, "found 0x%.16llxULL\n",
624                         (long long)FID_SEQ_LOCAL_FILE);
625         LASSERTF(FID_SEQ_DOT_LUSTRE == 0x0000000200000002ULL, "found 0x%.16llxULL\n",
626                         (long long)FID_SEQ_DOT_LUSTRE);
627         LASSERTF(FID_SEQ_LOCAL_NAME == 0x0000000200000003ULL, "found 0x%.16llxULL\n",
628                         (long long)FID_SEQ_LOCAL_NAME);
629         LASSERTF(FID_SEQ_SPECIAL == 0x0000000200000004ULL, "found 0x%.16llxULL\n",
630                         (long long)FID_SEQ_SPECIAL);
631         LASSERTF(FID_SEQ_QUOTA == 0x0000000200000005ULL, "found 0x%.16llxULL\n",
632                         (long long)FID_SEQ_QUOTA);
633         LASSERTF(FID_SEQ_QUOTA_GLB == 0x0000000200000006ULL, "found 0x%.16llxULL\n",
634                         (long long)FID_SEQ_QUOTA_GLB);
635         LASSERTF(FID_SEQ_ROOT == 0x0000000200000007ULL, "found 0x%.16llxULL\n",
636                         (long long)FID_SEQ_ROOT);
637         LASSERTF(FID_SEQ_LAYOUT_RBTREE == 0x0000000200000008ULL, "found 0x%.16llxULL\n",
638                         (long long)FID_SEQ_LAYOUT_RBTREE);
639         LASSERTF(FID_SEQ_UPDATE_LOG == 0x0000000200000009ULL, "found 0x%.16llxULL\n",
640                         (long long)FID_SEQ_UPDATE_LOG);
641         LASSERTF(FID_SEQ_UPDATE_LOG_DIR == 0x000000020000000aULL, "found 0x%.16llxULL\n",
642                         (long long)FID_SEQ_UPDATE_LOG_DIR);
643         LASSERTF(FID_SEQ_NORMAL == 0x0000000200000400ULL, "found 0x%.16llxULL\n",
644                         (long long)FID_SEQ_NORMAL);
645         LASSERTF(FID_SEQ_LOV_DEFAULT == 0xffffffffffffffffULL, "found 0x%.16llxULL\n",
646                         (long long)FID_SEQ_LOV_DEFAULT);
647         LASSERTF(FID_OID_SPECIAL_BFL == 0x00000001UL, "found 0x%.8xUL\n",
648                 (unsigned)FID_OID_SPECIAL_BFL);
649         LASSERTF(FID_OID_DOT_LUSTRE == 0x00000001UL, "found 0x%.8xUL\n",
650                 (unsigned)FID_OID_DOT_LUSTRE);
651         LASSERTF(FID_OID_DOT_LUSTRE_OBF == 0x00000002UL, "found 0x%.8xUL\n",
652                 (unsigned)FID_OID_DOT_LUSTRE_OBF);
653         LASSERTF(FID_OID_DOT_LUSTRE_LPF == 0x00000003UL, "found 0x%.8xUL\n",
654                 (unsigned)FID_OID_DOT_LUSTRE_LPF);
655
656         /* Checks for struct lu_dirent */
657         LASSERTF((int)sizeof(struct lu_dirent) == 32, "found %lld\n",
658                  (long long)(int)sizeof(struct lu_dirent));
659         LASSERTF((int)offsetof(struct lu_dirent, lde_fid) == 0, "found %lld\n",
660                  (long long)(int)offsetof(struct lu_dirent, lde_fid));
661         LASSERTF((int)sizeof(((struct lu_dirent *)0)->lde_fid) == 16, "found %lld\n",
662                  (long long)(int)sizeof(((struct lu_dirent *)0)->lde_fid));
663         LASSERTF((int)offsetof(struct lu_dirent, lde_hash) == 16, "found %lld\n",
664                  (long long)(int)offsetof(struct lu_dirent, lde_hash));
665         LASSERTF((int)sizeof(((struct lu_dirent *)0)->lde_hash) == 8, "found %lld\n",
666                  (long long)(int)sizeof(((struct lu_dirent *)0)->lde_hash));
667         LASSERTF((int)offsetof(struct lu_dirent, lde_reclen) == 24, "found %lld\n",
668                  (long long)(int)offsetof(struct lu_dirent, lde_reclen));
669         LASSERTF((int)sizeof(((struct lu_dirent *)0)->lde_reclen) == 2, "found %lld\n",
670                  (long long)(int)sizeof(((struct lu_dirent *)0)->lde_reclen));
671         LASSERTF((int)offsetof(struct lu_dirent, lde_namelen) == 26, "found %lld\n",
672                  (long long)(int)offsetof(struct lu_dirent, lde_namelen));
673         LASSERTF((int)sizeof(((struct lu_dirent *)0)->lde_namelen) == 2, "found %lld\n",
674                  (long long)(int)sizeof(((struct lu_dirent *)0)->lde_namelen));
675         LASSERTF((int)offsetof(struct lu_dirent, lde_attrs) == 28, "found %lld\n",
676                  (long long)(int)offsetof(struct lu_dirent, lde_attrs));
677         LASSERTF((int)sizeof(((struct lu_dirent *)0)->lde_attrs) == 4, "found %lld\n",
678                  (long long)(int)sizeof(((struct lu_dirent *)0)->lde_attrs));
679         LASSERTF((int)offsetof(struct lu_dirent, lde_name[0]) == 32, "found %lld\n",
680                  (long long)(int)offsetof(struct lu_dirent, lde_name[0]));
681         LASSERTF((int)sizeof(((struct lu_dirent *)0)->lde_name[0]) == 1, "found %lld\n",
682                  (long long)(int)sizeof(((struct lu_dirent *)0)->lde_name[0]));
683         LASSERTF(LUDA_FID == 0x00000001UL, "found 0x%.8xUL\n",
684                 (unsigned)LUDA_FID);
685         LASSERTF(LUDA_TYPE == 0x00000002UL, "found 0x%.8xUL\n",
686                 (unsigned)LUDA_TYPE);
687         LASSERTF(LUDA_64BITHASH == 0x00000004UL, "found 0x%.8xUL\n",
688                 (unsigned)LUDA_64BITHASH);
689
690         /* Checks for struct luda_type */
691         LASSERTF((int)sizeof(struct luda_type) == 2, "found %lld\n",
692                  (long long)(int)sizeof(struct luda_type));
693         LASSERTF((int)offsetof(struct luda_type, lt_type) == 0, "found %lld\n",
694                  (long long)(int)offsetof(struct luda_type, lt_type));
695         LASSERTF((int)sizeof(((struct luda_type *)0)->lt_type) == 2, "found %lld\n",
696                  (long long)(int)sizeof(((struct luda_type *)0)->lt_type));
697
698         /* Checks for struct lu_dirpage */
699         LASSERTF((int)sizeof(struct lu_dirpage) == 24, "found %lld\n",
700                  (long long)(int)sizeof(struct lu_dirpage));
701         LASSERTF((int)offsetof(struct lu_dirpage, ldp_hash_start) == 0, "found %lld\n",
702                  (long long)(int)offsetof(struct lu_dirpage, ldp_hash_start));
703         LASSERTF((int)sizeof(((struct lu_dirpage *)0)->ldp_hash_start) == 8, "found %lld\n",
704                  (long long)(int)sizeof(((struct lu_dirpage *)0)->ldp_hash_start));
705         LASSERTF((int)offsetof(struct lu_dirpage, ldp_hash_end) == 8, "found %lld\n",
706                  (long long)(int)offsetof(struct lu_dirpage, ldp_hash_end));
707         LASSERTF((int)sizeof(((struct lu_dirpage *)0)->ldp_hash_end) == 8, "found %lld\n",
708                  (long long)(int)sizeof(((struct lu_dirpage *)0)->ldp_hash_end));
709         LASSERTF((int)offsetof(struct lu_dirpage, ldp_flags) == 16, "found %lld\n",
710                  (long long)(int)offsetof(struct lu_dirpage, ldp_flags));
711         LASSERTF((int)sizeof(((struct lu_dirpage *)0)->ldp_flags) == 4, "found %lld\n",
712                  (long long)(int)sizeof(((struct lu_dirpage *)0)->ldp_flags));
713         LASSERTF((int)offsetof(struct lu_dirpage, ldp_pad0) == 20, "found %lld\n",
714                  (long long)(int)offsetof(struct lu_dirpage, ldp_pad0));
715         LASSERTF((int)sizeof(((struct lu_dirpage *)0)->ldp_pad0) == 4, "found %lld\n",
716                  (long long)(int)sizeof(((struct lu_dirpage *)0)->ldp_pad0));
717         LASSERTF((int)offsetof(struct lu_dirpage, ldp_entries[0]) == 24, "found %lld\n",
718                  (long long)(int)offsetof(struct lu_dirpage, ldp_entries[0]));
719         LASSERTF((int)sizeof(((struct lu_dirpage *)0)->ldp_entries[0]) == 32, "found %lld\n",
720                  (long long)(int)sizeof(((struct lu_dirpage *)0)->ldp_entries[0]));
721         LASSERTF(LDF_EMPTY == 1, "found %lld\n",
722                  (long long)LDF_EMPTY);
723         LASSERTF(LDF_COLLIDE == 2, "found %lld\n",
724                  (long long)LDF_COLLIDE);
725         LASSERTF(LU_PAGE_SIZE == 4096, "found %lld\n",
726                  (long long)LU_PAGE_SIZE);
727         /* Checks for union lu_page */
728         LASSERTF((int)sizeof(union lu_page) == 4096, "found %lld\n",
729                  (long long)(int)sizeof(union lu_page));
730
731         /* Checks for struct lu_ladvise */
732         LASSERTF((int)sizeof(struct lu_ladvise) == 32, "found %lld\n",
733                  (long long)(int)sizeof(struct lu_ladvise));
734         LASSERTF((int)offsetof(struct lu_ladvise, lla_advice) == 0, "found %lld\n",
735                  (long long)(int)offsetof(struct lu_ladvise, lla_advice));
736         LASSERTF((int)sizeof(((struct lu_ladvise *)0)->lla_advice) == 2, "found %lld\n",
737                  (long long)(int)sizeof(((struct lu_ladvise *)0)->lla_advice));
738         LASSERTF((int)offsetof(struct lu_ladvise, lla_value1) == 2, "found %lld\n",
739                  (long long)(int)offsetof(struct lu_ladvise, lla_value1));
740         LASSERTF((int)sizeof(((struct lu_ladvise *)0)->lla_value1) == 2, "found %lld\n",
741                  (long long)(int)sizeof(((struct lu_ladvise *)0)->lla_value1));
742         LASSERTF((int)offsetof(struct lu_ladvise, lla_value2) == 4, "found %lld\n",
743                  (long long)(int)offsetof(struct lu_ladvise, lla_value2));
744         LASSERTF((int)sizeof(((struct lu_ladvise *)0)->lla_value2) == 4, "found %lld\n",
745                  (long long)(int)sizeof(((struct lu_ladvise *)0)->lla_value2));
746         LASSERTF((int)offsetof(struct lu_ladvise, lla_start) == 8, "found %lld\n",
747                  (long long)(int)offsetof(struct lu_ladvise, lla_start));
748         LASSERTF((int)sizeof(((struct lu_ladvise *)0)->lla_start) == 8, "found %lld\n",
749                  (long long)(int)sizeof(((struct lu_ladvise *)0)->lla_start));
750         LASSERTF((int)offsetof(struct lu_ladvise, lla_end) == 16, "found %lld\n",
751                  (long long)(int)offsetof(struct lu_ladvise, lla_end));
752         LASSERTF((int)sizeof(((struct lu_ladvise *)0)->lla_end) == 8, "found %lld\n",
753                  (long long)(int)sizeof(((struct lu_ladvise *)0)->lla_end));
754         LASSERTF((int)offsetof(struct lu_ladvise, lla_value3) == 24, "found %lld\n",
755                  (long long)(int)offsetof(struct lu_ladvise, lla_value3));
756         LASSERTF((int)sizeof(((struct lu_ladvise *)0)->lla_value3) == 4, "found %lld\n",
757                  (long long)(int)sizeof(((struct lu_ladvise *)0)->lla_value3));
758         LASSERTF((int)offsetof(struct lu_ladvise, lla_value4) == 28, "found %lld\n",
759                  (long long)(int)offsetof(struct lu_ladvise, lla_value4));
760         LASSERTF((int)sizeof(((struct lu_ladvise *)0)->lla_value4) == 4, "found %lld\n",
761                  (long long)(int)sizeof(((struct lu_ladvise *)0)->lla_value4));
762         LASSERTF(LU_LADVISE_WILLREAD == 1, "found %lld\n",
763                  (long long)LU_LADVISE_WILLREAD);
764         LASSERTF(LU_LADVISE_DONTNEED == 2, "found %lld\n",
765                  (long long)LU_LADVISE_DONTNEED);
766         LASSERTF(LU_LADVISE_LOCKNOEXPAND == 3, "found %lld\n",
767                  (long long)LU_LADVISE_LOCKNOEXPAND);
768         LASSERTF(LU_LADVISE_LOCKAHEAD == 4, "found %lld\n",
769                  (long long)LU_LADVISE_LOCKAHEAD);
770
771         /* Checks for struct ladvise_hdr */
772         LASSERTF((int)sizeof(struct ladvise_hdr) == 32, "found %lld\n",
773                  (long long)(int)sizeof(struct ladvise_hdr));
774         LASSERTF((int)offsetof(struct ladvise_hdr, lah_magic) == 0, "found %lld\n",
775                  (long long)(int)offsetof(struct ladvise_hdr, lah_magic));
776         LASSERTF((int)sizeof(((struct ladvise_hdr *)0)->lah_magic) == 4, "found %lld\n",
777                  (long long)(int)sizeof(((struct ladvise_hdr *)0)->lah_magic));
778         LASSERTF((int)offsetof(struct ladvise_hdr, lah_count) == 4, "found %lld\n",
779                  (long long)(int)offsetof(struct ladvise_hdr, lah_count));
780         LASSERTF((int)sizeof(((struct ladvise_hdr *)0)->lah_count) == 4, "found %lld\n",
781                  (long long)(int)sizeof(((struct ladvise_hdr *)0)->lah_count));
782         LASSERTF((int)offsetof(struct ladvise_hdr, lah_flags) == 8, "found %lld\n",
783                  (long long)(int)offsetof(struct ladvise_hdr, lah_flags));
784         LASSERTF((int)sizeof(((struct ladvise_hdr *)0)->lah_flags) == 8, "found %lld\n",
785                  (long long)(int)sizeof(((struct ladvise_hdr *)0)->lah_flags));
786         LASSERTF((int)offsetof(struct ladvise_hdr, lah_value1) == 16, "found %lld\n",
787                  (long long)(int)offsetof(struct ladvise_hdr, lah_value1));
788         LASSERTF((int)sizeof(((struct ladvise_hdr *)0)->lah_value1) == 4, "found %lld\n",
789                  (long long)(int)sizeof(((struct ladvise_hdr *)0)->lah_value1));
790         LASSERTF((int)offsetof(struct ladvise_hdr, lah_value2) == 20, "found %lld\n",
791                  (long long)(int)offsetof(struct ladvise_hdr, lah_value2));
792         LASSERTF((int)sizeof(((struct ladvise_hdr *)0)->lah_value2) == 4, "found %lld\n",
793                  (long long)(int)sizeof(((struct ladvise_hdr *)0)->lah_value2));
794         LASSERTF((int)offsetof(struct ladvise_hdr, lah_value3) == 24, "found %lld\n",
795                  (long long)(int)offsetof(struct ladvise_hdr, lah_value3));
796         LASSERTF((int)sizeof(((struct ladvise_hdr *)0)->lah_value3) == 8, "found %lld\n",
797                  (long long)(int)sizeof(((struct ladvise_hdr *)0)->lah_value3));
798         LASSERTF((int)offsetof(struct ladvise_hdr, lah_advise) == 32, "found %lld\n",
799                  (long long)(int)offsetof(struct ladvise_hdr, lah_advise));
800         LASSERTF((int)sizeof(((struct ladvise_hdr *)0)->lah_advise) == 0, "found %lld\n",
801                  (long long)(int)sizeof(((struct ladvise_hdr *)0)->lah_advise));
802         BUILD_BUG_ON(LF_ASYNC != 0x00000001);
803         BUILD_BUG_ON(LF_UNSET != 0x00000002);
804         BUILD_BUG_ON(LADVISE_MAGIC != 0x1adf1ce0);
805
806         /* Checks for struct lustre_handle */
807         LASSERTF((int)sizeof(struct lustre_handle) == 8, "found %lld\n",
808                  (long long)(int)sizeof(struct lustre_handle));
809         LASSERTF((int)offsetof(struct lustre_handle, cookie) == 0, "found %lld\n",
810                  (long long)(int)offsetof(struct lustre_handle, cookie));
811         LASSERTF((int)sizeof(((struct lustre_handle *)0)->cookie) == 8, "found %lld\n",
812                  (long long)(int)sizeof(((struct lustre_handle *)0)->cookie));
813
814         /* Checks for struct lustre_msg_v2 */
815         LASSERTF((int)sizeof(struct lustre_msg_v2) == 32, "found %lld\n",
816                  (long long)(int)sizeof(struct lustre_msg_v2));
817         LASSERTF((int)offsetof(struct lustre_msg_v2, lm_bufcount) == 0, "found %lld\n",
818                  (long long)(int)offsetof(struct lustre_msg_v2, lm_bufcount));
819         LASSERTF((int)sizeof(((struct lustre_msg_v2 *)0)->lm_bufcount) == 4, "found %lld\n",
820                  (long long)(int)sizeof(((struct lustre_msg_v2 *)0)->lm_bufcount));
821         LASSERTF((int)offsetof(struct lustre_msg_v2, lm_secflvr) == 4, "found %lld\n",
822                  (long long)(int)offsetof(struct lustre_msg_v2, lm_secflvr));
823         LASSERTF((int)sizeof(((struct lustre_msg_v2 *)0)->lm_secflvr) == 4, "found %lld\n",
824                  (long long)(int)sizeof(((struct lustre_msg_v2 *)0)->lm_secflvr));
825         LASSERTF((int)offsetof(struct lustre_msg_v2, lm_magic) == 8, "found %lld\n",
826                  (long long)(int)offsetof(struct lustre_msg_v2, lm_magic));
827         LASSERTF((int)sizeof(((struct lustre_msg_v2 *)0)->lm_magic) == 4, "found %lld\n",
828                  (long long)(int)sizeof(((struct lustre_msg_v2 *)0)->lm_magic));
829         LASSERTF((int)offsetof(struct lustre_msg_v2, lm_repsize) == 12, "found %lld\n",
830                  (long long)(int)offsetof(struct lustre_msg_v2, lm_repsize));
831         LASSERTF((int)sizeof(((struct lustre_msg_v2 *)0)->lm_repsize) == 4, "found %lld\n",
832                  (long long)(int)sizeof(((struct lustre_msg_v2 *)0)->lm_repsize));
833         LASSERTF((int)offsetof(struct lustre_msg_v2, lm_cksum) == 16, "found %lld\n",
834                  (long long)(int)offsetof(struct lustre_msg_v2, lm_cksum));
835         LASSERTF((int)sizeof(((struct lustre_msg_v2 *)0)->lm_cksum) == 4, "found %lld\n",
836                  (long long)(int)sizeof(((struct lustre_msg_v2 *)0)->lm_cksum));
837         LASSERTF((int)offsetof(struct lustre_msg_v2, lm_flags) == 20, "found %lld\n",
838                  (long long)(int)offsetof(struct lustre_msg_v2, lm_flags));
839         LASSERTF((int)sizeof(((struct lustre_msg_v2 *)0)->lm_flags) == 4, "found %lld\n",
840                  (long long)(int)sizeof(((struct lustre_msg_v2 *)0)->lm_flags));
841         LASSERTF((int)offsetof(struct lustre_msg_v2, lm_padding_2) == 24, "found %lld\n",
842                  (long long)(int)offsetof(struct lustre_msg_v2, lm_padding_2));
843         LASSERTF((int)sizeof(((struct lustre_msg_v2 *)0)->lm_padding_2) == 4, "found %lld\n",
844                  (long long)(int)sizeof(((struct lustre_msg_v2 *)0)->lm_padding_2));
845         LASSERTF((int)offsetof(struct lustre_msg_v2, lm_padding_3) == 28, "found %lld\n",
846                  (long long)(int)offsetof(struct lustre_msg_v2, lm_padding_3));
847         LASSERTF((int)sizeof(((struct lustre_msg_v2 *)0)->lm_padding_3) == 4, "found %lld\n",
848                  (long long)(int)sizeof(((struct lustre_msg_v2 *)0)->lm_padding_3));
849         LASSERTF((int)offsetof(struct lustre_msg_v2, lm_buflens[0]) == 32, "found %lld\n",
850                  (long long)(int)offsetof(struct lustre_msg_v2, lm_buflens[0]));
851         LASSERTF((int)sizeof(((struct lustre_msg_v2 *)0)->lm_buflens[0]) == 4, "found %lld\n",
852                  (long long)(int)sizeof(((struct lustre_msg_v2 *)0)->lm_buflens[0]));
853         LASSERTF(LUSTRE_MSG_MAGIC_V2 == 0x0bd00bd3UL, "found 0x%.8xUL\n",
854                 (unsigned)LUSTRE_MSG_MAGIC_V2);
855         LASSERTF(LUSTRE_MSG_MAGIC_V2_SWABBED == 0xd30bd00bUL, "found 0x%.8xUL\n",
856                 (unsigned)LUSTRE_MSG_MAGIC_V2_SWABBED);
857
858         /* Checks for struct ptlrpc_body */
859         LASSERTF((int)sizeof(struct ptlrpc_body_v3) == 184, "found %lld\n",
860                  (long long)(int)sizeof(struct ptlrpc_body_v3));
861         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_handle) == 0, "found %lld\n",
862                  (long long)(int)offsetof(struct ptlrpc_body_v3, pb_handle));
863         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_handle) == 8, "found %lld\n",
864                  (long long)(int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_handle));
865         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_type) == 8, "found %lld\n",
866                  (long long)(int)offsetof(struct ptlrpc_body_v3, pb_type));
867         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_type) == 4, "found %lld\n",
868                  (long long)(int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_type));
869         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_version) == 12, "found %lld\n",
870                  (long long)(int)offsetof(struct ptlrpc_body_v3, pb_version));
871         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_version) == 4, "found %lld\n",
872                  (long long)(int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_version));
873         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_opc) == 16, "found %lld\n",
874                  (long long)(int)offsetof(struct ptlrpc_body_v3, pb_opc));
875         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_opc) == 4, "found %lld\n",
876                  (long long)(int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_opc));
877         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_status) == 20, "found %lld\n",
878                  (long long)(int)offsetof(struct ptlrpc_body_v3, pb_status));
879         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_status) == 4, "found %lld\n",
880                  (long long)(int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_status));
881         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_last_xid) == 24, "found %lld\n",
882                  (long long)(int)offsetof(struct ptlrpc_body_v3, pb_last_xid));
883         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_last_xid) == 8, "found %lld\n",
884                  (long long)(int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_last_xid));
885         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_tag) == 32, "found %lld\n",
886                  (long long)(int)offsetof(struct ptlrpc_body_v3, pb_tag));
887         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_tag) == 2, "found %lld\n",
888                  (long long)(int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_tag));
889         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_padding0) == 34, "found %lld\n",
890                  (long long)(int)offsetof(struct ptlrpc_body_v3, pb_padding0));
891         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_padding0) == 2, "found %lld\n",
892                  (long long)(int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_padding0));
893         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_padding1) == 36, "found %lld\n",
894                  (long long)(int)offsetof(struct ptlrpc_body_v3, pb_padding1));
895         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_padding1) == 4, "found %lld\n",
896                  (long long)(int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_padding1));
897         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_last_committed) == 40, "found %lld\n",
898                  (long long)(int)offsetof(struct ptlrpc_body_v3, pb_last_committed));
899         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_last_committed) == 8, "found %lld\n",
900                  (long long)(int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_last_committed));
901         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_transno) == 48, "found %lld\n",
902                  (long long)(int)offsetof(struct ptlrpc_body_v3, pb_transno));
903         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_transno) == 8, "found %lld\n",
904                  (long long)(int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_transno));
905         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_flags) == 56, "found %lld\n",
906                  (long long)(int)offsetof(struct ptlrpc_body_v3, pb_flags));
907         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_flags) == 4, "found %lld\n",
908                  (long long)(int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_flags));
909         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_op_flags) == 60, "found %lld\n",
910                  (long long)(int)offsetof(struct ptlrpc_body_v3, pb_op_flags));
911         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_op_flags) == 4, "found %lld\n",
912                  (long long)(int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_op_flags));
913         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_conn_cnt) == 64, "found %lld\n",
914                  (long long)(int)offsetof(struct ptlrpc_body_v3, pb_conn_cnt));
915         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_conn_cnt) == 4, "found %lld\n",
916                  (long long)(int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_conn_cnt));
917         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_timeout) == 68, "found %lld\n",
918                  (long long)(int)offsetof(struct ptlrpc_body_v3, pb_timeout));
919         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_timeout) == 4, "found %lld\n",
920                  (long long)(int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_timeout));
921         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_service_time) == 72, "found %lld\n",
922                  (long long)(int)offsetof(struct ptlrpc_body_v3, pb_service_time));
923         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_service_time) == 4, "found %lld\n",
924                  (long long)(int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_service_time));
925         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_limit) == 76, "found %lld\n",
926                  (long long)(int)offsetof(struct ptlrpc_body_v3, pb_limit));
927         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_limit) == 4, "found %lld\n",
928                  (long long)(int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_limit));
929         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_slv) == 80, "found %lld\n",
930                  (long long)(int)offsetof(struct ptlrpc_body_v3, pb_slv));
931         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_slv) == 8, "found %lld\n",
932                  (long long)(int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_slv));
933         BUILD_BUG_ON(PTLRPC_NUM_VERSIONS != 4);
934         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_pre_versions) == 88, "found %lld\n",
935                  (long long)(int)offsetof(struct ptlrpc_body_v3, pb_pre_versions));
936         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_pre_versions) == 32, "found %lld\n",
937                  (long long)(int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_pre_versions));
938         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_mbits) == 120, "found %lld\n",
939                  (long long)(int)offsetof(struct ptlrpc_body_v3, pb_mbits));
940         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_mbits) == 8, "found %lld\n",
941                  (long long)(int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_mbits));
942         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_padding64_0) == 128, "found %lld\n",
943                  (long long)(int)offsetof(struct ptlrpc_body_v3, pb_padding64_0));
944         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_padding64_0) == 8, "found %lld\n",
945                  (long long)(int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_padding64_0));
946         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_padding64_1) == 136, "found %lld\n",
947                  (long long)(int)offsetof(struct ptlrpc_body_v3, pb_padding64_1));
948         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_padding64_1) == 8, "found %lld\n",
949                  (long long)(int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_padding64_1));
950         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_padding64_2) == 144, "found %lld\n",
951                  (long long)(int)offsetof(struct ptlrpc_body_v3, pb_padding64_2));
952         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_padding64_2) == 8, "found %lld\n",
953                  (long long)(int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_padding64_2));
954         BUILD_BUG_ON(LUSTRE_JOBID_SIZE != 32);
955         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_jobid) == 152, "found %lld\n",
956                  (long long)(int)offsetof(struct ptlrpc_body_v3, pb_jobid));
957         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_jobid) == 32, "found %lld\n",
958                  (long long)(int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_jobid));
959         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_handle) == (int)offsetof(struct ptlrpc_body_v2, pb_handle), "%d != %d\n",
960                  (int)offsetof(struct ptlrpc_body_v3, pb_handle), (int)offsetof(struct ptlrpc_body_v2, pb_handle));
961         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_handle) == (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_handle), "%d != %d\n",
962                  (int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_handle), (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_handle));
963         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_type) == (int)offsetof(struct ptlrpc_body_v2, pb_type), "%d != %d\n",
964                  (int)offsetof(struct ptlrpc_body_v3, pb_type), (int)offsetof(struct ptlrpc_body_v2, pb_type));
965         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_type) == (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_type), "%d != %d\n",
966                  (int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_type), (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_type));
967         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_version) == (int)offsetof(struct ptlrpc_body_v2, pb_version), "%d != %d\n",
968                  (int)offsetof(struct ptlrpc_body_v3, pb_version), (int)offsetof(struct ptlrpc_body_v2, pb_version));
969         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_version) == (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_version), "%d != %d\n",
970                  (int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_version), (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_version));
971         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_opc) == (int)offsetof(struct ptlrpc_body_v2, pb_opc), "%d != %d\n",
972                  (int)offsetof(struct ptlrpc_body_v3, pb_opc), (int)offsetof(struct ptlrpc_body_v2, pb_opc));
973         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_opc) == (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_opc), "%d != %d\n",
974                  (int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_opc), (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_opc));
975         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_status) == (int)offsetof(struct ptlrpc_body_v2, pb_status), "%d != %d\n",
976                  (int)offsetof(struct ptlrpc_body_v3, pb_status), (int)offsetof(struct ptlrpc_body_v2, pb_status));
977         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_status) == (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_status), "%d != %d\n",
978                  (int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_status), (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_status));
979         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_last_xid) == (int)offsetof(struct ptlrpc_body_v2, pb_last_xid), "%d != %d\n",
980                  (int)offsetof(struct ptlrpc_body_v3, pb_last_xid), (int)offsetof(struct ptlrpc_body_v2, pb_last_xid));
981         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_last_xid) == (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_last_xid), "%d != %d\n",
982                  (int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_last_xid), (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_last_xid));
983         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_tag) == (int)offsetof(struct ptlrpc_body_v2, pb_tag), "%d != %d\n",
984                  (int)offsetof(struct ptlrpc_body_v3, pb_tag), (int)offsetof(struct ptlrpc_body_v2, pb_tag));
985         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_tag) == (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_tag), "%d != %d\n",
986                  (int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_tag), (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_tag));
987         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_padding0) == (int)offsetof(struct ptlrpc_body_v2, pb_padding0), "%d != %d\n",
988                  (int)offsetof(struct ptlrpc_body_v3, pb_padding0), (int)offsetof(struct ptlrpc_body_v2, pb_padding0));
989         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_padding0) == (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_padding0), "%d != %d\n",
990                  (int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_padding0), (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_padding0));
991         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_padding1) == (int)offsetof(struct ptlrpc_body_v2, pb_padding1), "%d != %d\n",
992                  (int)offsetof(struct ptlrpc_body_v3, pb_padding1), (int)offsetof(struct ptlrpc_body_v2, pb_padding1));
993         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_padding1) == (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_padding1), "%d != %d\n",
994                  (int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_padding1), (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_padding1));
995         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_last_committed) == (int)offsetof(struct ptlrpc_body_v2, pb_last_committed), "%d != %d\n",
996                  (int)offsetof(struct ptlrpc_body_v3, pb_last_committed), (int)offsetof(struct ptlrpc_body_v2, pb_last_committed));
997         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_last_committed) == (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_last_committed), "%d != %d\n",
998                  (int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_last_committed), (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_last_committed));
999         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_transno) == (int)offsetof(struct ptlrpc_body_v2, pb_transno), "%d != %d\n",
1000                  (int)offsetof(struct ptlrpc_body_v3, pb_transno), (int)offsetof(struct ptlrpc_body_v2, pb_transno));
1001         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_transno) == (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_transno), "%d != %d\n",
1002                  (int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_transno), (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_transno));
1003         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_flags) == (int)offsetof(struct ptlrpc_body_v2, pb_flags), "%d != %d\n",
1004                  (int)offsetof(struct ptlrpc_body_v3, pb_flags), (int)offsetof(struct ptlrpc_body_v2, pb_flags));
1005         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_flags) == (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_flags), "%d != %d\n",
1006                  (int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_flags), (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_flags));
1007         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_op_flags) == (int)offsetof(struct ptlrpc_body_v2, pb_op_flags), "%d != %d\n",
1008                  (int)offsetof(struct ptlrpc_body_v3, pb_op_flags), (int)offsetof(struct ptlrpc_body_v2, pb_op_flags));
1009         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_op_flags) == (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_op_flags), "%d != %d\n",
1010                  (int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_op_flags), (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_op_flags));
1011         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_conn_cnt) == (int)offsetof(struct ptlrpc_body_v2, pb_conn_cnt), "%d != %d\n",
1012                  (int)offsetof(struct ptlrpc_body_v3, pb_conn_cnt), (int)offsetof(struct ptlrpc_body_v2, pb_conn_cnt));
1013         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_conn_cnt) == (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_conn_cnt), "%d != %d\n",
1014                  (int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_conn_cnt), (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_conn_cnt));
1015         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_timeout) == (int)offsetof(struct ptlrpc_body_v2, pb_timeout), "%d != %d\n",
1016                  (int)offsetof(struct ptlrpc_body_v3, pb_timeout), (int)offsetof(struct ptlrpc_body_v2, pb_timeout));
1017         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_timeout) == (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_timeout), "%d != %d\n",
1018                  (int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_timeout), (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_timeout));
1019         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_service_time) == (int)offsetof(struct ptlrpc_body_v2, pb_service_time), "%d != %d\n",
1020                  (int)offsetof(struct ptlrpc_body_v3, pb_service_time), (int)offsetof(struct ptlrpc_body_v2, pb_service_time));
1021         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_service_time) == (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_service_time), "%d != %d\n",
1022                  (int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_service_time), (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_service_time));
1023         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_limit) == (int)offsetof(struct ptlrpc_body_v2, pb_limit), "%d != %d\n",
1024                  (int)offsetof(struct ptlrpc_body_v3, pb_limit), (int)offsetof(struct ptlrpc_body_v2, pb_limit));
1025         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_limit) == (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_limit), "%d != %d\n",
1026                  (int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_limit), (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_limit));
1027         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_slv) == (int)offsetof(struct ptlrpc_body_v2, pb_slv), "%d != %d\n",
1028                  (int)offsetof(struct ptlrpc_body_v3, pb_slv), (int)offsetof(struct ptlrpc_body_v2, pb_slv));
1029         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_slv) == (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_slv), "%d != %d\n",
1030                  (int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_slv), (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_slv));
1031         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_pre_versions) == (int)offsetof(struct ptlrpc_body_v2, pb_pre_versions), "%d != %d\n",
1032                  (int)offsetof(struct ptlrpc_body_v3, pb_pre_versions), (int)offsetof(struct ptlrpc_body_v2, pb_pre_versions));
1033         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_pre_versions) == (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_pre_versions), "%d != %d\n",
1034                  (int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_pre_versions), (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_pre_versions));
1035         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_mbits) == (int)offsetof(struct ptlrpc_body_v2, pb_mbits), "%d != %d\n",
1036                  (int)offsetof(struct ptlrpc_body_v3, pb_mbits), (int)offsetof(struct ptlrpc_body_v2, pb_mbits));
1037         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_mbits) == (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_mbits), "%d != %d\n",
1038                  (int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_mbits), (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_mbits));
1039         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_padding64_0) == (int)offsetof(struct ptlrpc_body_v2, pb_padding64_0), "%d != %d\n",
1040                  (int)offsetof(struct ptlrpc_body_v3, pb_padding64_0), (int)offsetof(struct ptlrpc_body_v2, pb_padding64_0));
1041         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_padding64_0) == (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_padding64_0), "%d != %d\n",
1042                  (int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_padding64_0), (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_padding64_0));
1043         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_padding64_1) == (int)offsetof(struct ptlrpc_body_v2, pb_padding64_1), "%d != %d\n",
1044                  (int)offsetof(struct ptlrpc_body_v3, pb_padding64_1), (int)offsetof(struct ptlrpc_body_v2, pb_padding64_1));
1045         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_padding64_1) == (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_padding64_1), "%d != %d\n",
1046                  (int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_padding64_1), (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_padding64_1));
1047         LASSERTF((int)offsetof(struct ptlrpc_body_v3, pb_padding64_2) == (int)offsetof(struct ptlrpc_body_v2, pb_padding64_2), "%d != %d\n",
1048                  (int)offsetof(struct ptlrpc_body_v3, pb_padding64_2), (int)offsetof(struct ptlrpc_body_v2, pb_padding64_2));
1049         LASSERTF((int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_padding64_2) == (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_padding64_2), "%d != %d\n",
1050                  (int)sizeof(((struct ptlrpc_body_v3 *)0)->pb_padding64_2), (int)sizeof(((struct ptlrpc_body_v2 *)0)->pb_padding64_2));
1051         LASSERTF(MSG_PTLRPC_BODY_OFF == 0, "found %lld\n",
1052                  (long long)MSG_PTLRPC_BODY_OFF);
1053         LASSERTF(REQ_REC_OFF == 1, "found %lld\n",
1054                  (long long)REQ_REC_OFF);
1055         LASSERTF(REPLY_REC_OFF == 1, "found %lld\n",
1056                  (long long)REPLY_REC_OFF);
1057         LASSERTF(DLM_LOCKREQ_OFF == 1, "found %lld\n",
1058                  (long long)DLM_LOCKREQ_OFF);
1059         LASSERTF(DLM_REQ_REC_OFF == 2, "found %lld\n",
1060                  (long long)DLM_REQ_REC_OFF);
1061         LASSERTF(DLM_INTENT_IT_OFF == 2, "found %lld\n",
1062                  (long long)DLM_INTENT_IT_OFF);
1063         LASSERTF(DLM_INTENT_REC_OFF == 3, "found %lld\n",
1064                  (long long)DLM_INTENT_REC_OFF);
1065         LASSERTF(DLM_LOCKREPLY_OFF == 1, "found %lld\n",
1066                  (long long)DLM_LOCKREPLY_OFF);
1067         LASSERTF(DLM_REPLY_REC_OFF == 2, "found %lld\n",
1068                  (long long)DLM_REPLY_REC_OFF);
1069         LASSERTF(MSG_PTLRPC_HEADER_OFF == 31, "found %lld\n",
1070                  (long long)MSG_PTLRPC_HEADER_OFF);
1071         LASSERTF(PTLRPC_MSG_VERSION == 0x00000003UL, "found 0x%.8xUL\n",
1072                 (unsigned)PTLRPC_MSG_VERSION);
1073         LASSERTF(LUSTRE_VERSION_MASK == 0xffff0000UL, "found 0x%.8xUL\n",
1074                 (unsigned)LUSTRE_VERSION_MASK);
1075         LASSERTF(LUSTRE_OBD_VERSION == 0x00010000UL, "found 0x%.8xUL\n",
1076                 (unsigned)LUSTRE_OBD_VERSION);
1077         LASSERTF(LUSTRE_MDS_VERSION == 0x00020000UL, "found 0x%.8xUL\n",
1078                 (unsigned)LUSTRE_MDS_VERSION);
1079         LASSERTF(LUSTRE_OST_VERSION == 0x00030000UL, "found 0x%.8xUL\n",
1080                 (unsigned)LUSTRE_OST_VERSION);
1081         LASSERTF(LUSTRE_DLM_VERSION == 0x00040000UL, "found 0x%.8xUL\n",
1082                 (unsigned)LUSTRE_DLM_VERSION);
1083         LASSERTF(LUSTRE_LOG_VERSION == 0x00050000UL, "found 0x%.8xUL\n",
1084                 (unsigned)LUSTRE_LOG_VERSION);
1085         LASSERTF(LUSTRE_MGS_VERSION == 0x00060000UL, "found 0x%.8xUL\n",
1086                 (unsigned)LUSTRE_MGS_VERSION);
1087         LASSERTF(MSGHDR_AT_SUPPORT == 1, "found %lld\n",
1088                  (long long)MSGHDR_AT_SUPPORT);
1089         LASSERTF(MSGHDR_CKSUM_INCOMPAT18 == 2, "found %lld\n",
1090                  (long long)MSGHDR_CKSUM_INCOMPAT18);
1091         LASSERTF(MSG_RESENT == 0x00000002UL, "found 0x%.8xUL\n",
1092                 (unsigned)MSG_RESENT);
1093         LASSERTF(MSG_REPLAY == 0x00000004UL, "found 0x%.8xUL\n",
1094                 (unsigned)MSG_REPLAY);
1095         LASSERTF(MSG_REQ_REPLAY_DONE == 0x00000040UL, "found 0x%.8xUL\n",
1096                 (unsigned)MSG_REQ_REPLAY_DONE);
1097         LASSERTF(MSG_LOCK_REPLAY_DONE == 0x00000080UL, "found 0x%.8xUL\n",
1098                 (unsigned)MSG_LOCK_REPLAY_DONE);
1099         LASSERTF(MSG_CONNECT_RECOVERING == 0x00000001UL, "found 0x%.8xUL\n",
1100                 (unsigned)MSG_CONNECT_RECOVERING);
1101         LASSERTF(MSG_CONNECT_RECONNECT == 0x00000002UL, "found 0x%.8xUL\n",
1102                 (unsigned)MSG_CONNECT_RECONNECT);
1103         LASSERTF(MSG_CONNECT_REPLAYABLE == 0x00000004UL, "found 0x%.8xUL\n",
1104                 (unsigned)MSG_CONNECT_REPLAYABLE);
1105         LASSERTF(MSG_CONNECT_LIBCLIENT == 0x00000010UL, "found 0x%.8xUL\n",
1106                 (unsigned)MSG_CONNECT_LIBCLIENT);
1107         LASSERTF(MSG_CONNECT_INITIAL == 0x00000020UL, "found 0x%.8xUL\n",
1108                 (unsigned)MSG_CONNECT_INITIAL);
1109         LASSERTF(MSG_CONNECT_NEXT_VER == 0x00000080UL, "found 0x%.8xUL\n",
1110                 (unsigned)MSG_CONNECT_NEXT_VER);
1111         LASSERTF(MSG_CONNECT_TRANSNO == 0x00000100UL, "found 0x%.8xUL\n",
1112                 (unsigned)MSG_CONNECT_TRANSNO);
1113
1114         /* Checks for struct obd_connect_data */
1115         LASSERTF((int)sizeof(struct obd_connect_data) == 192, "found %lld\n",
1116                  (long long)(int)sizeof(struct obd_connect_data));
1117         LASSERTF((int)offsetof(struct obd_connect_data, ocd_connect_flags) == 0, "found %lld\n",
1118                  (long long)(int)offsetof(struct obd_connect_data, ocd_connect_flags));
1119         LASSERTF((int)sizeof(((struct obd_connect_data *)0)->ocd_connect_flags) == 8, "found %lld\n",
1120                  (long long)(int)sizeof(((struct obd_connect_data *)0)->ocd_connect_flags));
1121         LASSERTF((int)offsetof(struct obd_connect_data, ocd_version) == 8, "found %lld\n",
1122                  (long long)(int)offsetof(struct obd_connect_data, ocd_version));
1123         LASSERTF((int)sizeof(((struct obd_connect_data *)0)->ocd_version) == 4, "found %lld\n",
1124                  (long long)(int)sizeof(((struct obd_connect_data *)0)->ocd_version));
1125         LASSERTF((int)offsetof(struct obd_connect_data, ocd_grant) == 12, "found %lld\n",
1126                  (long long)(int)offsetof(struct obd_connect_data, ocd_grant));
1127         LASSERTF((int)sizeof(((struct obd_connect_data *)0)->ocd_grant) == 4, "found %lld\n",
1128                  (long long)(int)sizeof(((struct obd_connect_data *)0)->ocd_grant));
1129         LASSERTF((int)offsetof(struct obd_connect_data, ocd_index) == 16, "found %lld\n",
1130                  (long long)(int)offsetof(struct obd_connect_data, ocd_index));
1131         LASSERTF((int)sizeof(((struct obd_connect_data *)0)->ocd_index) == 4, "found %lld\n",
1132                  (long long)(int)sizeof(((struct obd_connect_data *)0)->ocd_index));
1133         LASSERTF((int)offsetof(struct obd_connect_data, ocd_brw_size) == 20, "found %lld\n",
1134                  (long long)(int)offsetof(struct obd_connect_data, ocd_brw_size));
1135         LASSERTF((int)sizeof(((struct obd_connect_data *)0)->ocd_brw_size) == 4, "found %lld\n",
1136                  (long long)(int)sizeof(((struct obd_connect_data *)0)->ocd_brw_size));
1137         LASSERTF((int)offsetof(struct obd_connect_data, ocd_ibits_known) == 24, "found %lld\n",
1138                  (long long)(int)offsetof(struct obd_connect_data, ocd_ibits_known));
1139         LASSERTF((int)sizeof(((struct obd_connect_data *)0)->ocd_ibits_known) == 8, "found %lld\n",
1140                  (long long)(int)sizeof(((struct obd_connect_data *)0)->ocd_ibits_known));
1141         LASSERTF((int)offsetof(struct obd_connect_data, ocd_grant_blkbits) == 32, "found %lld\n",
1142                  (long long)(int)offsetof(struct obd_connect_data, ocd_grant_blkbits));
1143         LASSERTF((int)sizeof(((struct obd_connect_data *)0)->ocd_grant_blkbits) == 1, "found %lld\n",
1144                  (long long)(int)sizeof(((struct obd_connect_data *)0)->ocd_grant_blkbits));
1145         LASSERTF((int)offsetof(struct obd_connect_data, ocd_grant_inobits) == 33, "found %lld\n",
1146                  (long long)(int)offsetof(struct obd_connect_data, ocd_grant_inobits));
1147         LASSERTF((int)sizeof(((struct obd_connect_data *)0)->ocd_grant_inobits) == 1, "found %lld\n",
1148                  (long long)(int)sizeof(((struct obd_connect_data *)0)->ocd_grant_inobits));
1149         LASSERTF((int)offsetof(struct obd_connect_data, ocd_grant_tax_kb) == 34, "found %lld\n",
1150                  (long long)(int)offsetof(struct obd_connect_data, ocd_grant_tax_kb));
1151         LASSERTF((int)sizeof(((struct obd_connect_data *)0)->ocd_grant_tax_kb) == 2, "found %lld\n",
1152                  (long long)(int)sizeof(((struct obd_connect_data *)0)->ocd_grant_tax_kb));
1153         LASSERTF((int)offsetof(struct obd_connect_data, ocd_grant_max_blks) == 36, "found %lld\n",
1154                  (long long)(int)offsetof(struct obd_connect_data, ocd_grant_max_blks));
1155         LASSERTF((int)sizeof(((struct obd_connect_data *)0)->ocd_grant_max_blks) == 4, "found %lld\n",
1156                  (long long)(int)sizeof(((struct obd_connect_data *)0)->ocd_grant_max_blks));
1157         LASSERTF((int)offsetof(struct obd_connect_data, ocd_transno) == 40, "found %lld\n",
1158                  (long long)(int)offsetof(struct obd_connect_data, ocd_transno));
1159         LASSERTF((int)sizeof(((struct obd_connect_data *)0)->ocd_transno) == 8, "found %lld\n",
1160                  (long long)(int)sizeof(((struct obd_connect_data *)0)->ocd_transno));
1161         LASSERTF((int)offsetof(struct obd_connect_data, ocd_group) == 48, "found %lld\n",
1162                  (long long)(int)offsetof(struct obd_connect_data, ocd_group));
1163         LASSERTF((int)sizeof(((struct obd_connect_data *)0)->ocd_group) == 4, "found %lld\n",
1164                  (long long)(int)sizeof(((struct obd_connect_data *)0)->ocd_group));
1165         LASSERTF((int)offsetof(struct obd_connect_data, ocd_cksum_types) == 52, "found %lld\n",
1166                  (long long)(int)offsetof(struct obd_connect_data, ocd_cksum_types));
1167         LASSERTF((int)sizeof(((struct obd_connect_data *)0)->ocd_cksum_types) == 4, "found %lld\n",
1168                  (long long)(int)sizeof(((struct obd_connect_data *)0)->ocd_cksum_types));
1169         LASSERTF((int)offsetof(struct obd_connect_data, ocd_max_easize) == 56, "found %lld\n",
1170                  (long long)(int)offsetof(struct obd_connect_data, ocd_max_easize));
1171         LASSERTF((int)sizeof(((struct obd_connect_data *)0)->ocd_max_easize) == 4, "found %lld\n",
1172                  (long long)(int)sizeof(((struct obd_connect_data *)0)->ocd_max_easize));
1173         LASSERTF((int)offsetof(struct obd_connect_data, ocd_instance) == 60, "found %lld\n",
1174                  (long long)(int)offsetof(struct obd_connect_data, ocd_instance));
1175         LASSERTF((int)sizeof(((struct obd_connect_data *)0)->ocd_instance) == 4, "found %lld\n",
1176                  (long long)(int)sizeof(((struct obd_connect_data *)0)->ocd_instance));
1177         LASSERTF((int)offsetof(struct obd_connect_data, ocd_maxbytes) == 64, "found %lld\n",
1178                  (long long)(int)offsetof(struct obd_connect_data, ocd_maxbytes));
1179         LASSERTF((int)sizeof(((struct obd_connect_data *)0)->ocd_maxbytes) == 8, "found %lld\n",
1180                  (long long)(int)sizeof(((struct obd_connect_data *)0)->ocd_maxbytes));
1181         LASSERTF((int)offsetof(struct obd_connect_data, ocd_maxmodrpcs) == 72, "found %lld\n",
1182                  (long long)(int)offsetof(struct obd_connect_data, ocd_maxmodrpcs));
1183         LASSERTF((int)sizeof(((struct obd_connect_data *)0)->ocd_maxmodrpcs) == 2, "found %lld\n",
1184                  (long long)(int)sizeof(((struct obd_connect_data *)0)->ocd_maxmodrpcs));
1185         LASSERTF((int)offsetof(struct obd_connect_data, padding0) == 74, "found %lld\n",
1186                  (long long)(int)offsetof(struct obd_connect_data, padding0));
1187         LASSERTF((int)sizeof(((struct obd_connect_data *)0)->padding0) == 2, "found %lld\n",
1188                  (long long)(int)sizeof(((struct obd_connect_data *)0)->padding0));
1189         LASSERTF((int)offsetof(struct obd_connect_data, padding1) == 76, "found %lld\n",
1190                  (long long)(int)offsetof(struct obd_connect_data, padding1));
1191         LASSERTF((int)sizeof(((struct obd_connect_data *)0)->padding1) == 4, "found %lld\n",
1192                  (long long)(int)sizeof(((struct obd_connect_data *)0)->padding1));
1193         LASSERTF((int)offsetof(struct obd_connect_data, ocd_connect_flags2) == 80, "found %lld\n",
1194                  (long long)(int)offsetof(struct obd_connect_data, ocd_connect_flags2));
1195         LASSERTF((int)sizeof(((struct obd_connect_data *)0)->ocd_connect_flags2) == 8, "found %lld\n",
1196                  (long long)(int)sizeof(((struct obd_connect_data *)0)->ocd_connect_flags2));
1197         LASSERTF((int)offsetof(struct obd_connect_data, padding3) == 88, "found %lld\n",
1198                  (long long)(int)offsetof(struct obd_connect_data, padding3));
1199         LASSERTF((int)sizeof(((struct obd_connect_data *)0)->padding3) == 8, "found %lld\n",
1200                  (long long)(int)sizeof(((struct obd_connect_data *)0)->padding3));
1201         LASSERTF((int)offsetof(struct obd_connect_data, padding4) == 96, "found %lld\n",
1202                  (long long)(int)offsetof(struct obd_connect_data, padding4));
1203         LASSERTF((int)sizeof(((struct obd_connect_data *)0)->padding4) == 8, "found %lld\n",
1204                  (long long)(int)sizeof(((struct obd_connect_data *)0)->padding4));
1205         LASSERTF((int)offsetof(struct obd_connect_data, padding5) == 104, "found %lld\n",
1206                  (long long)(int)offsetof(struct obd_connect_data, padding5));
1207         LASSERTF((int)sizeof(((struct obd_connect_data *)0)->padding5) == 8, "found %lld\n",
1208                  (long long)(int)sizeof(((struct obd_connect_data *)0)->padding5));
1209         LASSERTF((int)offsetof(struct obd_connect_data, padding6) == 112, "found %lld\n",
1210                  (long long)(int)offsetof(struct obd_connect_data, padding6));
1211         LASSERTF((int)sizeof(((struct obd_connect_data *)0)->padding6) == 8, "found %lld\n",
1212                  (long long)(int)sizeof(((struct obd_connect_data *)0)->padding6));
1213         LASSERTF((int)offsetof(struct obd_connect_data, padding7) == 120, "found %lld\n",
1214                  (long long)(int)offsetof(struct obd_connect_data, padding7));
1215         LASSERTF((int)sizeof(((struct obd_connect_data *)0)->padding7) == 8, "found %lld\n",
1216                  (long long)(int)sizeof(((struct obd_connect_data *)0)->padding7));
1217         LASSERTF((int)offsetof(struct obd_connect_data, padding8) == 128, "found %lld\n",
1218                  (long long)(int)offsetof(struct obd_connect_data, padding8));
1219         LASSERTF((int)sizeof(((struct obd_connect_data *)0)->padding8) == 8, "found %lld\n",
1220                  (long long)(int)sizeof(((struct obd_connect_data *)0)->padding8));
1221         LASSERTF((int)offsetof(struct obd_connect_data, padding9) == 136, "found %lld\n",
1222                  (long long)(int)offsetof(struct obd_connect_data, padding9));
1223         LASSERTF((int)sizeof(((struct obd_connect_data *)0)->padding9) == 8, "found %lld\n",
1224                  (long long)(int)sizeof(((struct obd_connect_data *)0)->padding9));
1225         LASSERTF((int)offsetof(struct obd_connect_data, paddingA) == 144, "found %lld\n",
1226                  (long long)(int)offsetof(struct obd_connect_data, paddingA));
1227         LASSERTF((int)sizeof(((struct obd_connect_data *)0)->paddingA) == 8, "found %lld\n",
1228                  (long long)(int)sizeof(((struct obd_connect_data *)0)->paddingA));
1229         LASSERTF((int)offsetof(struct obd_connect_data, paddingB) == 152, "found %lld\n",
1230                  (long long)(int)offsetof(struct obd_connect_data, paddingB));
1231         LASSERTF((int)sizeof(((struct obd_connect_data *)0)->paddingB) == 8, "found %lld\n",
1232                  (long long)(int)sizeof(((struct obd_connect_data *)0)->paddingB));
1233         LASSERTF((int)offsetof(struct obd_connect_data, paddingC) == 160, "found %lld\n",
1234                  (long long)(int)offsetof(struct obd_connect_data, paddingC));
1235         LASSERTF((int)sizeof(((struct obd_connect_data *)0)->paddingC) == 8, "found %lld\n",
1236                  (long long)(int)sizeof(((struct obd_connect_data *)0)->paddingC));
1237         LASSERTF((int)offsetof(struct obd_connect_data, paddingD) == 168, "found %lld\n",
1238                  (long long)(int)offsetof(struct obd_connect_data, paddingD));
1239         LASSERTF((int)sizeof(((struct obd_connect_data *)0)->paddingD) == 8, "found %lld\n",
1240                  (long long)(int)sizeof(((struct obd_connect_data *)0)->paddingD));
1241         LASSERTF((int)offsetof(struct obd_connect_data, paddingE) == 176, "found %lld\n",
1242                  (long long)(int)offsetof(struct obd_connect_data, paddingE));
1243         LASSERTF((int)sizeof(((struct obd_connect_data *)0)->paddingE) == 8, "found %lld\n",
1244                  (long long)(int)sizeof(((struct obd_connect_data *)0)->paddingE));
1245         LASSERTF((int)offsetof(struct obd_connect_data, paddingF) == 184, "found %lld\n",
1246                  (long long)(int)offsetof(struct obd_connect_data, paddingF));
1247         LASSERTF((int)sizeof(((struct obd_connect_data *)0)->paddingF) == 8, "found %lld\n",
1248                  (long long)(int)sizeof(((struct obd_connect_data *)0)->paddingF));
1249         LASSERTF(OBD_CONNECT_RDONLY == 0x1ULL, "found 0x%.16llxULL\n",
1250                  OBD_CONNECT_RDONLY);
1251         LASSERTF(OBD_CONNECT_INDEX == 0x2ULL, "found 0x%.16llxULL\n",
1252                  OBD_CONNECT_INDEX);
1253         LASSERTF(OBD_CONNECT_MDS == 0x4ULL, "found 0x%.16llxULL\n",
1254                  OBD_CONNECT_MDS);
1255         LASSERTF(OBD_CONNECT_GRANT == 0x8ULL, "found 0x%.16llxULL\n",
1256                  OBD_CONNECT_GRANT);
1257         LASSERTF(OBD_CONNECT_SRVLOCK == 0x10ULL, "found 0x%.16llxULL\n",
1258                  OBD_CONNECT_SRVLOCK);
1259         LASSERTF(OBD_CONNECT_VERSION == 0x20ULL, "found 0x%.16llxULL\n",
1260                  OBD_CONNECT_VERSION);
1261         LASSERTF(OBD_CONNECT_REQPORTAL == 0x40ULL, "found 0x%.16llxULL\n",
1262                  OBD_CONNECT_REQPORTAL);
1263         LASSERTF(OBD_CONNECT_ACL == 0x80ULL, "found 0x%.16llxULL\n",
1264                  OBD_CONNECT_ACL);
1265         LASSERTF(OBD_CONNECT_XATTR == 0x100ULL, "found 0x%.16llxULL\n",
1266                  OBD_CONNECT_XATTR);
1267         LASSERTF(OBD_CONNECT_LARGE_ACL == 0x200ULL, "found 0x%.16llxULL\n",
1268                  OBD_CONNECT_LARGE_ACL);
1269         LASSERTF(OBD_CONNECT_TRUNCLOCK == 0x400ULL, "found 0x%.16llxULL\n",
1270                  OBD_CONNECT_TRUNCLOCK);
1271         LASSERTF(OBD_CONNECT_TRANSNO == 0x800ULL, "found 0x%.16llxULL\n",
1272                  OBD_CONNECT_TRANSNO);
1273         LASSERTF(OBD_CONNECT_IBITS == 0x1000ULL, "found 0x%.16llxULL\n",
1274                  OBD_CONNECT_IBITS);
1275         LASSERTF(OBD_CONNECT_BARRIER == 0x2000ULL, "found 0x%.16llxULL\n",
1276                  OBD_CONNECT_BARRIER);
1277         LASSERTF(OBD_CONNECT_ATTRFID == 0x4000ULL, "found 0x%.16llxULL\n",
1278                  OBD_CONNECT_ATTRFID);
1279         LASSERTF(OBD_CONNECT_NODEVOH == 0x8000ULL, "found 0x%.16llxULL\n",
1280                  OBD_CONNECT_NODEVOH);
1281         LASSERTF(OBD_CONNECT_RMT_CLIENT == 0x10000ULL, "found 0x%.16llxULL\n",
1282                  OBD_CONNECT_RMT_CLIENT);
1283         LASSERTF(OBD_CONNECT_RMT_CLIENT_FORCE == 0x20000ULL, "found 0x%.16llxULL\n",
1284                  OBD_CONNECT_RMT_CLIENT_FORCE);
1285         LASSERTF(OBD_CONNECT_BRW_SIZE == 0x40000ULL, "found 0x%.16llxULL\n",
1286                  OBD_CONNECT_BRW_SIZE);
1287         LASSERTF(OBD_CONNECT_QUOTA64 == 0x80000ULL, "found 0x%.16llxULL\n",
1288                  OBD_CONNECT_QUOTA64);
1289         LASSERTF(OBD_CONNECT_MDS_CAPA == 0x100000ULL, "found 0x%.16llxULL\n",
1290                  OBD_CONNECT_MDS_CAPA);
1291         LASSERTF(OBD_CONNECT_OSS_CAPA == 0x200000ULL, "found 0x%.16llxULL\n",
1292                  OBD_CONNECT_OSS_CAPA);
1293         LASSERTF(OBD_CONNECT_CANCELSET == 0x400000ULL, "found 0x%.16llxULL\n",
1294                  OBD_CONNECT_CANCELSET);
1295         LASSERTF(OBD_CONNECT_SOM == 0x800000ULL, "found 0x%.16llxULL\n",
1296                  OBD_CONNECT_SOM);
1297         LASSERTF(OBD_CONNECT_AT == 0x1000000ULL, "found 0x%.16llxULL\n",
1298                  OBD_CONNECT_AT);
1299         LASSERTF(OBD_CONNECT_LRU_RESIZE == 0x2000000ULL, "found 0x%.16llxULL\n",
1300                  OBD_CONNECT_LRU_RESIZE);
1301         LASSERTF(OBD_CONNECT_MDS_MDS == 0x4000000ULL, "found 0x%.16llxULL\n",
1302                  OBD_CONNECT_MDS_MDS);
1303         LASSERTF(OBD_CONNECT_REAL == 0x8000000ULL, "found 0x%.16llxULL\n",
1304                  OBD_CONNECT_REAL);
1305         LASSERTF(OBD_CONNECT_CHANGE_QS == 0x10000000ULL, "found 0x%.16llxULL\n",
1306                  OBD_CONNECT_CHANGE_QS);
1307         LASSERTF(OBD_CONNECT_CKSUM == 0x20000000ULL, "found 0x%.16llxULL\n",
1308                  OBD_CONNECT_CKSUM);
1309         LASSERTF(OBD_CONNECT_FID == 0x40000000ULL, "found 0x%.16llxULL\n",
1310                  OBD_CONNECT_FID);
1311         LASSERTF(OBD_CONNECT_VBR == 0x80000000ULL, "found 0x%.16llxULL\n",
1312                  OBD_CONNECT_VBR);
1313         LASSERTF(OBD_CONNECT_LOV_V3 == 0x100000000ULL, "found 0x%.16llxULL\n",
1314                  OBD_CONNECT_LOV_V3);
1315         LASSERTF(OBD_CONNECT_GRANT_SHRINK == 0x200000000ULL, "found 0x%.16llxULL\n",
1316                  OBD_CONNECT_GRANT_SHRINK);
1317         LASSERTF(OBD_CONNECT_SKIP_ORPHAN == 0x400000000ULL, "found 0x%.16llxULL\n",
1318                  OBD_CONNECT_SKIP_ORPHAN);
1319         LASSERTF(OBD_CONNECT_MAX_EASIZE == 0x800000000ULL, "found 0x%.16llxULL\n",
1320                  OBD_CONNECT_MAX_EASIZE);
1321         LASSERTF(OBD_CONNECT_FULL20 == 0x1000000000ULL, "found 0x%.16llxULL\n",
1322                  OBD_CONNECT_FULL20);
1323         LASSERTF(OBD_CONNECT_LAYOUTLOCK == 0x2000000000ULL, "found 0x%.16llxULL\n",
1324                  OBD_CONNECT_LAYOUTLOCK);
1325         LASSERTF(OBD_CONNECT_64BITHASH == 0x4000000000ULL, "found 0x%.16llxULL\n",
1326                  OBD_CONNECT_64BITHASH);
1327         LASSERTF(OBD_CONNECT_MAXBYTES == 0x8000000000ULL, "found 0x%.16llxULL\n",
1328                  OBD_CONNECT_MAXBYTES);
1329         LASSERTF(OBD_CONNECT_IMP_RECOV == 0x10000000000ULL, "found 0x%.16llxULL\n",
1330                  OBD_CONNECT_IMP_RECOV);
1331         LASSERTF(OBD_CONNECT_JOBSTATS == 0x20000000000ULL, "found 0x%.16llxULL\n",
1332                  OBD_CONNECT_JOBSTATS);
1333         LASSERTF(OBD_CONNECT_UMASK == 0x40000000000ULL, "found 0x%.16llxULL\n",
1334                  OBD_CONNECT_UMASK);
1335         LASSERTF(OBD_CONNECT_EINPROGRESS == 0x80000000000ULL, "found 0x%.16llxULL\n",
1336                  OBD_CONNECT_EINPROGRESS);
1337         LASSERTF(OBD_CONNECT_GRANT_PARAM == 0x100000000000ULL, "found 0x%.16llxULL\n",
1338                  OBD_CONNECT_GRANT_PARAM);
1339         LASSERTF(OBD_CONNECT_FLOCK_OWNER == 0x200000000000ULL, "found 0x%.16llxULL\n",
1340                  OBD_CONNECT_FLOCK_OWNER);
1341         LASSERTF(OBD_CONNECT_LVB_TYPE == 0x400000000000ULL, "found 0x%.16llxULL\n",
1342                  OBD_CONNECT_LVB_TYPE);
1343         LASSERTF(OBD_CONNECT_NANOSEC_TIME == 0x800000000000ULL, "found 0x%.16llxULL\n",
1344                  OBD_CONNECT_NANOSEC_TIME);
1345         LASSERTF(OBD_CONNECT_LIGHTWEIGHT == 0x1000000000000ULL, "found 0x%.16llxULL\n",
1346                  OBD_CONNECT_LIGHTWEIGHT);
1347         LASSERTF(OBD_CONNECT_SHORTIO == 0x2000000000000ULL, "found 0x%.16llxULL\n",
1348                  OBD_CONNECT_SHORTIO);
1349         LASSERTF(OBD_CONNECT_PINGLESS == 0x4000000000000ULL, "found 0x%.16llxULL\n",
1350                  OBD_CONNECT_PINGLESS);
1351         LASSERTF(OBD_CONNECT_FLOCK_DEAD == 0x8000000000000ULL, "found 0x%.16llxULL\n",
1352                  OBD_CONNECT_FLOCK_DEAD);
1353         LASSERTF(OBD_CONNECT_DISP_STRIPE == 0x10000000000000ULL, "found 0x%.16llxULL\n",
1354                  OBD_CONNECT_DISP_STRIPE);
1355         LASSERTF(OBD_CONNECT_OPEN_BY_FID == 0x20000000000000ULL, "found 0x%.16llxULL\n",
1356                  OBD_CONNECT_OPEN_BY_FID);
1357         LASSERTF(OBD_CONNECT_LFSCK == 0x40000000000000ULL, "found 0x%.16llxULL\n",
1358                  OBD_CONNECT_LFSCK);
1359         LASSERTF(OBD_CONNECT_UNLINK_CLOSE == 0x100000000000000ULL, "found 0x%.16llxULL\n",
1360                  OBD_CONNECT_UNLINK_CLOSE);
1361         LASSERTF(OBD_CONNECT_MULTIMODRPCS == 0x200000000000000ULL, "found 0x%.16llxULL\n",
1362                  OBD_CONNECT_MULTIMODRPCS);
1363         LASSERTF(OBD_CONNECT_DIR_STRIPE == 0x400000000000000ULL, "found 0x%.16llxULL\n",
1364                  OBD_CONNECT_DIR_STRIPE);
1365         LASSERTF(OBD_CONNECT_SUBTREE == 0x800000000000000ULL, "found 0x%.16llxULL\n",
1366                  OBD_CONNECT_SUBTREE);
1367         LASSERTF(OBD_CONNECT_LOCKAHEAD_OLD == 0x1000000000000000ULL, "found 0x%.16llxULL\n",
1368                  OBD_CONNECT_LOCKAHEAD_OLD);
1369         LASSERTF(OBD_CONNECT_BULK_MBITS == 0x2000000000000000ULL, "found 0x%.16llxULL\n",
1370                  OBD_CONNECT_BULK_MBITS);
1371         LASSERTF(OBD_CONNECT_OBDOPACK == 0x4000000000000000ULL, "found 0x%.16llxULL\n",
1372                  OBD_CONNECT_OBDOPACK);
1373         LASSERTF(OBD_CONNECT_FLAGS2 == 0x8000000000000000ULL, "found 0x%.16llxULL\n",
1374                  OBD_CONNECT_FLAGS2);
1375         LASSERTF(OBD_CONNECT2_FILE_SECCTX == 0x1ULL, "found 0x%.16llxULL\n",
1376                  OBD_CONNECT2_FILE_SECCTX);
1377         LASSERTF(OBD_CONNECT2_LOCKAHEAD == 0x2ULL, "found 0x%.16llxULL\n",
1378                  OBD_CONNECT2_LOCKAHEAD);
1379         LASSERTF(OBD_CONNECT2_DIR_MIGRATE == 0x4ULL, "found 0x%.16llxULL\n",
1380                  OBD_CONNECT2_DIR_MIGRATE);
1381         LASSERTF(OBD_CONNECT2_SUM_STATFS == 0x8ULL, "found 0x%.16llxULL\n",
1382                  OBD_CONNECT2_SUM_STATFS);
1383         LASSERTF(OBD_CONNECT2_OVERSTRIPING == 0x10ULL, "found 0x%.16llxULL\n",
1384                  OBD_CONNECT2_OVERSTRIPING);
1385         LASSERTF(OBD_CONNECT2_FLR == 0x20ULL, "found 0x%.16llxULL\n",
1386                  OBD_CONNECT2_FLR);
1387         LASSERTF(OBD_CONNECT2_WBC_INTENTS == 0x40ULL, "found 0x%.16llxULL\n",
1388                  OBD_CONNECT2_WBC_INTENTS);
1389         LASSERTF(OBD_CONNECT2_LOCK_CONVERT == 0x80ULL, "found 0x%.16llxULL\n",
1390                  OBD_CONNECT2_LOCK_CONVERT);
1391         LASSERTF(OBD_CONNECT2_ARCHIVE_ID_ARRAY == 0x100ULL, "found 0x%.16llxULL\n",
1392                  OBD_CONNECT2_ARCHIVE_ID_ARRAY);
1393         LASSERTF(OBD_CONNECT2_INC_XID == 0x200ULL, "found 0x%.16llxULL\n",
1394                  OBD_CONNECT2_INC_XID);
1395         LASSERTF(OBD_CONNECT2_SELINUX_POLICY == 0x400ULL, "found 0x%.16llxULL\n",
1396                  OBD_CONNECT2_SELINUX_POLICY);
1397         LASSERTF(OBD_CONNECT2_LSOM == 0x800ULL, "found 0x%.16llxULL\n",
1398                  OBD_CONNECT2_LSOM);
1399         LASSERTF(OBD_CONNECT2_PCC == 0x1000ULL, "found 0x%.16llxULL\n",
1400                  OBD_CONNECT2_PCC);
1401         LASSERTF(OBD_CONNECT2_CRUSH == 0x2000ULL, "found 0x%.16llxULL\n",
1402                  OBD_CONNECT2_CRUSH);
1403         LASSERTF(OBD_CONNECT2_ASYNC_DISCARD == 0x4000ULL, "found 0x%.16llxULL\n",
1404                  OBD_CONNECT2_ASYNC_DISCARD);
1405         LASSERTF(OBD_CONNECT2_ENCRYPT == 0x8000ULL, "found 0x%.16llxULL\n",
1406                  OBD_CONNECT2_ENCRYPT);
1407         LASSERTF(OBD_CKSUM_CRC32 == 0x00000001UL, "found 0x%.8xUL\n",
1408                 (unsigned)OBD_CKSUM_CRC32);
1409         LASSERTF(OBD_CKSUM_ADLER == 0x00000002UL, "found 0x%.8xUL\n",
1410                 (unsigned)OBD_CKSUM_ADLER);
1411         LASSERTF(OBD_CKSUM_CRC32C == 0x00000004UL, "found 0x%.8xUL\n",
1412                 (unsigned)OBD_CKSUM_CRC32C);
1413         LASSERTF(OBD_CKSUM_RESERVED == 0x00000008UL, "found 0x%.8xUL\n",
1414                 (unsigned)OBD_CKSUM_RESERVED);
1415         LASSERTF(OBD_CKSUM_T10IP512 == 0x00000010UL, "found 0x%.8xUL\n",
1416                 (unsigned)OBD_CKSUM_T10IP512);
1417         LASSERTF(OBD_CKSUM_T10IP4K == 0x00000020UL, "found 0x%.8xUL\n",
1418                 (unsigned)OBD_CKSUM_T10IP4K);
1419         LASSERTF(OBD_CKSUM_T10CRC512 == 0x00000040UL, "found 0x%.8xUL\n",
1420                 (unsigned)OBD_CKSUM_T10CRC512);
1421         LASSERTF(OBD_CKSUM_T10CRC4K == 0x00000080UL, "found 0x%.8xUL\n",
1422                 (unsigned)OBD_CKSUM_T10CRC4K);
1423         LASSERTF(OBD_CKSUM_T10_TOP == 0x00000002UL, "found 0x%.8xUL\n",
1424                 (unsigned)OBD_CKSUM_T10_TOP);
1425
1426         /* Checks for struct ost_layout */
1427         LASSERTF((int)sizeof(struct ost_layout) == 28, "found %lld\n",
1428                  (long long)(int)sizeof(struct ost_layout));
1429         LASSERTF((int)offsetof(struct ost_layout, ol_stripe_size) == 0, "found %lld\n",
1430                  (long long)(int)offsetof(struct ost_layout, ol_stripe_size));
1431         LASSERTF((int)sizeof(((struct ost_layout *)0)->ol_stripe_size) == 4, "found %lld\n",
1432                  (long long)(int)sizeof(((struct ost_layout *)0)->ol_stripe_size));
1433         LASSERTF((int)offsetof(struct ost_layout, ol_stripe_count) == 4, "found %lld\n",
1434                  (long long)(int)offsetof(struct ost_layout, ol_stripe_count));
1435         LASSERTF((int)sizeof(((struct ost_layout *)0)->ol_stripe_count) == 4, "found %lld\n",
1436                  (long long)(int)sizeof(((struct ost_layout *)0)->ol_stripe_count));
1437         LASSERTF((int)offsetof(struct ost_layout, ol_comp_start) == 8, "found %lld\n",
1438                  (long long)(int)offsetof(struct ost_layout, ol_comp_start));
1439         LASSERTF((int)sizeof(((struct ost_layout *)0)->ol_comp_start) == 8, "found %lld\n",
1440                  (long long)(int)sizeof(((struct ost_layout *)0)->ol_comp_start));
1441         LASSERTF((int)offsetof(struct ost_layout, ol_comp_end) == 16, "found %lld\n",
1442                  (long long)(int)offsetof(struct ost_layout, ol_comp_end));
1443         LASSERTF((int)sizeof(((struct ost_layout *)0)->ol_comp_end) == 8, "found %lld\n",
1444                  (long long)(int)sizeof(((struct ost_layout *)0)->ol_comp_end));
1445         LASSERTF((int)offsetof(struct ost_layout, ol_comp_id) == 24, "found %lld\n",
1446                  (long long)(int)offsetof(struct ost_layout, ol_comp_id));
1447         LASSERTF((int)sizeof(((struct ost_layout *)0)->ol_comp_id) == 4, "found %lld\n",
1448                  (long long)(int)sizeof(((struct ost_layout *)0)->ol_comp_id));
1449
1450         /* Checks for struct obdo */
1451         LASSERTF((int)sizeof(struct obdo) == 208, "found %lld\n",
1452                  (long long)(int)sizeof(struct obdo));
1453         LASSERTF((int)offsetof(struct obdo, o_valid) == 0, "found %lld\n",
1454                  (long long)(int)offsetof(struct obdo, o_valid));
1455         LASSERTF((int)sizeof(((struct obdo *)0)->o_valid) == 8, "found %lld\n",
1456                  (long long)(int)sizeof(((struct obdo *)0)->o_valid));
1457         LASSERTF((int)offsetof(struct obdo, o_oi) == 8, "found %lld\n",
1458                  (long long)(int)offsetof(struct obdo, o_oi));
1459         LASSERTF((int)sizeof(((struct obdo *)0)->o_oi) == 16, "found %lld\n",
1460                  (long long)(int)sizeof(((struct obdo *)0)->o_oi));
1461         LASSERTF((int)offsetof(struct obdo, o_parent_seq) == 24, "found %lld\n",
1462                  (long long)(int)offsetof(struct obdo, o_parent_seq));
1463         LASSERTF((int)sizeof(((struct obdo *)0)->o_parent_seq) == 8, "found %lld\n",
1464                  (long long)(int)sizeof(((struct obdo *)0)->o_parent_seq));
1465         LASSERTF((int)offsetof(struct obdo, o_size) == 32, "found %lld\n",
1466                  (long long)(int)offsetof(struct obdo, o_size));
1467         LASSERTF((int)sizeof(((struct obdo *)0)->o_size) == 8, "found %lld\n",
1468                  (long long)(int)sizeof(((struct obdo *)0)->o_size));
1469         LASSERTF((int)offsetof(struct obdo, o_mtime) == 40, "found %lld\n",
1470                  (long long)(int)offsetof(struct obdo, o_mtime));
1471         LASSERTF((int)sizeof(((struct obdo *)0)->o_mtime) == 8, "found %lld\n",
1472                  (long long)(int)sizeof(((struct obdo *)0)->o_mtime));
1473         LASSERTF((int)offsetof(struct obdo, o_atime) == 48, "found %lld\n",
1474                  (long long)(int)offsetof(struct obdo, o_atime));
1475         LASSERTF((int)sizeof(((struct obdo *)0)->o_atime) == 8, "found %lld\n",
1476                  (long long)(int)sizeof(((struct obdo *)0)->o_atime));
1477         LASSERTF((int)offsetof(struct obdo, o_ctime) == 56, "found %lld\n",
1478                  (long long)(int)offsetof(struct obdo, o_ctime));
1479         LASSERTF((int)sizeof(((struct obdo *)0)->o_ctime) == 8, "found %lld\n",
1480                  (long long)(int)sizeof(((struct obdo *)0)->o_ctime));
1481         LASSERTF((int)offsetof(struct obdo, o_blocks) == 64, "found %lld\n",
1482                  (long long)(int)offsetof(struct obdo, o_blocks));
1483         LASSERTF((int)sizeof(((struct obdo *)0)->o_blocks) == 8, "found %lld\n",
1484                  (long long)(int)sizeof(((struct obdo *)0)->o_blocks));
1485         LASSERTF((int)offsetof(struct obdo, o_grant) == 72, "found %lld\n",
1486                  (long long)(int)offsetof(struct obdo, o_grant));
1487         LASSERTF((int)sizeof(((struct obdo *)0)->o_grant) == 8, "found %lld\n",
1488                  (long long)(int)sizeof(((struct obdo *)0)->o_grant));
1489         LASSERTF((int)offsetof(struct obdo, o_blksize) == 80, "found %lld\n",
1490                  (long long)(int)offsetof(struct obdo, o_blksize));
1491         LASSERTF((int)sizeof(((struct obdo *)0)->o_blksize) == 4, "found %lld\n",
1492                  (long long)(int)sizeof(((struct obdo *)0)->o_blksize));
1493         LASSERTF((int)offsetof(struct obdo, o_mode) == 84, "found %lld\n",
1494                  (long long)(int)offsetof(struct obdo, o_mode));
1495         LASSERTF((int)sizeof(((struct obdo *)0)->o_mode) == 4, "found %lld\n",
1496                  (long long)(int)sizeof(((struct obdo *)0)->o_mode));
1497         LASSERTF((int)offsetof(struct obdo, o_uid) == 88, "found %lld\n",
1498                  (long long)(int)offsetof(struct obdo, o_uid));
1499         LASSERTF((int)sizeof(((struct obdo *)0)->o_uid) == 4, "found %lld\n",
1500                  (long long)(int)sizeof(((struct obdo *)0)->o_uid));
1501         LASSERTF((int)offsetof(struct obdo, o_gid) == 92, "found %lld\n",
1502                  (long long)(int)offsetof(struct obdo, o_gid));
1503         LASSERTF((int)sizeof(((struct obdo *)0)->o_gid) == 4, "found %lld\n",
1504                  (long long)(int)sizeof(((struct obdo *)0)->o_gid));
1505         LASSERTF((int)offsetof(struct obdo, o_flags) == 96, "found %lld\n",
1506                  (long long)(int)offsetof(struct obdo, o_flags));
1507         LASSERTF((int)sizeof(((struct obdo *)0)->o_flags) == 4, "found %lld\n",
1508                  (long long)(int)sizeof(((struct obdo *)0)->o_flags));
1509         LASSERTF((int)offsetof(struct obdo, o_nlink) == 100, "found %lld\n",
1510                  (long long)(int)offsetof(struct obdo, o_nlink));
1511         LASSERTF((int)sizeof(((struct obdo *)0)->o_nlink) == 4, "found %lld\n",
1512                  (long long)(int)sizeof(((struct obdo *)0)->o_nlink));
1513         LASSERTF((int)offsetof(struct obdo, o_parent_oid) == 104, "found %lld\n",
1514                  (long long)(int)offsetof(struct obdo, o_parent_oid));
1515         LASSERTF((int)sizeof(((struct obdo *)0)->o_parent_oid) == 4, "found %lld\n",
1516                  (long long)(int)sizeof(((struct obdo *)0)->o_parent_oid));
1517         LASSERTF((int)offsetof(struct obdo, o_misc) == 108, "found %lld\n",
1518                  (long long)(int)offsetof(struct obdo, o_misc));
1519         LASSERTF((int)sizeof(((struct obdo *)0)->o_misc) == 4, "found %lld\n",
1520                  (long long)(int)sizeof(((struct obdo *)0)->o_misc));
1521         LASSERTF((int)offsetof(struct obdo, o_ioepoch) == 112, "found %lld\n",
1522                  (long long)(int)offsetof(struct obdo, o_ioepoch));
1523         LASSERTF((int)sizeof(((struct obdo *)0)->o_ioepoch) == 8, "found %lld\n",
1524                  (long long)(int)sizeof(((struct obdo *)0)->o_ioepoch));
1525         LASSERTF((int)offsetof(struct obdo, o_stripe_idx) == 120, "found %lld\n",
1526                  (long long)(int)offsetof(struct obdo, o_stripe_idx));
1527         LASSERTF((int)sizeof(((struct obdo *)0)->o_stripe_idx) == 4, "found %lld\n",
1528                  (long long)(int)sizeof(((struct obdo *)0)->o_stripe_idx));
1529         LASSERTF((int)offsetof(struct obdo, o_parent_ver) == 124, "found %lld\n",
1530                  (long long)(int)offsetof(struct obdo, o_parent_ver));
1531         LASSERTF((int)sizeof(((struct obdo *)0)->o_parent_ver) == 4, "found %lld\n",
1532                  (long long)(int)sizeof(((struct obdo *)0)->o_parent_ver));
1533         LASSERTF((int)offsetof(struct obdo, o_handle) == 128, "found %lld\n",
1534                  (long long)(int)offsetof(struct obdo, o_handle));
1535         LASSERTF((int)sizeof(((struct obdo *)0)->o_handle) == 8, "found %lld\n",
1536                  (long long)(int)sizeof(((struct obdo *)0)->o_handle));
1537         LASSERTF((int)offsetof(struct obdo, o_layout) == 136, "found %lld\n",
1538                  (long long)(int)offsetof(struct obdo, o_layout));
1539         LASSERTF((int)sizeof(((struct obdo *)0)->o_layout) == 28, "found %lld\n",
1540                  (long long)(int)sizeof(((struct obdo *)0)->o_layout));
1541         LASSERTF((int)offsetof(struct obdo, o_layout_version) == 164, "found %lld\n",
1542                  (long long)(int)offsetof(struct obdo, o_layout_version));
1543         LASSERTF((int)sizeof(((struct obdo *)0)->o_layout_version) == 4, "found %lld\n",
1544                  (long long)(int)sizeof(((struct obdo *)0)->o_layout_version));
1545         LASSERTF((int)offsetof(struct obdo, o_uid_h) == 168, "found %lld\n",
1546                  (long long)(int)offsetof(struct obdo, o_uid_h));
1547         LASSERTF((int)sizeof(((struct obdo *)0)->o_uid_h) == 4, "found %lld\n",
1548                  (long long)(int)sizeof(((struct obdo *)0)->o_uid_h));
1549         LASSERTF((int)offsetof(struct obdo, o_gid_h) == 172, "found %lld\n",
1550                  (long long)(int)offsetof(struct obdo, o_gid_h));
1551         LASSERTF((int)sizeof(((struct obdo *)0)->o_gid_h) == 4, "found %lld\n",
1552                  (long long)(int)sizeof(((struct obdo *)0)->o_gid_h));
1553         LASSERTF((int)offsetof(struct obdo, o_data_version) == 176, "found %lld\n",
1554                  (long long)(int)offsetof(struct obdo, o_data_version));
1555         LASSERTF((int)sizeof(((struct obdo *)0)->o_data_version) == 8, "found %lld\n",
1556                  (long long)(int)sizeof(((struct obdo *)0)->o_data_version));
1557         LASSERTF((int)offsetof(struct obdo, o_projid) == 184, "found %lld\n",
1558                  (long long)(int)offsetof(struct obdo, o_projid));
1559         LASSERTF((int)sizeof(((struct obdo *)0)->o_projid) == 4, "found %lld\n",
1560                  (long long)(int)sizeof(((struct obdo *)0)->o_projid));
1561         LASSERTF((int)offsetof(struct obdo, o_padding_4) == 188, "found %lld\n",
1562                  (long long)(int)offsetof(struct obdo, o_padding_4));
1563         LASSERTF((int)sizeof(((struct obdo *)0)->o_padding_4) == 4, "found %lld\n",
1564                  (long long)(int)sizeof(((struct obdo *)0)->o_padding_4));
1565         LASSERTF((int)offsetof(struct obdo, o_padding_5) == 192, "found %lld\n",
1566                  (long long)(int)offsetof(struct obdo, o_padding_5));
1567         LASSERTF((int)sizeof(((struct obdo *)0)->o_padding_5) == 8, "found %lld\n",
1568                  (long long)(int)sizeof(((struct obdo *)0)->o_padding_5));
1569         LASSERTF((int)offsetof(struct obdo, o_padding_6) == 200, "found %lld\n",
1570                  (long long)(int)offsetof(struct obdo, o_padding_6));
1571         LASSERTF((int)sizeof(((struct obdo *)0)->o_padding_6) == 8, "found %lld\n",
1572                  (long long)(int)sizeof(((struct obdo *)0)->o_padding_6));
1573         LASSERTF(OBD_MD_FLID == (0x00000001ULL), "found 0x%.16llxULL\n",
1574                  OBD_MD_FLID);
1575         LASSERTF(OBD_MD_FLATIME == (0x00000002ULL), "found 0x%.16llxULL\n",
1576                  OBD_MD_FLATIME);
1577         LASSERTF(OBD_MD_FLMTIME == (0x00000004ULL), "found 0x%.16llxULL\n",
1578                  OBD_MD_FLMTIME);
1579         LASSERTF(OBD_MD_FLCTIME == (0x00000008ULL), "found 0x%.16llxULL\n",
1580                  OBD_MD_FLCTIME);
1581         LASSERTF(OBD_MD_FLSIZE == (0x00000010ULL), "found 0x%.16llxULL\n",
1582                  OBD_MD_FLSIZE);
1583         LASSERTF(OBD_MD_FLBLOCKS == (0x00000020ULL), "found 0x%.16llxULL\n",
1584                  OBD_MD_FLBLOCKS);
1585         LASSERTF(OBD_MD_FLBLKSZ == (0x00000040ULL), "found 0x%.16llxULL\n",
1586                  OBD_MD_FLBLKSZ);
1587         LASSERTF(OBD_MD_FLMODE == (0x00000080ULL), "found 0x%.16llxULL\n",
1588                  OBD_MD_FLMODE);
1589         LASSERTF(OBD_MD_FLTYPE == (0x00000100ULL), "found 0x%.16llxULL\n",
1590                  OBD_MD_FLTYPE);
1591         LASSERTF(OBD_MD_FLUID == (0x00000200ULL), "found 0x%.16llxULL\n",
1592                  OBD_MD_FLUID);
1593         LASSERTF(OBD_MD_FLGID == (0x00000400ULL), "found 0x%.16llxULL\n",
1594                  OBD_MD_FLGID);
1595         LASSERTF(OBD_MD_FLFLAGS == (0x00000800ULL), "found 0x%.16llxULL\n",
1596                  OBD_MD_FLFLAGS);
1597         LASSERTF(OBD_MD_DOM_SIZE == (0X00001000ULL), "found 0x%.16llxULL\n",
1598                  OBD_MD_DOM_SIZE);
1599         LASSERTF(OBD_MD_FLNLINK == (0x00002000ULL), "found 0x%.16llxULL\n",
1600                  OBD_MD_FLNLINK);
1601         LASSERTF(OBD_MD_FLPARENT == (0x00004000ULL), "found 0x%.16llxULL\n",
1602                  OBD_MD_FLPARENT);
1603         LASSERTF(OBD_MD_FLRDEV == (0x00010000ULL), "found 0x%.16llxULL\n",
1604                  OBD_MD_FLRDEV);
1605         LASSERTF(OBD_MD_FLEASIZE == (0x00020000ULL), "found 0x%.16llxULL\n",
1606                  OBD_MD_FLEASIZE);
1607         LASSERTF(OBD_MD_LINKNAME == (0x00040000ULL), "found 0x%.16llxULL\n",
1608                  OBD_MD_LINKNAME);
1609         LASSERTF(OBD_MD_FLHANDLE == (0x00080000ULL), "found 0x%.16llxULL\n",
1610                  OBD_MD_FLHANDLE);
1611         LASSERTF(OBD_MD_FLCKSUM == (0x00100000ULL), "found 0x%.16llxULL\n",
1612                  OBD_MD_FLCKSUM);
1613         LASSERTF(OBD_MD_FLPRJQUOTA == (0x00400000ULL), "found 0x%.16llxULL\n",
1614                  OBD_MD_FLPRJQUOTA);
1615         LASSERTF(OBD_MD_FLGROUP == (0x01000000ULL), "found 0x%.16llxULL\n",
1616                  OBD_MD_FLGROUP);
1617         LASSERTF(OBD_MD_FLFID == (0x02000000ULL), "found 0x%.16llxULL\n",
1618                  OBD_MD_FLFID);
1619         LASSERTF(OBD_MD_FLGRANT == (0x08000000ULL), "found 0x%.16llxULL\n",
1620                  OBD_MD_FLGRANT);
1621         LASSERTF(OBD_MD_FLDIREA == (0x10000000ULL), "found 0x%.16llxULL\n",
1622                  OBD_MD_FLDIREA);
1623         LASSERTF(OBD_MD_FLUSRQUOTA == (0x20000000ULL), "found 0x%.16llxULL\n",
1624                  OBD_MD_FLUSRQUOTA);
1625         LASSERTF(OBD_MD_FLGRPQUOTA == (0x40000000ULL), "found 0x%.16llxULL\n",
1626                  OBD_MD_FLGRPQUOTA);
1627         LASSERTF(OBD_MD_FLMODEASIZE == (0x80000000ULL), "found 0x%.16llxULL\n",
1628                  OBD_MD_FLMODEASIZE);
1629         LASSERTF(OBD_MD_MDS == (0x0000000100000000ULL), "found 0x%.16llxULL\n",
1630                  OBD_MD_MDS);
1631         LASSERTF(OBD_MD_MEA == (0x0000000400000000ULL), "found 0x%.16llxULL\n",
1632                  OBD_MD_MEA);
1633         LASSERTF(OBD_MD_TSTATE == (0x0000000800000000ULL), "found 0x%.16llxULL\n",
1634                  OBD_MD_TSTATE);
1635         LASSERTF(OBD_MD_FLXATTR == (0x0000001000000000ULL), "found 0x%.16llxULL\n",
1636                  OBD_MD_FLXATTR);
1637         LASSERTF(OBD_MD_FLXATTRLS == (0x0000002000000000ULL), "found 0x%.16llxULL\n",
1638                  OBD_MD_FLXATTRLS);
1639         LASSERTF(OBD_MD_FLXATTRRM == (0x0000004000000000ULL), "found 0x%.16llxULL\n",
1640                  OBD_MD_FLXATTRRM);
1641         LASSERTF(OBD_MD_FLACL == (0x0000008000000000ULL), "found 0x%.16llxULL\n",
1642                  OBD_MD_FLACL);
1643         LASSERTF(OBD_MD_FLAGSTATFS == (0x0000010000000000ULL), "found 0x%.16llxULL\n",
1644                  OBD_MD_FLAGSTATFS);
1645         LASSERTF(OBD_MD_FLCROSSREF == (0x0000100000000000ULL), "found 0x%.16llxULL\n",
1646                  OBD_MD_FLCROSSREF);
1647         LASSERTF(OBD_MD_FLGETATTRLOCK == (0x0000200000000000ULL), "found 0x%.16llxULL\n",
1648                  OBD_MD_FLGETATTRLOCK);
1649         LASSERTF(OBD_MD_FLOBJCOUNT == (0x0000400000000000ULL), "found 0x%.16llxULL\n",
1650                  OBD_MD_FLOBJCOUNT);
1651         LASSERTF(OBD_MD_FLDATAVERSION == (0x0010000000000000ULL), "found 0x%.16llxULL\n",
1652                  OBD_MD_FLDATAVERSION);
1653         LASSERTF(OBD_MD_CLOSE_INTENT_EXECED == (0x0020000000000000ULL), "found 0x%.16llxULL\n",
1654                  OBD_MD_CLOSE_INTENT_EXECED);
1655         LASSERTF(OBD_MD_DEFAULT_MEA == (0x0040000000000000ULL), "found 0x%.16llxULL\n",
1656                  OBD_MD_DEFAULT_MEA);
1657         LASSERTF(OBD_MD_FLOSTLAYOUT == (0x0080000000000000ULL), "found 0x%.16llxULL\n",
1658                  OBD_MD_FLOSTLAYOUT);
1659         LASSERTF(OBD_MD_FLPROJID == (0x0100000000000000ULL), "found 0x%.16llxULL\n",
1660                  OBD_MD_FLPROJID);
1661         LASSERTF(OBD_MD_SECCTX == (0x0200000000000000ULL), "found 0x%.16llxULL\n",
1662                  OBD_MD_SECCTX);
1663         LASSERTF(OBD_MD_FLLAZYSIZE == (0x0400000000000000ULL), "found 0x%.16llxULL\n",
1664                  OBD_MD_FLLAZYSIZE);
1665         LASSERTF(OBD_MD_FLLAZYBLOCKS == (0x0800000000000000ULL), "found 0x%.16llxULL\n",
1666                  OBD_MD_FLLAZYBLOCKS);
1667         BUILD_BUG_ON(OBD_FL_INLINEDATA != 0x00000001);
1668         BUILD_BUG_ON(OBD_FL_OBDMDEXISTS != 0x00000002);
1669         BUILD_BUG_ON(OBD_FL_DELORPHAN != 0x00000004);
1670         BUILD_BUG_ON(OBD_FL_NORPC != 0x00000008);
1671         BUILD_BUG_ON(OBD_FL_IDONLY != 0x00000010);
1672         BUILD_BUG_ON(OBD_FL_RECREATE_OBJS != 0x00000020);
1673         BUILD_BUG_ON(OBD_FL_DEBUG_CHECK != 0x00000040);
1674         BUILD_BUG_ON(OBD_FL_NO_PRJQUOTA != 0x00000080);
1675         BUILD_BUG_ON(OBD_FL_NO_USRQUOTA != 0x00000100);
1676         BUILD_BUG_ON(OBD_FL_NO_GRPQUOTA != 0x00000200);
1677         BUILD_BUG_ON(OBD_FL_CREATE_CROW != 0x00000400);
1678         BUILD_BUG_ON(OBD_FL_SRVLOCK != 0x00000800);
1679         BUILD_BUG_ON(OBD_FL_CKSUM_CRC32 != 0x00001000);
1680         BUILD_BUG_ON(OBD_FL_CKSUM_ADLER != 0x00002000);
1681         BUILD_BUG_ON(OBD_FL_CKSUM_CRC32C != 0x00004000);
1682         BUILD_BUG_ON(OBD_FL_CKSUM_T10IP512 != 0x00005000);
1683         BUILD_BUG_ON(OBD_FL_CKSUM_T10IP4K != 0x00006000);
1684         BUILD_BUG_ON(OBD_FL_CKSUM_T10CRC512 != 0x00007000);
1685         BUILD_BUG_ON(OBD_FL_CKSUM_T10CRC4K != 0x00008000);
1686         BUILD_BUG_ON(OBD_FL_CKSUM_RSVD3 != 0x00010000);
1687         BUILD_BUG_ON(OBD_FL_SHRINK_GRANT != 0x00020000);
1688         BUILD_BUG_ON(OBD_FL_MMAP != 0x00040000);
1689         BUILD_BUG_ON(OBD_FL_RECOV_RESEND != 0x00080000);
1690         BUILD_BUG_ON(OBD_FL_NOSPC_BLK != 0x00100000);
1691         BUILD_BUG_ON(OBD_FL_FLUSH != 0x00200000);
1692         BUILD_BUG_ON(OBD_FL_SHORT_IO != 0x00400000);
1693
1694         /* Checks for struct lov_ost_data_v1 */
1695         LASSERTF((int)sizeof(struct lov_ost_data_v1) == 24, "found %lld\n",
1696                  (long long)(int)sizeof(struct lov_ost_data_v1));
1697         LASSERTF((int)offsetof(struct lov_ost_data_v1, l_ost_oi) == 0, "found %lld\n",
1698                  (long long)(int)offsetof(struct lov_ost_data_v1, l_ost_oi));
1699         LASSERTF((int)sizeof(((struct lov_ost_data_v1 *)0)->l_ost_oi) == 16, "found %lld\n",
1700                  (long long)(int)sizeof(((struct lov_ost_data_v1 *)0)->l_ost_oi));
1701         LASSERTF((int)offsetof(struct lov_ost_data_v1, l_ost_gen) == 16, "found %lld\n",
1702                  (long long)(int)offsetof(struct lov_ost_data_v1, l_ost_gen));
1703         LASSERTF((int)sizeof(((struct lov_ost_data_v1 *)0)->l_ost_gen) == 4, "found %lld\n",
1704                  (long long)(int)sizeof(((struct lov_ost_data_v1 *)0)->l_ost_gen));
1705         LASSERTF((int)offsetof(struct lov_ost_data_v1, l_ost_idx) == 20, "found %lld\n",
1706                  (long long)(int)offsetof(struct lov_ost_data_v1, l_ost_idx));
1707         LASSERTF((int)sizeof(((struct lov_ost_data_v1 *)0)->l_ost_idx) == 4, "found %lld\n",
1708                  (long long)(int)sizeof(((struct lov_ost_data_v1 *)0)->l_ost_idx));
1709
1710         /* Checks for struct lov_mds_md_v1 */
1711         LASSERTF((int)sizeof(struct lov_mds_md_v1) == 32, "found %lld\n",
1712                  (long long)(int)sizeof(struct lov_mds_md_v1));
1713         LASSERTF((int)offsetof(struct lov_mds_md_v1, lmm_magic) == 0, "found %lld\n",
1714                  (long long)(int)offsetof(struct lov_mds_md_v1, lmm_magic));
1715         LASSERTF((int)sizeof(((struct lov_mds_md_v1 *)0)->lmm_magic) == 4, "found %lld\n",
1716                  (long long)(int)sizeof(((struct lov_mds_md_v1 *)0)->lmm_magic));
1717         LASSERTF((int)offsetof(struct lov_mds_md_v1, lmm_pattern) == 4, "found %lld\n",
1718                  (long long)(int)offsetof(struct lov_mds_md_v1, lmm_pattern));
1719         LASSERTF((int)sizeof(((struct lov_mds_md_v1 *)0)->lmm_pattern) == 4, "found %lld\n",
1720                  (long long)(int)sizeof(((struct lov_mds_md_v1 *)0)->lmm_pattern));
1721         LASSERTF((int)offsetof(struct lov_mds_md_v1, lmm_oi) == 8, "found %lld\n",
1722                  (long long)(int)offsetof(struct lov_mds_md_v1, lmm_oi));
1723         LASSERTF((int)sizeof(((struct lov_mds_md_v1 *)0)->lmm_oi) == 16, "found %lld\n",
1724                  (long long)(int)sizeof(((struct lov_mds_md_v1 *)0)->lmm_oi));
1725         LASSERTF((int)offsetof(struct lov_mds_md_v1, lmm_stripe_size) == 24, "found %lld\n",
1726                  (long long)(int)offsetof(struct lov_mds_md_v1, lmm_stripe_size));
1727         LASSERTF((int)sizeof(((struct lov_mds_md_v1 *)0)->lmm_stripe_size) == 4, "found %lld\n",
1728                  (long long)(int)sizeof(((struct lov_mds_md_v1 *)0)->lmm_stripe_size));
1729         LASSERTF((int)offsetof(struct lov_mds_md_v1, lmm_stripe_count) == 28, "found %lld\n",
1730                  (long long)(int)offsetof(struct lov_mds_md_v1, lmm_stripe_count));
1731         LASSERTF((int)sizeof(((struct lov_mds_md_v1 *)0)->lmm_stripe_count) == 2, "found %lld\n",
1732                  (long long)(int)sizeof(((struct lov_mds_md_v1 *)0)->lmm_stripe_count));
1733         LASSERTF((int)offsetof(struct lov_mds_md_v1, lmm_layout_gen) == 30, "found %lld\n",
1734                  (long long)(int)offsetof(struct lov_mds_md_v1, lmm_layout_gen));
1735         LASSERTF((int)sizeof(((struct lov_mds_md_v1 *)0)->lmm_layout_gen) == 2, "found %lld\n",
1736                  (long long)(int)sizeof(((struct lov_mds_md_v1 *)0)->lmm_layout_gen));
1737         LASSERTF((int)offsetof(struct lov_mds_md_v1, lmm_objects[0]) == 32, "found %lld\n",
1738                  (long long)(int)offsetof(struct lov_mds_md_v1, lmm_objects[0]));
1739         LASSERTF((int)sizeof(((struct lov_mds_md_v1 *)0)->lmm_objects[0]) == 24, "found %lld\n",
1740                  (long long)(int)sizeof(((struct lov_mds_md_v1 *)0)->lmm_objects[0]));
1741         BUILD_BUG_ON(LOV_MAGIC_V1 != (0x0BD10000 | 0x0BD0));
1742
1743         /* Checks for struct lov_mds_md_v3 */
1744         LASSERTF((int)sizeof(struct lov_mds_md_v3) == 48, "found %lld\n",
1745                  (long long)(int)sizeof(struct lov_mds_md_v3));
1746         LASSERTF((int)offsetof(struct lov_mds_md_v3, lmm_magic) == 0, "found %lld\n",
1747                  (long long)(int)offsetof(struct lov_mds_md_v3, lmm_magic));
1748         LASSERTF((int)sizeof(((struct lov_mds_md_v3 *)0)->lmm_magic) == 4, "found %lld\n",
1749                  (long long)(int)sizeof(((struct lov_mds_md_v3 *)0)->lmm_magic));
1750         LASSERTF((int)offsetof(struct lov_mds_md_v3, lmm_pattern) == 4, "found %lld\n",
1751                  (long long)(int)offsetof(struct lov_mds_md_v3, lmm_pattern));
1752         LASSERTF((int)sizeof(((struct lov_mds_md_v3 *)0)->lmm_pattern) == 4, "found %lld\n",
1753                  (long long)(int)sizeof(((struct lov_mds_md_v3 *)0)->lmm_pattern));
1754         LASSERTF((int)offsetof(struct lov_mds_md_v3, lmm_oi) == 8, "found %lld\n",
1755                  (long long)(int)offsetof(struct lov_mds_md_v3, lmm_oi));
1756         LASSERTF((int)sizeof(((struct lov_mds_md_v3 *)0)->lmm_oi) == 16, "found %lld\n",
1757                  (long long)(int)sizeof(((struct lov_mds_md_v3 *)0)->lmm_oi));
1758         LASSERTF((int)offsetof(struct lov_mds_md_v3, lmm_stripe_size) == 24, "found %lld\n",
1759                  (long long)(int)offsetof(struct lov_mds_md_v3, lmm_stripe_size));
1760         LASSERTF((int)sizeof(((struct lov_mds_md_v3 *)0)->lmm_stripe_size) == 4, "found %lld\n",
1761                  (long long)(int)sizeof(((struct lov_mds_md_v3 *)0)->lmm_stripe_size));
1762         LASSERTF((int)offsetof(struct lov_mds_md_v3, lmm_stripe_count) == 28, "found %lld\n",
1763                  (long long)(int)offsetof(struct lov_mds_md_v3, lmm_stripe_count));
1764         LASSERTF((int)sizeof(((struct lov_mds_md_v3 *)0)->lmm_stripe_count) == 2, "found %lld\n",
1765                  (long long)(int)sizeof(((struct lov_mds_md_v3 *)0)->lmm_stripe_count));
1766         LASSERTF((int)offsetof(struct lov_mds_md_v3, lmm_layout_gen) == 30, "found %lld\n",
1767                  (long long)(int)offsetof(struct lov_mds_md_v3, lmm_layout_gen));
1768         LASSERTF((int)sizeof(((struct lov_mds_md_v3 *)0)->lmm_layout_gen) == 2, "found %lld\n",
1769                  (long long)(int)sizeof(((struct lov_mds_md_v3 *)0)->lmm_layout_gen));
1770         BUILD_BUG_ON(LOV_MAXPOOLNAME != 15);
1771         LASSERTF((int)offsetof(struct lov_mds_md_v3, lmm_pool_name[15 + 1]) == 48, "found %lld\n",
1772                  (long long)(int)offsetof(struct lov_mds_md_v3, lmm_pool_name[15 + 1]));
1773         LASSERTF((int)sizeof(((struct lov_mds_md_v3 *)0)->lmm_pool_name[15 + 1]) == 1, "found %lld\n",
1774                  (long long)(int)sizeof(((struct lov_mds_md_v3 *)0)->lmm_pool_name[15 + 1]));
1775         LASSERTF((int)offsetof(struct lov_mds_md_v3, lmm_objects[0]) == 48, "found %lld\n",
1776                  (long long)(int)offsetof(struct lov_mds_md_v3, lmm_objects[0]));
1777         LASSERTF((int)sizeof(((struct lov_mds_md_v3 *)0)->lmm_objects[0]) == 24, "found %lld\n",
1778                  (long long)(int)sizeof(((struct lov_mds_md_v3 *)0)->lmm_objects[0]));
1779         BUILD_BUG_ON(LOV_MAGIC_V3 != (0x0BD30000 | 0x0BD0));
1780         LASSERTF(LOV_PATTERN_RAID0 == 0x00000001UL, "found 0x%.8xUL\n",
1781                 (unsigned)LOV_PATTERN_RAID0);
1782         LASSERTF(LOV_PATTERN_RAID1 == 0x00000002UL, "found 0x%.8xUL\n",
1783                 (unsigned)LOV_PATTERN_RAID1);
1784         LASSERTF(LOV_PATTERN_MDT == 0x00000100UL, "found 0x%.8xUL\n",
1785                 (unsigned)LOV_PATTERN_MDT);
1786         LASSERTF(LOV_PATTERN_OVERSTRIPING == 0x00000200UL, "found 0x%.8xUL\n",
1787                 (unsigned)LOV_PATTERN_OVERSTRIPING);
1788
1789         /* Checks for struct lov_comp_md_entry_v1 */
1790         LASSERTF((int)sizeof(struct lov_comp_md_entry_v1) == 48, "found %lld\n",
1791                  (long long)(int)sizeof(struct lov_comp_md_entry_v1));
1792         LASSERTF((int)offsetof(struct lov_comp_md_entry_v1, lcme_id) == 0, "found %lld\n",
1793                  (long long)(int)offsetof(struct lov_comp_md_entry_v1, lcme_id));
1794         LASSERTF((int)sizeof(((struct lov_comp_md_entry_v1 *)0)->lcme_id) == 4, "found %lld\n",
1795                  (long long)(int)sizeof(((struct lov_comp_md_entry_v1 *)0)->lcme_id));
1796         LASSERTF((int)offsetof(struct lov_comp_md_entry_v1, lcme_flags) == 4, "found %lld\n",
1797                  (long long)(int)offsetof(struct lov_comp_md_entry_v1, lcme_flags));
1798         LASSERTF((int)sizeof(((struct lov_comp_md_entry_v1 *)0)->lcme_flags) == 4, "found %lld\n",
1799                  (long long)(int)sizeof(((struct lov_comp_md_entry_v1 *)0)->lcme_flags));
1800         LASSERTF((int)offsetof(struct lov_comp_md_entry_v1, lcme_extent) == 8, "found %lld\n",
1801                  (long long)(int)offsetof(struct lov_comp_md_entry_v1, lcme_extent));
1802         LASSERTF((int)sizeof(((struct lov_comp_md_entry_v1 *)0)->lcme_extent) == 16, "found %lld\n",
1803                  (long long)(int)sizeof(((struct lov_comp_md_entry_v1 *)0)->lcme_extent));
1804         LASSERTF((int)offsetof(struct lov_comp_md_entry_v1, lcme_offset) == 24, "found %lld\n",
1805                  (long long)(int)offsetof(struct lov_comp_md_entry_v1, lcme_offset));
1806         LASSERTF((int)sizeof(((struct lov_comp_md_entry_v1 *)0)->lcme_offset) == 4, "found %lld\n",
1807                  (long long)(int)sizeof(((struct lov_comp_md_entry_v1 *)0)->lcme_offset));
1808         LASSERTF((int)offsetof(struct lov_comp_md_entry_v1, lcme_size) == 28, "found %lld\n",
1809                  (long long)(int)offsetof(struct lov_comp_md_entry_v1, lcme_size));
1810         LASSERTF((int)sizeof(((struct lov_comp_md_entry_v1 *)0)->lcme_size) == 4, "found %lld\n",
1811                  (long long)(int)sizeof(((struct lov_comp_md_entry_v1 *)0)->lcme_size));
1812         LASSERTF((int)offsetof(struct lov_comp_md_entry_v1, lcme_layout_gen) == 32, "found %lld\n",
1813                  (long long)(int)offsetof(struct lov_comp_md_entry_v1, lcme_layout_gen));
1814         LASSERTF((int)sizeof(((struct lov_comp_md_entry_v1 *)0)->lcme_layout_gen) == 4, "found %lld\n",
1815                  (long long)(int)sizeof(((struct lov_comp_md_entry_v1 *)0)->lcme_layout_gen));
1816         LASSERTF((int)offsetof(struct lov_comp_md_entry_v1, lcme_timestamp) == 36, "found %lld\n",
1817                  (long long)(int)offsetof(struct lov_comp_md_entry_v1, lcme_timestamp));
1818         LASSERTF((int)sizeof(((struct lov_comp_md_entry_v1 *)0)->lcme_timestamp) == 8, "found %lld\n",
1819                  (long long)(int)sizeof(((struct lov_comp_md_entry_v1 *)0)->lcme_timestamp));
1820         LASSERTF((int)offsetof(struct lov_comp_md_entry_v1, lcme_padding_1) == 44, "found %lld\n",
1821                  (long long)(int)offsetof(struct lov_comp_md_entry_v1, lcme_padding_1));
1822         LASSERTF((int)sizeof(((struct lov_comp_md_entry_v1 *)0)->lcme_padding_1) == 4, "found %lld\n",
1823                  (long long)(int)sizeof(((struct lov_comp_md_entry_v1 *)0)->lcme_padding_1));
1824         BUILD_BUG_ON(LCME_FL_STALE != 0x00000001);
1825         BUILD_BUG_ON(LCME_FL_PREF_RD != 0x00000002);
1826         BUILD_BUG_ON(LCME_FL_PREF_WR != 0x00000004);
1827         BUILD_BUG_ON(LCME_FL_PREF_RW != 0x00000006);
1828         BUILD_BUG_ON(LCME_FL_OFFLINE != 0x00000008);
1829         BUILD_BUG_ON(LCME_FL_INIT != 0x00000010);
1830         BUILD_BUG_ON(LCME_FL_NOSYNC != 0x00000020);
1831         BUILD_BUG_ON(LCME_FL_EXTENSION != 0x00000040);
1832         BUILD_BUG_ON(LCME_FL_NEG != 0x80000000);
1833
1834         /* Checks for struct lov_comp_md_v1 */
1835         LASSERTF((int)sizeof(struct lov_comp_md_v1) == 32, "found %lld\n",
1836                  (long long)(int)sizeof(struct lov_comp_md_v1));
1837         LASSERTF((int)offsetof(struct lov_comp_md_v1, lcm_magic) == 0, "found %lld\n",
1838                  (long long)(int)offsetof(struct lov_comp_md_v1, lcm_magic));
1839         LASSERTF((int)sizeof(((struct lov_comp_md_v1 *)0)->lcm_magic) == 4, "found %lld\n",
1840                  (long long)(int)sizeof(((struct lov_comp_md_v1 *)0)->lcm_magic));
1841         LASSERTF((int)offsetof(struct lov_comp_md_v1, lcm_size) == 4, "found %lld\n",
1842                  (long long)(int)offsetof(struct lov_comp_md_v1, lcm_size));
1843         LASSERTF((int)sizeof(((struct lov_comp_md_v1 *)0)->lcm_size) == 4, "found %lld\n",
1844                  (long long)(int)sizeof(((struct lov_comp_md_v1 *)0)->lcm_size));
1845         LASSERTF((int)offsetof(struct lov_comp_md_v1, lcm_layout_gen) == 8, "found %lld\n",
1846                  (long long)(int)offsetof(struct lov_comp_md_v1, lcm_layout_gen));
1847         LASSERTF((int)sizeof(((struct lov_comp_md_v1 *)0)->lcm_layout_gen) == 4, "found %lld\n",
1848                  (long long)(int)sizeof(((struct lov_comp_md_v1 *)0)->lcm_layout_gen));
1849         LASSERTF((int)offsetof(struct lov_comp_md_v1, lcm_flags) == 12, "found %lld\n",
1850                  (long long)(int)offsetof(struct lov_comp_md_v1, lcm_flags));
1851         LASSERTF((int)sizeof(((struct lov_comp_md_v1 *)0)->lcm_flags) == 2, "found %lld\n",
1852                  (long long)(int)sizeof(((struct lov_comp_md_v1 *)0)->lcm_flags));
1853         LASSERTF((int)offsetof(struct lov_comp_md_v1, lcm_entry_count) == 14, "found %lld\n",
1854                  (long long)(int)offsetof(struct lov_comp_md_v1, lcm_entry_count));
1855         LASSERTF((int)sizeof(((struct lov_comp_md_v1 *)0)->lcm_entry_count) == 2, "found %lld\n",
1856                  (long long)(int)sizeof(((struct lov_comp_md_v1 *)0)->lcm_entry_count));
1857         LASSERTF((int)offsetof(struct lov_comp_md_v1, lcm_mirror_count) == 16, "found %lld\n",
1858                  (long long)(int)offsetof(struct lov_comp_md_v1, lcm_mirror_count));
1859         LASSERTF((int)sizeof(((struct lov_comp_md_v1 *)0)->lcm_mirror_count) == 2, "found %lld\n",
1860                  (long long)(int)sizeof(((struct lov_comp_md_v1 *)0)->lcm_mirror_count));
1861         LASSERTF((int)offsetof(struct lov_comp_md_v1, lcm_padding1) == 18, "found %lld\n",
1862                  (long long)(int)offsetof(struct lov_comp_md_v1, lcm_padding1));
1863         LASSERTF((int)sizeof(((struct lov_comp_md_v1 *)0)->lcm_padding1) == 6, "found %lld\n",
1864                  (long long)(int)sizeof(((struct lov_comp_md_v1 *)0)->lcm_padding1));
1865         LASSERTF((int)offsetof(struct lov_comp_md_v1, lcm_padding2) == 24, "found %lld\n",
1866                  (long long)(int)offsetof(struct lov_comp_md_v1, lcm_padding2));
1867         LASSERTF((int)sizeof(((struct lov_comp_md_v1 *)0)->lcm_padding2) == 8, "found %lld\n",
1868                  (long long)(int)sizeof(((struct lov_comp_md_v1 *)0)->lcm_padding2));
1869         LASSERTF((int)offsetof(struct lov_comp_md_v1, lcm_entries[0]) == 32, "found %lld\n",
1870                  (long long)(int)offsetof(struct lov_comp_md_v1, lcm_entries[0]));
1871         LASSERTF((int)sizeof(((struct lov_comp_md_v1 *)0)->lcm_entries[0]) == 48, "found %lld\n",
1872                  (long long)(int)sizeof(((struct lov_comp_md_v1 *)0)->lcm_entries[0]));
1873         BUILD_BUG_ON(LOV_MAGIC_COMP_V1 != (0x0BD60000 | 0x0BD0));
1874         LASSERTF(LCM_FL_NONE == 0, "found %lld\n",
1875                  (long long)LCM_FL_NONE);
1876         LASSERTF(LCM_FL_RDONLY == 1, "found %lld\n",
1877                  (long long)LCM_FL_RDONLY);
1878         LASSERTF(LCM_FL_WRITE_PENDING == 2, "found %lld\n",
1879                  (long long)LCM_FL_WRITE_PENDING);
1880         LASSERTF(LCM_FL_SYNC_PENDING == 3, "found %lld\n",
1881                  (long long)LCM_FL_SYNC_PENDING);
1882
1883         /* Checks for struct lmv_mds_md_v1 */
1884         LASSERTF((int)sizeof(struct lmv_mds_md_v1) == 56, "found %lld\n",
1885                  (long long)(int)sizeof(struct lmv_mds_md_v1));
1886         LASSERTF((int)offsetof(struct lmv_mds_md_v1, lmv_magic) == 0, "found %lld\n",
1887                  (long long)(int)offsetof(struct lmv_mds_md_v1, lmv_magic));
1888         LASSERTF((int)sizeof(((struct lmv_mds_md_v1 *)0)->lmv_magic) == 4, "found %lld\n",
1889                  (long long)(int)sizeof(((struct lmv_mds_md_v1 *)0)->lmv_magic));
1890         LASSERTF((int)offsetof(struct lmv_mds_md_v1, lmv_stripe_count) == 4, "found %lld\n",
1891                  (long long)(int)offsetof(struct lmv_mds_md_v1, lmv_stripe_count));
1892         LASSERTF((int)sizeof(((struct lmv_mds_md_v1 *)0)->lmv_stripe_count) == 4, "found %lld\n",
1893                  (long long)(int)sizeof(((struct lmv_mds_md_v1 *)0)->lmv_stripe_count));
1894         LASSERTF((int)offsetof(struct lmv_mds_md_v1, lmv_master_mdt_index) == 8, "found %lld\n",
1895                  (long long)(int)offsetof(struct lmv_mds_md_v1, lmv_master_mdt_index));
1896         LASSERTF((int)sizeof(((struct lmv_mds_md_v1 *)0)->lmv_master_mdt_index) == 4, "found %lld\n",
1897                  (long long)(int)sizeof(((struct lmv_mds_md_v1 *)0)->lmv_master_mdt_index));
1898         LASSERTF((int)offsetof(struct lmv_mds_md_v1, lmv_hash_type) == 12, "found %lld\n",
1899                  (long long)(int)offsetof(struct lmv_mds_md_v1, lmv_hash_type));
1900         LASSERTF((int)sizeof(((struct lmv_mds_md_v1 *)0)->lmv_hash_type) == 4, "found %lld\n",
1901                  (long long)(int)sizeof(((struct lmv_mds_md_v1 *)0)->lmv_hash_type));
1902         LASSERTF((int)offsetof(struct lmv_mds_md_v1, lmv_layout_version) == 16, "found %lld\n",
1903                  (long long)(int)offsetof(struct lmv_mds_md_v1, lmv_layout_version));
1904         LASSERTF((int)sizeof(((struct lmv_mds_md_v1 *)0)->lmv_layout_version) == 4, "found %lld\n",
1905                  (long long)(int)sizeof(((struct lmv_mds_md_v1 *)0)->lmv_layout_version));
1906         LASSERTF((int)offsetof(struct lmv_mds_md_v1, lmv_migrate_offset) == 20, "found %lld\n",
1907                  (long long)(int)offsetof(struct lmv_mds_md_v1, lmv_migrate_offset));
1908         LASSERTF((int)sizeof(((struct lmv_mds_md_v1 *)0)->lmv_migrate_offset) == 4, "found %lld\n",
1909                  (long long)(int)sizeof(((struct lmv_mds_md_v1 *)0)->lmv_migrate_offset));
1910         LASSERTF((int)offsetof(struct lmv_mds_md_v1, lmv_migrate_hash) == 24, "found %lld\n",
1911                  (long long)(int)offsetof(struct lmv_mds_md_v1, lmv_migrate_hash));
1912         LASSERTF((int)sizeof(((struct lmv_mds_md_v1 *)0)->lmv_migrate_hash) == 4, "found %lld\n",
1913                  (long long)(int)sizeof(((struct lmv_mds_md_v1 *)0)->lmv_migrate_hash));
1914         LASSERTF((int)offsetof(struct lmv_mds_md_v1, lmv_padding2) == 28, "found %lld\n",
1915                  (long long)(int)offsetof(struct lmv_mds_md_v1, lmv_padding2));
1916         LASSERTF((int)sizeof(((struct lmv_mds_md_v1 *)0)->lmv_padding2) == 4, "found %lld\n",
1917                  (long long)(int)sizeof(((struct lmv_mds_md_v1 *)0)->lmv_padding2));
1918         LASSERTF((int)offsetof(struct lmv_mds_md_v1, lmv_padding3) == 32, "found %lld\n",
1919                  (long long)(int)offsetof(struct lmv_mds_md_v1, lmv_padding3));
1920         LASSERTF((int)sizeof(((struct lmv_mds_md_v1 *)0)->lmv_padding3) == 8, "found %lld\n",
1921                  (long long)(int)sizeof(((struct lmv_mds_md_v1 *)0)->lmv_padding3));
1922         LASSERTF((int)offsetof(struct lmv_mds_md_v1, lmv_pool_name[15]) == 55, "found %lld\n",
1923                  (long long)(int)offsetof(struct lmv_mds_md_v1, lmv_pool_name[15]));
1924         LASSERTF((int)sizeof(((struct lmv_mds_md_v1 *)0)->lmv_pool_name[15]) == 1, "found %lld\n",
1925                  (long long)(int)sizeof(((struct lmv_mds_md_v1 *)0)->lmv_pool_name[15]));
1926         LASSERTF((int)offsetof(struct lmv_mds_md_v1, lmv_stripe_fids[0]) == 56, "found %lld\n",
1927                  (long long)(int)offsetof(struct lmv_mds_md_v1, lmv_stripe_fids[0]));
1928         LASSERTF((int)sizeof(((struct lmv_mds_md_v1 *)0)->lmv_stripe_fids[0]) == 16, "found %lld\n",
1929                  (long long)(int)sizeof(((struct lmv_mds_md_v1 *)0)->lmv_stripe_fids[0]));
1930         BUILD_BUG_ON(LMV_MAGIC_V1 != 0x0CD20CD0);
1931         BUILD_BUG_ON(LMV_MAGIC_STRIPE != 0x0CD40CD0);
1932         BUILD_BUG_ON(LMV_HASH_TYPE_MASK != 0x0000ffff);
1933         BUILD_BUG_ON(LMV_HASH_FLAG_LOST_LMV != 0x10000000);
1934         BUILD_BUG_ON(LMV_HASH_FLAG_BAD_TYPE != 0x20000000);
1935         BUILD_BUG_ON(LMV_HASH_FLAG_MIGRATION != 0x80000000);
1936         BUILD_BUG_ON(LMV_CRUSH_PG_COUNT != 4096);
1937
1938         /* Checks for struct obd_statfs */
1939         LASSERTF((int)sizeof(struct obd_statfs) == 144, "found %lld\n",
1940                  (long long)(int)sizeof(struct obd_statfs));
1941         LASSERTF((int)offsetof(struct obd_statfs, os_type) == 0, "found %lld\n",
1942                  (long long)(int)offsetof(struct obd_statfs, os_type));
1943         LASSERTF((int)sizeof(((struct obd_statfs *)0)->os_type) == 8, "found %lld\n",
1944                  (long long)(int)sizeof(((struct obd_statfs *)0)->os_type));
1945         LASSERTF((int)offsetof(struct obd_statfs, os_blocks) == 8, "found %lld\n",
1946                  (long long)(int)offsetof(struct obd_statfs, os_blocks));
1947         LASSERTF((int)sizeof(((struct obd_statfs *)0)->os_blocks) == 8, "found %lld\n",
1948                  (long long)(int)sizeof(((struct obd_statfs *)0)->os_blocks));
1949         LASSERTF((int)offsetof(struct obd_statfs, os_bfree) == 16, "found %lld\n",
1950                  (long long)(int)offsetof(struct obd_statfs, os_bfree));
1951         LASSERTF((int)sizeof(((struct obd_statfs *)0)->os_bfree) == 8, "found %lld\n",
1952                  (long long)(int)sizeof(((struct obd_statfs *)0)->os_bfree));
1953         LASSERTF((int)offsetof(struct obd_statfs, os_bavail) == 24, "found %lld\n",
1954                  (long long)(int)offsetof(struct obd_statfs, os_bavail));
1955         LASSERTF((int)sizeof(((struct obd_statfs *)0)->os_bavail) == 8, "found %lld\n",
1956                  (long long)(int)sizeof(((struct obd_statfs *)0)->os_bavail));
1957         LASSERTF((int)offsetof(struct obd_statfs, os_files) == 32, "found %lld\n",
1958                  (long long)(int)offsetof(struct obd_statfs, os_files));
1959         LASSERTF((int)sizeof(((struct obd_statfs *)0)->os_files) == 8, "found %lld\n",
1960                  (long long)(int)sizeof(((struct obd_statfs *)0)->os_files));
1961         LASSERTF((int)offsetof(struct obd_statfs, os_ffree) == 40, "found %lld\n",
1962                  (long long)(int)offsetof(struct obd_statfs, os_ffree));
1963         LASSERTF((int)sizeof(((struct obd_statfs *)0)->os_ffree) == 8, "found %lld\n",
1964                  (long long)(int)sizeof(((struct obd_statfs *)0)->os_ffree));
1965         LASSERTF((int)offsetof(struct obd_statfs, os_fsid) == 48, "found %lld\n",
1966                  (long long)(int)offsetof(struct obd_statfs, os_fsid));
1967         LASSERTF((int)sizeof(((struct obd_statfs *)0)->os_fsid) == 40, "found %lld\n",
1968                  (long long)(int)sizeof(((struct obd_statfs *)0)->os_fsid));
1969         LASSERTF((int)offsetof(struct obd_statfs, os_bsize) == 88, "found %lld\n",
1970                  (long long)(int)offsetof(struct obd_statfs, os_bsize));
1971         LASSERTF((int)sizeof(((struct obd_statfs *)0)->os_bsize) == 4, "found %lld\n",
1972                  (long long)(int)sizeof(((struct obd_statfs *)0)->os_bsize));
1973         LASSERTF((int)offsetof(struct obd_statfs, os_namelen) == 92, "found %lld\n",
1974                  (long long)(int)offsetof(struct obd_statfs, os_namelen));
1975         LASSERTF((int)sizeof(((struct obd_statfs *)0)->os_namelen) == 4, "found %lld\n",
1976                  (long long)(int)sizeof(((struct obd_statfs *)0)->os_namelen));
1977         LASSERTF((int)offsetof(struct obd_statfs, os_maxbytes) == 96, "found %lld\n",
1978                  (long long)(int)offsetof(struct obd_statfs, os_maxbytes));
1979         LASSERTF((int)sizeof(((struct obd_statfs *)0)->os_maxbytes) == 8, "found %lld\n",
1980                  (long long)(int)sizeof(((struct obd_statfs *)0)->os_maxbytes));
1981         LASSERTF((int)offsetof(struct obd_statfs, os_state) == 104, "found %lld\n",
1982                  (long long)(int)offsetof(struct obd_statfs, os_state));
1983         LASSERTF((int)sizeof(((struct obd_statfs *)0)->os_state) == 4, "found %lld\n",
1984                  (long long)(int)sizeof(((struct obd_statfs *)0)->os_state));
1985         LASSERTF((int)offsetof(struct obd_statfs, os_fprecreated) == 108, "found %lld\n",
1986                  (long long)(int)offsetof(struct obd_statfs, os_fprecreated));
1987         LASSERTF((int)sizeof(((struct obd_statfs *)0)->os_fprecreated) == 4, "found %lld\n",
1988                  (long long)(int)sizeof(((struct obd_statfs *)0)->os_fprecreated));
1989         LASSERTF((int)offsetof(struct obd_statfs, os_granted) == 112, "found %lld\n",
1990                  (long long)(int)offsetof(struct obd_statfs, os_granted));
1991         LASSERTF((int)sizeof(((struct obd_statfs *)0)->os_granted) == 4, "found %lld\n",
1992                  (long long)(int)sizeof(((struct obd_statfs *)0)->os_granted));
1993         LASSERTF((int)offsetof(struct obd_statfs, os_spare3) == 116, "found %lld\n",
1994                  (long long)(int)offsetof(struct obd_statfs, os_spare3));
1995         LASSERTF((int)sizeof(((struct obd_statfs *)0)->os_spare3) == 4, "found %lld\n",
1996                  (long long)(int)sizeof(((struct obd_statfs *)0)->os_spare3));
1997         LASSERTF((int)offsetof(struct obd_statfs, os_spare4) == 120, "found %lld\n",
1998                  (long long)(int)offsetof(struct obd_statfs, os_spare4));
1999         LASSERTF((int)sizeof(((struct obd_statfs *)0)->os_spare4) == 4, "found %lld\n",
2000                  (long long)(int)sizeof(((struct obd_statfs *)0)->os_spare4));
2001         LASSERTF((int)offsetof(struct obd_statfs, os_spare5) == 124, "found %lld\n",
2002                  (long long)(int)offsetof(struct obd_statfs, os_spare5));
2003         LASSERTF((int)sizeof(((struct obd_statfs *)0)->os_spare5) == 4, "found %lld\n",
2004                  (long long)(int)sizeof(((struct obd_statfs *)0)->os_spare5));
2005         LASSERTF((int)offsetof(struct obd_statfs, os_spare6) == 128, "found %lld\n",
2006                  (long long)(int)offsetof(struct obd_statfs, os_spare6));
2007         LASSERTF((int)sizeof(((struct obd_statfs *)0)->os_spare6) == 4, "found %lld\n",
2008                  (long long)(int)sizeof(((struct obd_statfs *)0)->os_spare6));
2009         LASSERTF((int)offsetof(struct obd_statfs, os_spare7) == 132, "found %lld\n",
2010                  (long long)(int)offsetof(struct obd_statfs, os_spare7));
2011         LASSERTF((int)sizeof(((struct obd_statfs *)0)->os_spare7) == 4, "found %lld\n",
2012                  (long long)(int)sizeof(((struct obd_statfs *)0)->os_spare7));
2013         LASSERTF((int)offsetof(struct obd_statfs, os_spare8) == 136, "found %lld\n",
2014                  (long long)(int)offsetof(struct obd_statfs, os_spare8));
2015         LASSERTF((int)sizeof(((struct obd_statfs *)0)->os_spare8) == 4, "found %lld\n",
2016                  (long long)(int)sizeof(((struct obd_statfs *)0)->os_spare8));
2017         LASSERTF((int)offsetof(struct obd_statfs, os_spare9) == 140, "found %lld\n",
2018                  (long long)(int)offsetof(struct obd_statfs, os_spare9));
2019         LASSERTF((int)sizeof(((struct obd_statfs *)0)->os_spare9) == 4, "found %lld\n",
2020                  (long long)(int)sizeof(((struct obd_statfs *)0)->os_spare9));
2021         LASSERTF(OS_STATE_DEGRADED == 0x00000001UL, "found 0x%.8xUL\n",
2022                 (unsigned)OS_STATE_DEGRADED);
2023         LASSERTF(OS_STATE_READONLY == 0x00000002UL, "found 0x%.8xUL\n",
2024                 (unsigned)OS_STATE_READONLY);
2025         LASSERTF(OS_STATE_NOPRECREATE == 0x00000004UL, "found 0x%.8xUL\n",
2026                 (unsigned)OS_STATE_NOPRECREATE);
2027         LASSERTF(OS_STATE_ENOSPC == 0x00000020UL, "found 0x%.8xUL\n",
2028                 (unsigned)OS_STATE_ENOSPC);
2029         LASSERTF(OS_STATE_ENOINO == 0x00000040UL, "found 0x%.8xUL\n",
2030                 (unsigned)OS_STATE_ENOINO);
2031         LASSERTF(OS_STATE_SUM == 0x00000100UL, "found 0x%.8xUL\n",
2032                 (unsigned)OS_STATE_SUM);
2033         LASSERTF(OS_STATE_NONROT == 0x00000200UL, "found 0x%.8xUL\n",
2034                 (unsigned)OS_STATE_NONROT);
2035
2036         /* Checks for struct obd_ioobj */
2037         LASSERTF((int)sizeof(struct obd_ioobj) == 24, "found %lld\n",
2038                  (long long)(int)sizeof(struct obd_ioobj));
2039         LASSERTF((int)offsetof(struct obd_ioobj, ioo_oid) == 0, "found %lld\n",
2040                  (long long)(int)offsetof(struct obd_ioobj, ioo_oid));
2041         LASSERTF((int)sizeof(((struct obd_ioobj *)0)->ioo_oid) == 16, "found %lld\n",
2042                  (long long)(int)sizeof(((struct obd_ioobj *)0)->ioo_oid));
2043         LASSERTF((int)offsetof(struct obd_ioobj, ioo_max_brw) == 16, "found %lld\n",
2044                  (long long)(int)offsetof(struct obd_ioobj, ioo_max_brw));
2045         LASSERTF((int)sizeof(((struct obd_ioobj *)0)->ioo_max_brw) == 4, "found %lld\n",
2046                  (long long)(int)sizeof(((struct obd_ioobj *)0)->ioo_max_brw));
2047         LASSERTF((int)offsetof(struct obd_ioobj, ioo_bufcnt) == 20, "found %lld\n",
2048                  (long long)(int)offsetof(struct obd_ioobj, ioo_bufcnt));
2049         LASSERTF((int)sizeof(((struct obd_ioobj *)0)->ioo_bufcnt) == 4, "found %lld\n",
2050                  (long long)(int)sizeof(((struct obd_ioobj *)0)->ioo_bufcnt));
2051         LASSERTF(IOOBJ_MAX_BRW_BITS == 16, "found %lld\n",
2052                  (long long)IOOBJ_MAX_BRW_BITS);
2053
2054         /* Checks for union lquota_id */
2055         LASSERTF((int)sizeof(union lquota_id) == 16, "found %lld\n",
2056                  (long long)(int)sizeof(union lquota_id));
2057
2058         LASSERTF(QUOTABLOCK_BITS == 10, "found %lld\n",
2059                  (long long)QUOTABLOCK_BITS);
2060         LASSERTF(QUOTABLOCK_SIZE == 1024, "found %lld\n",
2061                  (long long)QUOTABLOCK_SIZE);
2062
2063         /* Checks for struct obd_quotactl */
2064         LASSERTF((int)sizeof(struct obd_quotactl) == 112, "found %lld\n",
2065                  (long long)(int)sizeof(struct obd_quotactl));
2066         LASSERTF((int)offsetof(struct obd_quotactl, qc_cmd) == 0, "found %lld\n",
2067                  (long long)(int)offsetof(struct obd_quotactl, qc_cmd));
2068         LASSERTF((int)sizeof(((struct obd_quotactl *)0)->qc_cmd) == 4, "found %lld\n",
2069                  (long long)(int)sizeof(((struct obd_quotactl *)0)->qc_cmd));
2070         LASSERTF((int)offsetof(struct obd_quotactl, qc_type) == 4, "found %lld\n",
2071                  (long long)(int)offsetof(struct obd_quotactl, qc_type));
2072         LASSERTF((int)sizeof(((struct obd_quotactl *)0)->qc_type) == 4, "found %lld\n",
2073                  (long long)(int)sizeof(((struct obd_quotactl *)0)->qc_type));
2074         LASSERTF((int)offsetof(struct obd_quotactl, qc_id) == 8, "found %lld\n",
2075                  (long long)(int)offsetof(struct obd_quotactl, qc_id));
2076         LASSERTF((int)sizeof(((struct obd_quotactl *)0)->qc_id) == 4, "found %lld\n",
2077                  (long long)(int)sizeof(((struct obd_quotactl *)0)->qc_id));
2078         LASSERTF((int)offsetof(struct obd_quotactl, qc_stat) == 12, "found %lld\n",
2079                  (long long)(int)offsetof(struct obd_quotactl, qc_stat));
2080         LASSERTF((int)sizeof(((struct obd_quotactl *)0)->qc_stat) == 4, "found %lld\n",
2081                  (long long)(int)sizeof(((struct obd_quotactl *)0)->qc_stat));
2082         LASSERTF((int)offsetof(struct obd_quotactl, qc_dqinfo) == 16, "found %lld\n",
2083                  (long long)(int)offsetof(struct obd_quotactl, qc_dqinfo));
2084         LASSERTF((int)sizeof(((struct obd_quotactl *)0)->qc_dqinfo) == 24, "found %lld\n",
2085                  (long long)(int)sizeof(((struct obd_quotactl *)0)->qc_dqinfo));
2086         LASSERTF((int)offsetof(struct obd_quotactl, qc_dqblk) == 40, "found %lld\n",
2087                  (long long)(int)offsetof(struct obd_quotactl, qc_dqblk));
2088         LASSERTF((int)sizeof(((struct obd_quotactl *)0)->qc_dqblk) == 72, "found %lld\n",
2089                  (long long)(int)sizeof(((struct obd_quotactl *)0)->qc_dqblk));
2090
2091         /* Checks for struct obd_dqinfo */
2092         LASSERTF((int)sizeof(struct obd_dqinfo) == 24, "found %lld\n",
2093                  (long long)(int)sizeof(struct obd_dqinfo));
2094         LASSERTF((int)offsetof(struct obd_dqinfo, dqi_bgrace) == 0, "found %lld\n",
2095                  (long long)(int)offsetof(struct obd_dqinfo, dqi_bgrace));
2096         LASSERTF((int)sizeof(((struct obd_dqinfo *)0)->dqi_bgrace) == 8, "found %lld\n",
2097                  (long long)(int)sizeof(((struct obd_dqinfo *)0)->dqi_bgrace));
2098         LASSERTF((int)offsetof(struct obd_dqinfo, dqi_igrace) == 8, "found %lld\n",
2099                  (long long)(int)offsetof(struct obd_dqinfo, dqi_igrace));
2100         LASSERTF((int)sizeof(((struct obd_dqinfo *)0)->dqi_igrace) == 8, "found %lld\n",
2101                  (long long)(int)sizeof(((struct obd_dqinfo *)0)->dqi_igrace));
2102         LASSERTF((int)offsetof(struct obd_dqinfo, dqi_flags) == 16, "found %lld\n",
2103                  (long long)(int)offsetof(struct obd_dqinfo, dqi_flags));
2104         LASSERTF((int)sizeof(((struct obd_dqinfo *)0)->dqi_flags) == 4, "found %lld\n",
2105                  (long long)(int)sizeof(((struct obd_dqinfo *)0)->dqi_flags));
2106         LASSERTF((int)offsetof(struct obd_dqinfo, dqi_valid) == 20, "found %lld\n",
2107                  (long long)(int)offsetof(struct obd_dqinfo, dqi_valid));
2108         LASSERTF((int)sizeof(((struct obd_dqinfo *)0)->dqi_valid) == 4, "found %lld\n",
2109                  (long long)(int)sizeof(((struct obd_dqinfo *)0)->dqi_valid));
2110
2111         /* Checks for struct obd_dqblk */
2112         LASSERTF((int)sizeof(struct obd_dqblk) == 72, "found %lld\n",
2113                  (long long)(int)sizeof(struct obd_dqblk));
2114         LASSERTF((int)offsetof(struct obd_dqblk, dqb_bhardlimit) == 0, "found %lld\n",
2115                  (long long)(int)offsetof(struct obd_dqblk, dqb_bhardlimit));
2116         LASSERTF((int)sizeof(((struct obd_dqblk *)0)->dqb_bhardlimit) == 8, "found %lld\n",
2117                  (long long)(int)sizeof(((struct obd_dqblk *)0)->dqb_bhardlimit));
2118         LASSERTF((int)offsetof(struct obd_dqblk, dqb_bsoftlimit) == 8, "found %lld\n",
2119                  (long long)(int)offsetof(struct obd_dqblk, dqb_bsoftlimit));
2120         LASSERTF((int)sizeof(((struct obd_dqblk *)0)->dqb_bsoftlimit) == 8, "found %lld\n",
2121                  (long long)(int)sizeof(((struct obd_dqblk *)0)->dqb_bsoftlimit));
2122         LASSERTF((int)offsetof(struct obd_dqblk, dqb_curspace) == 16, "found %lld\n",
2123                  (long long)(int)offsetof(struct obd_dqblk, dqb_curspace));
2124         LASSERTF((int)sizeof(((struct obd_dqblk *)0)->dqb_curspace) == 8, "found %lld\n",
2125                  (long long)(int)sizeof(((struct obd_dqblk *)0)->dqb_curspace));
2126         LASSERTF((int)offsetof(struct obd_dqblk, dqb_ihardlimit) == 24, "found %lld\n",
2127                  (long long)(int)offsetof(struct obd_dqblk, dqb_ihardlimit));
2128         LASSERTF((int)sizeof(((struct obd_dqblk *)0)->dqb_ihardlimit) == 8, "found %lld\n",
2129                  (long long)(int)sizeof(((struct obd_dqblk *)0)->dqb_ihardlimit));
2130         LASSERTF((int)offsetof(struct obd_dqblk, dqb_isoftlimit) == 32, "found %lld\n",
2131                  (long long)(int)offsetof(struct obd_dqblk, dqb_isoftlimit));
2132         LASSERTF((int)sizeof(((struct obd_dqblk *)0)->dqb_isoftlimit) == 8, "found %lld\n",
2133                  (long long)(int)sizeof(((struct obd_dqblk *)0)->dqb_isoftlimit));
2134         LASSERTF((int)offsetof(struct obd_dqblk, dqb_curinodes) == 40, "found %lld\n",
2135                  (long long)(int)offsetof(struct obd_dqblk, dqb_curinodes));
2136         LASSERTF((int)sizeof(((struct obd_dqblk *)0)->dqb_curinodes) == 8, "found %lld\n",
2137                  (long long)(int)sizeof(((struct obd_dqblk *)0)->dqb_curinodes));
2138         LASSERTF((int)offsetof(struct obd_dqblk, dqb_btime) == 48, "found %lld\n",
2139                  (long long)(int)offsetof(struct obd_dqblk, dqb_btime));
2140         LASSERTF((int)sizeof(((struct obd_dqblk *)0)->dqb_btime) == 8, "found %lld\n",
2141                  (long long)(int)sizeof(((struct obd_dqblk *)0)->dqb_btime));
2142         LASSERTF((int)offsetof(struct obd_dqblk, dqb_itime) == 56, "found %lld\n",
2143                  (long long)(int)offsetof(struct obd_dqblk, dqb_itime));
2144         LASSERTF((int)sizeof(((struct obd_dqblk *)0)->dqb_itime) == 8, "found %lld\n",
2145                  (long long)(int)sizeof(((struct obd_dqblk *)0)->dqb_itime));
2146         LASSERTF((int)offsetof(struct obd_dqblk, dqb_valid) == 64, "found %lld\n",
2147                  (long long)(int)offsetof(struct obd_dqblk, dqb_valid));
2148         LASSERTF((int)sizeof(((struct obd_dqblk *)0)->dqb_valid) == 4, "found %lld\n",
2149                  (long long)(int)sizeof(((struct obd_dqblk *)0)->dqb_valid));
2150         LASSERTF((int)offsetof(struct obd_dqblk, dqb_padding) == 68, "found %lld\n",
2151                  (long long)(int)offsetof(struct obd_dqblk, dqb_padding));
2152         LASSERTF((int)sizeof(((struct obd_dqblk *)0)->dqb_padding) == 4, "found %lld\n",
2153                  (long long)(int)sizeof(((struct obd_dqblk *)0)->dqb_padding));
2154         LASSERTF(Q_QUOTACHECK == 0x800100, "found 0x%.8x\n",
2155                 Q_QUOTACHECK);
2156         LASSERTF(Q_INITQUOTA == 0x800101, "found 0x%.8x\n",
2157                 Q_INITQUOTA);
2158         LASSERTF(Q_GETOINFO == 0x800102, "found 0x%.8x\n",
2159                 Q_GETOINFO);
2160         LASSERTF(Q_GETOQUOTA == 0x800103, "found 0x%.8x\n",
2161                 Q_GETOQUOTA);
2162         LASSERTF(Q_FINVALIDATE == 0x800104, "found 0x%.8x\n",
2163                 Q_FINVALIDATE);
2164
2165         /* Checks for struct lquota_acct_rec */
2166         LASSERTF((int)sizeof(struct lquota_acct_rec) == 16, "found %lld\n",
2167                  (long long)(int)sizeof(struct lquota_acct_rec));
2168         LASSERTF((int)offsetof(struct lquota_acct_rec, bspace) == 0, "found %lld\n",
2169                  (long long)(int)offsetof(struct lquota_acct_rec, bspace));
2170         LASSERTF((int)sizeof(((struct lquota_acct_rec *)0)->bspace) == 8, "found %lld\n",
2171                  (long long)(int)sizeof(((struct lquota_acct_rec *)0)->bspace));
2172         LASSERTF((int)offsetof(struct lquota_acct_rec, ispace) == 8, "found %lld\n",
2173                  (long long)(int)offsetof(struct lquota_acct_rec, ispace));
2174         LASSERTF((int)sizeof(((struct lquota_acct_rec *)0)->ispace) == 8, "found %lld\n",
2175                  (long long)(int)sizeof(((struct lquota_acct_rec *)0)->ispace));
2176
2177         /* Checks for struct lquota_glb_rec */
2178         LASSERTF((int)sizeof(struct lquota_glb_rec) == 32, "found %lld\n",
2179                  (long long)(int)sizeof(struct lquota_glb_rec));
2180         LASSERTF((int)offsetof(struct lquota_glb_rec, qbr_hardlimit) == 0, "found %lld\n",
2181                  (long long)(int)offsetof(struct lquota_glb_rec, qbr_hardlimit));
2182         LASSERTF((int)sizeof(((struct lquota_glb_rec *)0)->qbr_hardlimit) == 8, "found %lld\n",
2183                  (long long)(int)sizeof(((struct lquota_glb_rec *)0)->qbr_hardlimit));
2184         LASSERTF((int)offsetof(struct lquota_glb_rec, qbr_softlimit) == 8, "found %lld\n",
2185                  (long long)(int)offsetof(struct lquota_glb_rec, qbr_softlimit));
2186         LASSERTF((int)sizeof(((struct lquota_glb_rec *)0)->qbr_softlimit) == 8, "found %lld\n",
2187                  (long long)(int)sizeof(((struct lquota_glb_rec *)0)->qbr_softlimit));
2188         LASSERTF((int)offsetof(struct lquota_glb_rec, qbr_time) == 16, "found %lld\n",
2189                  (long long)(int)offsetof(struct lquota_glb_rec, qbr_time));
2190         LASSERTF((int)sizeof(((struct lquota_glb_rec *)0)->qbr_time) == 8, "found %lld\n",
2191                  (long long)(int)sizeof(((struct lquota_glb_rec *)0)->qbr_time));
2192         LASSERTF((int)offsetof(struct lquota_glb_rec, qbr_granted) == 24, "found %lld\n",
2193                  (long long)(int)offsetof(struct lquota_glb_rec, qbr_granted));
2194         LASSERTF((int)sizeof(((struct lquota_glb_rec *)0)->qbr_granted) == 8, "found %lld\n",
2195                  (long long)(int)sizeof(((struct lquota_glb_rec *)0)->qbr_granted));
2196
2197         /* Checks for struct lquota_slv_rec */
2198         LASSERTF((int)sizeof(struct lquota_slv_rec) == 8, "found %lld\n",
2199                  (long long)(int)sizeof(struct lquota_slv_rec));
2200         LASSERTF((int)offsetof(struct lquota_slv_rec, qsr_granted) == 0, "found %lld\n",
2201                  (long long)(int)offsetof(struct lquota_slv_rec, qsr_granted));
2202         LASSERTF((int)sizeof(((struct lquota_slv_rec *)0)->qsr_granted) == 8, "found %lld\n",
2203                  (long long)(int)sizeof(((struct lquota_slv_rec *)0)->qsr_granted));
2204
2205         /* Checks for struct idx_info */
2206         LASSERTF((int)sizeof(struct idx_info) == 80, "found %lld\n",
2207                  (long long)(int)sizeof(struct idx_info));
2208         LASSERTF((int)offsetof(struct idx_info, ii_magic) == 0, "found %lld\n",
2209                  (long long)(int)offsetof(struct idx_info, ii_magic));
2210         LASSERTF((int)sizeof(((struct idx_info *)0)->ii_magic) == 4, "found %lld\n",
2211                  (long long)(int)sizeof(((struct idx_info *)0)->ii_magic));
2212         LASSERTF((int)offsetof(struct idx_info, ii_flags) == 4, "found %lld\n",
2213                  (long long)(int)offsetof(struct idx_info, ii_flags));
2214         LASSERTF((int)sizeof(((struct idx_info *)0)->ii_flags) == 4, "found %lld\n",
2215                  (long long)(int)sizeof(((struct idx_info *)0)->ii_flags));
2216         LASSERTF((int)offsetof(struct idx_info, ii_count) == 8, "found %lld\n",
2217                  (long long)(int)offsetof(struct idx_info, ii_count));
2218         LASSERTF((int)sizeof(((struct idx_info *)0)->ii_count) == 2, "found %lld\n",
2219                  (long long)(int)sizeof(((struct idx_info *)0)->ii_count));
2220         LASSERTF((int)offsetof(struct idx_info, ii_pad0) == 10, "found %lld\n",
2221                  (long long)(int)offsetof(struct idx_info, ii_pad0));
2222         LASSERTF((int)sizeof(((struct idx_info *)0)->ii_pad0) == 2, "found %lld\n",
2223                  (long long)(int)sizeof(((struct idx_info *)0)->ii_pad0));
2224         LASSERTF((int)offsetof(struct idx_info, ii_attrs) == 12, "found %lld\n",
2225                  (long long)(int)offsetof(struct idx_info, ii_attrs));
2226         LASSERTF((int)sizeof(((struct idx_info *)0)->ii_attrs) == 4, "found %lld\n",
2227                  (long long)(int)sizeof(((struct idx_info *)0)->ii_attrs));
2228         LASSERTF((int)offsetof(struct idx_info, ii_fid) == 16, "found %lld\n",
2229                  (long long)(int)offsetof(struct idx_info, ii_fid));
2230         LASSERTF((int)sizeof(((struct idx_info *)0)->ii_fid) == 16, "found %lld\n",
2231                  (long long)(int)sizeof(((struct idx_info *)0)->ii_fid));
2232         LASSERTF((int)offsetof(struct idx_info, ii_version) == 32, "found %lld\n",
2233                  (long long)(int)offsetof(struct idx_info, ii_version));
2234         LASSERTF((int)sizeof(((struct idx_info *)0)->ii_version) == 8, "found %lld\n",
2235                  (long long)(int)sizeof(((struct idx_info *)0)->ii_version));
2236         LASSERTF((int)offsetof(struct idx_info, ii_hash_start) == 40, "found %lld\n",
2237                  (long long)(int)offsetof(struct idx_info, ii_hash_start));
2238         LASSERTF((int)sizeof(((struct idx_info *)0)->ii_hash_start) == 8, "found %lld\n",
2239                  (long long)(int)sizeof(((struct idx_info *)0)->ii_hash_start));
2240         LASSERTF((int)offsetof(struct idx_info, ii_hash_end) == 48, "found %lld\n",
2241                  (long long)(int)offsetof(struct idx_info, ii_hash_end));
2242         LASSERTF((int)sizeof(((struct idx_info *)0)->ii_hash_end) == 8, "found %lld\n",
2243                  (long long)(int)sizeof(((struct idx_info *)0)->ii_hash_end));
2244         LASSERTF((int)offsetof(struct idx_info, ii_keysize) == 56, "found %lld\n",
2245                  (long long)(int)offsetof(struct idx_info, ii_keysize));
2246         LASSERTF((int)sizeof(((struct idx_info *)0)->ii_keysize) == 2, "found %lld\n",
2247                  (long long)(int)sizeof(((struct idx_info *)0)->ii_keysize));
2248         LASSERTF((int)offsetof(struct idx_info, ii_recsize) == 58, "found %lld\n",
2249                  (long long)(int)offsetof(struct idx_info, ii_recsize));
2250         LASSERTF((int)sizeof(((struct idx_info *)0)->ii_recsize) == 2, "found %lld\n",
2251                  (long long)(int)sizeof(((struct idx_info *)0)->ii_recsize));
2252         LASSERTF((int)offsetof(struct idx_info, ii_pad1) == 60, "found %lld\n",
2253                  (long long)(int)offsetof(struct idx_info, ii_pad1));
2254         LASSERTF((int)sizeof(((struct idx_info *)0)->ii_pad1) == 4, "found %lld\n",
2255                  (long long)(int)sizeof(((struct idx_info *)0)->ii_pad1));
2256         LASSERTF((int)offsetof(struct idx_info, ii_pad2) == 64, "found %lld\n",
2257                  (long long)(int)offsetof(struct idx_info, ii_pad2));
2258         LASSERTF((int)sizeof(((struct idx_info *)0)->ii_pad2) == 8, "found %lld\n",
2259                  (long long)(int)sizeof(((struct idx_info *)0)->ii_pad2));
2260         LASSERTF((int)offsetof(struct idx_info, ii_pad3) == 72, "found %lld\n",
2261                  (long long)(int)offsetof(struct idx_info, ii_pad3));
2262         LASSERTF((int)sizeof(((struct idx_info *)0)->ii_pad3) == 8, "found %lld\n",
2263                  (long long)(int)sizeof(((struct idx_info *)0)->ii_pad3));
2264         BUILD_BUG_ON(IDX_INFO_MAGIC != 0x3D37CC37);
2265
2266         /* Checks for struct lu_idxpage */
2267         LASSERTF((int)sizeof(struct lu_idxpage) == 16, "found %lld\n",
2268                  (long long)(int)sizeof(struct lu_idxpage));
2269         LASSERTF((int)offsetof(struct lu_idxpage, lip_magic) == 0, "found %lld\n",
2270                  (long long)(int)offsetof(struct lu_idxpage, lip_magic));
2271         LASSERTF((int)sizeof(((struct lu_idxpage *)0)->lip_magic) == 4, "found %lld\n",
2272                  (long long)(int)sizeof(((struct lu_idxpage *)0)->lip_magic));
2273         LASSERTF((int)offsetof(struct lu_idxpage, lip_flags) == 4, "found %lld\n",
2274                  (long long)(int)offsetof(struct lu_idxpage, lip_flags));
2275         LASSERTF((int)sizeof(((struct lu_idxpage *)0)->lip_flags) == 2, "found %lld\n",
2276                  (long long)(int)sizeof(((struct lu_idxpage *)0)->lip_flags));
2277         LASSERTF((int)offsetof(struct lu_idxpage, lip_nr) == 6, "found %lld\n",
2278                  (long long)(int)offsetof(struct lu_idxpage, lip_nr));
2279         LASSERTF((int)sizeof(((struct lu_idxpage *)0)->lip_nr) == 2, "found %lld\n",
2280                  (long long)(int)sizeof(((struct lu_idxpage *)0)->lip_nr));
2281         LASSERTF((int)offsetof(struct lu_idxpage, lip_pad0) == 8, "found %lld\n",
2282                  (long long)(int)offsetof(struct lu_idxpage, lip_pad0));
2283         LASSERTF((int)sizeof(((struct lu_idxpage *)0)->lip_pad0) == 8, "found %lld\n",
2284                  (long long)(int)sizeof(((struct lu_idxpage *)0)->lip_pad0));
2285         BUILD_BUG_ON(LIP_MAGIC != 0x8A6D6B6C);
2286         BUILD_BUG_ON(LIP_HDR_SIZE != (__builtin_offsetof (struct lu_idxpage, lip_entries)));
2287         BUILD_BUG_ON(II_FL_NOHASH != 0x00000001);
2288         BUILD_BUG_ON(II_FL_VARKEY != 0x00000002);
2289         BUILD_BUG_ON(II_FL_VARREC != 0x00000004);
2290         BUILD_BUG_ON(II_FL_NONUNQ != 0x00000008);
2291         BUILD_BUG_ON(II_FL_NOKEY != 0x00000010);
2292
2293         /* Checks for struct niobuf_remote */
2294         LASSERTF((int)sizeof(struct niobuf_remote) == 16, "found %lld\n",
2295                  (long long)(int)sizeof(struct niobuf_remote));
2296         LASSERTF((int)offsetof(struct niobuf_remote, rnb_offset) == 0, "found %lld\n",
2297                  (long long)(int)offsetof(struct niobuf_remote, rnb_offset));
2298         LASSERTF((int)sizeof(((struct niobuf_remote *)0)->rnb_offset) == 8, "found %lld\n",
2299                  (long long)(int)sizeof(((struct niobuf_remote *)0)->rnb_offset));
2300         LASSERTF((int)offsetof(struct niobuf_remote, rnb_len) == 8, "found %lld\n",
2301                  (long long)(int)offsetof(struct niobuf_remote, rnb_len));
2302         LASSERTF((int)sizeof(((struct niobuf_remote *)0)->rnb_len) == 4, "found %lld\n",
2303                  (long long)(int)sizeof(((struct niobuf_remote *)0)->rnb_len));
2304         LASSERTF((int)offsetof(struct niobuf_remote, rnb_flags) == 12, "found %lld\n",
2305                  (long long)(int)offsetof(struct niobuf_remote, rnb_flags));
2306         LASSERTF((int)sizeof(((struct niobuf_remote *)0)->rnb_flags) == 4, "found %lld\n",
2307                  (long long)(int)sizeof(((struct niobuf_remote *)0)->rnb_flags));
2308         LASSERTF(OBD_BRW_READ == 0x01, "found 0x%.8x\n",
2309                 OBD_BRW_READ);
2310         LASSERTF(OBD_BRW_WRITE == 0x02, "found 0x%.8x\n",
2311                 OBD_BRW_WRITE);
2312         LASSERTF(OBD_BRW_NDELAY == 0x04, "found 0x%.8x\n",
2313                 OBD_BRW_NDELAY);
2314         LASSERTF(OBD_BRW_SYNC == 0x08, "found 0x%.8x\n",
2315                 OBD_BRW_SYNC);
2316         LASSERTF(OBD_BRW_CHECK == 0x10, "found 0x%.8x\n",
2317                 OBD_BRW_CHECK);
2318         LASSERTF(OBD_BRW_FROM_GRANT == 0x20, "found 0x%.8x\n",
2319                 OBD_BRW_FROM_GRANT);
2320         LASSERTF(OBD_BRW_GRANTED == 0x40, "found 0x%.8x\n",
2321                 OBD_BRW_GRANTED);
2322         LASSERTF(OBD_BRW_NOCACHE == 0x80, "found 0x%.8x\n",
2323                 OBD_BRW_NOCACHE);
2324         LASSERTF(OBD_BRW_NOQUOTA == 0x100, "found 0x%.8x\n",
2325                 OBD_BRW_NOQUOTA);
2326         LASSERTF(OBD_BRW_SRVLOCK == 0x200, "found 0x%.8x\n",
2327                 OBD_BRW_SRVLOCK);
2328         LASSERTF(OBD_BRW_ASYNC == 0x400, "found 0x%.8x\n",
2329                 OBD_BRW_ASYNC);
2330         LASSERTF(OBD_BRW_MEMALLOC == 0x800, "found 0x%.8x\n",
2331                 OBD_BRW_MEMALLOC);
2332         LASSERTF(OBD_BRW_OVER_USRQUOTA == 0x1000, "found 0x%.8x\n",
2333                 OBD_BRW_OVER_USRQUOTA);
2334         LASSERTF(OBD_BRW_OVER_GRPQUOTA == 0x2000, "found 0x%.8x\n",
2335                 OBD_BRW_OVER_GRPQUOTA);
2336         LASSERTF(OBD_BRW_SOFT_SYNC == 0x4000, "found 0x%.8x\n",
2337                 OBD_BRW_SOFT_SYNC);
2338         LASSERTF(OBD_BRW_OVER_PRJQUOTA == 0x8000, "found 0x%.8x\n",
2339                 OBD_BRW_OVER_PRJQUOTA);
2340         LASSERTF(OBD_BRW_RDMA_ONLY == 0x20000, "found 0x%.8x\n",
2341                 OBD_BRW_RDMA_ONLY);
2342
2343         /* Checks for struct ost_body */
2344         LASSERTF((int)sizeof(struct ost_body) == 208, "found %lld\n",
2345                  (long long)(int)sizeof(struct ost_body));
2346         LASSERTF((int)offsetof(struct ost_body, oa) == 0, "found %lld\n",
2347                  (long long)(int)offsetof(struct ost_body, oa));
2348         LASSERTF((int)sizeof(((struct ost_body *)0)->oa) == 208, "found %lld\n",
2349                  (long long)(int)sizeof(((struct ost_body *)0)->oa));
2350
2351         /* Checks for struct ll_fid */
2352         LASSERTF((int)sizeof(struct ll_fid) == 16, "found %lld\n",
2353                  (long long)(int)sizeof(struct ll_fid));
2354         LASSERTF((int)offsetof(struct ll_fid, id) == 0, "found %lld\n",
2355                  (long long)(int)offsetof(struct ll_fid, id));
2356         LASSERTF((int)sizeof(((struct ll_fid *)0)->id) == 8, "found %lld\n",
2357                  (long long)(int)sizeof(((struct ll_fid *)0)->id));
2358         LASSERTF((int)offsetof(struct ll_fid, generation) == 8, "found %lld\n",
2359                  (long long)(int)offsetof(struct ll_fid, generation));
2360         LASSERTF((int)sizeof(((struct ll_fid *)0)->generation) == 4, "found %lld\n",
2361                  (long long)(int)sizeof(((struct ll_fid *)0)->generation));
2362         LASSERTF((int)offsetof(struct ll_fid, f_type) == 12, "found %lld\n",
2363                  (long long)(int)offsetof(struct ll_fid, f_type));
2364         LASSERTF((int)sizeof(((struct ll_fid *)0)->f_type) == 4, "found %lld\n",
2365                  (long long)(int)sizeof(((struct ll_fid *)0)->f_type));
2366
2367         LASSERTF(MDS_CROSS_REF == 0x00000002UL, "found 0x%.8xUL\n",
2368                 (unsigned)MDS_CROSS_REF);
2369         LASSERTF(MDS_PERM_BYPASS == 0x00000008UL, "found 0x%.8xUL\n",
2370                 (unsigned)MDS_PERM_BYPASS);
2371         LASSERTF(MDS_QUOTA_IGNORE == 0x00000020UL, "found 0x%.8xUL\n",
2372                 (unsigned)MDS_QUOTA_IGNORE);
2373         LASSERTF(MDS_KEEP_ORPHAN == 0x00000080UL, "found 0x%.8xUL\n",
2374                 (unsigned)MDS_KEEP_ORPHAN);
2375         LASSERTF(MDS_RECOV_OPEN == 0x00000100UL, "found 0x%.8xUL\n",
2376                 (unsigned)MDS_RECOV_OPEN);
2377         LASSERTF(MDS_DATA_MODIFIED == 0x00000200UL, "found 0x%.8xUL\n",
2378                 (unsigned)MDS_DATA_MODIFIED);
2379         LASSERTF(MDS_CREATE_VOLATILE == 0x00000400UL, "found 0x%.8xUL\n",
2380                 (unsigned)MDS_CREATE_VOLATILE);
2381         LASSERTF(MDS_OWNEROVERRIDE == 0x00000800UL, "found 0x%.8xUL\n",
2382                 (unsigned)MDS_OWNEROVERRIDE);
2383         LASSERTF(MDS_HSM_RELEASE == 0x00001000UL, "found 0x%.8xUL\n",
2384                 (unsigned)MDS_HSM_RELEASE);
2385         LASSERTF(MDS_CLOSE_LAYOUT_SWAP == 0x00004000UL, "found 0x%.8xUL\n",
2386                 (unsigned)MDS_CLOSE_LAYOUT_SWAP);
2387         LASSERTF(MDS_CLOSE_LAYOUT_MERGE == 0x00008000UL, "found 0x%.8xUL\n",
2388                 (unsigned)MDS_CLOSE_LAYOUT_MERGE);
2389         LASSERTF(MDS_CLOSE_RESYNC_DONE == 0x00010000UL, "found 0x%.8xUL\n",
2390                 (unsigned)MDS_CLOSE_RESYNC_DONE);
2391         LASSERTF(MDS_CLOSE_LAYOUT_SPLIT == 0x00020000UL, "found 0x%.8xUL\n",
2392                 (unsigned)MDS_CLOSE_LAYOUT_SPLIT);
2393         LASSERTF(MDS_TRUNC_KEEP_LEASE == 0x00040000UL, "found 0x%.8xUL\n",
2394                 (unsigned)MDS_TRUNC_KEEP_LEASE);
2395         LASSERTF(MDS_PCC_ATTACH == 0x00080000UL, "found 0x%.8xUL\n",
2396                 (unsigned)MDS_PCC_ATTACH);
2397         LASSERTF(MDS_CLOSE_UPDATE_TIMES == 0x00100000UL, "found 0x%.8xUL\n",
2398                 (unsigned)MDS_CLOSE_UPDATE_TIMES);
2399
2400         /* Checks for struct mdt_body */
2401         LASSERTF((int)sizeof(struct mdt_body) == 216, "found %lld\n",
2402                  (long long)(int)sizeof(struct mdt_body));
2403         LASSERTF((int)offsetof(struct mdt_body, mbo_fid1) == 0, "found %lld\n",
2404                  (long long)(int)offsetof(struct mdt_body, mbo_fid1));
2405         LASSERTF((int)sizeof(((struct mdt_body *)0)->mbo_fid1) == 16, "found %lld\n",
2406                  (long long)(int)sizeof(((struct mdt_body *)0)->mbo_fid1));
2407         LASSERTF((int)offsetof(struct mdt_body, mbo_fid2) == 16, "found %lld\n",
2408                  (long long)(int)offsetof(struct mdt_body, mbo_fid2));
2409         LASSERTF((int)sizeof(((struct mdt_body *)0)->mbo_fid2) == 16, "found %lld\n",
2410                  (long long)(int)sizeof(((struct mdt_body *)0)->mbo_fid2));
2411         LASSERTF((int)offsetof(struct mdt_body, mbo_open_handle) == 32, "found %lld\n",
2412                  (long long)(int)offsetof(struct mdt_body, mbo_open_handle));
2413         LASSERTF((int)sizeof(((struct mdt_body *)0)->mbo_open_handle) == 8, "found %lld\n",
2414                  (long long)(int)sizeof(((struct mdt_body *)0)->mbo_open_handle));
2415         LASSERTF((int)offsetof(struct mdt_body, mbo_valid) == 40, "found %lld\n",
2416                  (long long)(int)offsetof(struct mdt_body, mbo_valid));
2417         LASSERTF((int)sizeof(((struct mdt_body *)0)->mbo_valid) == 8, "found %lld\n",
2418                  (long long)(int)sizeof(((struct mdt_body *)0)->mbo_valid));
2419         LASSERTF((int)offsetof(struct mdt_body, mbo_size) == 48, "found %lld\n",
2420                  (long long)(int)offsetof(struct mdt_body, mbo_size));
2421         LASSERTF((int)sizeof(((struct mdt_body *)0)->mbo_size) == 8, "found %lld\n",
2422                  (long long)(int)sizeof(((struct mdt_body *)0)->mbo_size));
2423         LASSERTF((int)offsetof(struct mdt_body, mbo_mtime) == 56, "found %lld\n",
2424                  (long long)(int)offsetof(struct mdt_body, mbo_mtime));
2425         LASSERTF((int)sizeof(((struct mdt_body *)0)->mbo_mtime) == 8, "found %lld\n",
2426                  (long long)(int)sizeof(((struct mdt_body *)0)->mbo_mtime));
2427         LASSERTF((int)offsetof(struct mdt_body, mbo_atime) == 64, "found %lld\n",
2428                  (long long)(int)offsetof(struct mdt_body, mbo_atime));
2429         LASSERTF((int)sizeof(((struct mdt_body *)0)->mbo_atime) == 8, "found %lld\n",
2430                  (long long)(int)sizeof(((struct mdt_body *)0)->mbo_atime));
2431         LASSERTF((int)offsetof(struct mdt_body, mbo_ctime) == 72, "found %lld\n",
2432                  (long long)(int)offsetof(struct mdt_body, mbo_ctime));
2433         LASSERTF((int)sizeof(((struct mdt_body *)0)->mbo_ctime) == 8, "found %lld\n",
2434                  (long long)(int)sizeof(((struct mdt_body *)0)->mbo_ctime));
2435         LASSERTF((int)offsetof(struct mdt_body, mbo_blocks) == 80, "found %lld\n",
2436                  (long long)(int)offsetof(struct mdt_body, mbo_blocks));
2437         LASSERTF((int)sizeof(((struct mdt_body *)0)->mbo_blocks) == 8, "found %lld\n",
2438                  (long long)(int)sizeof(((struct mdt_body *)0)->mbo_blocks));
2439         LASSERTF((int)offsetof(struct mdt_body, mbo_version) == 88, "found %lld\n",
2440                  (long long)(int)offsetof(struct mdt_body, mbo_version));
2441         LASSERTF((int)sizeof(((struct mdt_body *)0)->mbo_version) == 8, "found %lld\n",
2442                  (long long)(int)sizeof(((struct mdt_body *)0)->mbo_version));
2443         LASSERTF((int)offsetof(struct mdt_body, mbo_t_state) == 96, "found %lld\n",
2444                  (long long)(int)offsetof(struct mdt_body, mbo_t_state));
2445         LASSERTF((int)sizeof(((struct mdt_body *)0)->mbo_t_state) == 8, "found %lld\n",
2446                  (long long)(int)sizeof(((struct mdt_body *)0)->mbo_t_state));
2447         LASSERTF((int)offsetof(struct mdt_body, mbo_fsuid) == 104, "found %lld\n",
2448                  (long long)(int)offsetof(struct mdt_body, mbo_fsuid));
2449         LASSERTF((int)sizeof(((struct mdt_body *)0)->mbo_fsuid) == 4, "found %lld\n",
2450                  (long long)(int)sizeof(((struct mdt_body *)0)->mbo_fsuid));
2451         LASSERTF((int)offsetof(struct mdt_body, mbo_fsgid) == 108, "found %lld\n",
2452                  (long long)(int)offsetof(struct mdt_body, mbo_fsgid));
2453         LASSERTF((int)sizeof(((struct mdt_body *)0)->mbo_fsgid) == 4, "found %lld\n",
2454                  (long long)(int)sizeof(((struct mdt_body *)0)->mbo_fsgid));
2455         LASSERTF((int)offsetof(struct mdt_body, mbo_capability) == 112, "found %lld\n",
2456                  (long long)(int)offsetof(struct mdt_body, mbo_capability));
2457         LASSERTF((int)sizeof(((struct mdt_body *)0)->mbo_capability) == 4, "found %lld\n",
2458                  (long long)(int)sizeof(((struct mdt_body *)0)->mbo_capability));
2459         LASSERTF((int)offsetof(struct mdt_body, mbo_mode) == 116, "found %lld\n",
2460                  (long long)(int)offsetof(struct mdt_body, mbo_mode));
2461         LASSERTF((int)sizeof(((struct mdt_body *)0)->mbo_mode) == 4, "found %lld\n",
2462                  (long long)(int)sizeof(((struct mdt_body *)0)->mbo_mode));
2463         LASSERTF((int)offsetof(struct mdt_body, mbo_uid) == 120, "found %lld\n",
2464                  (long long)(int)offsetof(struct mdt_body, mbo_uid));
2465         LASSERTF((int)sizeof(((struct mdt_body *)0)->mbo_uid) == 4, "found %lld\n",
2466                  (long long)(int)sizeof(((struct mdt_body *)0)->mbo_uid));
2467         LASSERTF((int)offsetof(struct mdt_body, mbo_gid) == 124, "found %lld\n",
2468                  (long long)(int)offsetof(struct mdt_body, mbo_gid));
2469         LASSERTF((int)sizeof(((struct mdt_body *)0)->mbo_gid) == 4, "found %lld\n",
2470                  (long long)(int)sizeof(((struct mdt_body *)0)->mbo_gid));
2471         LASSERTF((int)offsetof(struct mdt_body, mbo_flags) == 128, "found %lld\n",
2472                  (long long)(int)offsetof(struct mdt_body, mbo_flags));
2473         LASSERTF((int)sizeof(((struct mdt_body *)0)->mbo_flags) == 4, "found %lld\n",
2474                  (long long)(int)sizeof(((struct mdt_body *)0)->mbo_flags));
2475         LASSERTF((int)offsetof(struct mdt_body, mbo_rdev) == 132, "found %lld\n",
2476                  (long long)(int)offsetof(struct mdt_body, mbo_rdev));
2477         LASSERTF((int)sizeof(((struct mdt_body *)0)->mbo_rdev) == 4, "found %lld\n",
2478                  (long long)(int)sizeof(((struct mdt_body *)0)->mbo_rdev));
2479         LASSERTF((int)offsetof(struct mdt_body, mbo_nlink) == 136, "found %lld\n",
2480                  (long long)(int)offsetof(struct mdt_body, mbo_nlink));
2481         LASSERTF((int)sizeof(((struct mdt_body *)0)->mbo_nlink) == 4, "found %lld\n",
2482                  (long long)(int)sizeof(((struct mdt_body *)0)->mbo_nlink));
2483         LASSERTF((int)offsetof(struct mdt_body, mbo_layout_gen) == 140, "found %lld\n",
2484                  (long long)(int)offsetof(struct mdt_body, mbo_layout_gen));
2485         LASSERTF((int)sizeof(((struct mdt_body *)0)->mbo_layout_gen) == 4, "found %lld\n",
2486                  (long long)(int)sizeof(((struct mdt_body *)0)->mbo_layout_gen));
2487         LASSERTF((int)offsetof(struct mdt_body, mbo_suppgid) == 144, "found %lld\n",
2488                  (long long)(int)offsetof(struct mdt_body, mbo_suppgid));
2489         LASSERTF((int)sizeof(((struct mdt_body *)0)->mbo_suppgid) == 4, "found %lld\n",
2490                  (long long)(int)sizeof(((struct mdt_body *)0)->mbo_suppgid));
2491         LASSERTF((int)offsetof(struct mdt_body, mbo_eadatasize) == 148, "found %lld\n",
2492                  (long long)(int)offsetof(struct mdt_body, mbo_eadatasize));
2493         LASSERTF((int)sizeof(((struct mdt_body *)0)->mbo_eadatasize) == 4, "found %lld\n",
2494                  (long long)(int)sizeof(((struct mdt_body *)0)->mbo_eadatasize));
2495         LASSERTF((int)offsetof(struct mdt_body, mbo_aclsize) == 152, "found %lld\n",
2496                  (long long)(int)offsetof(struct mdt_body, mbo_aclsize));
2497         LASSERTF((int)sizeof(((struct mdt_body *)0)->mbo_aclsize) == 4, "found %lld\n",
2498                  (long long)(int)sizeof(((struct mdt_body *)0)->mbo_aclsize));
2499         LASSERTF((int)offsetof(struct mdt_body, mbo_max_mdsize) == 156, "found %lld\n",
2500                  (long long)(int)offsetof(struct mdt_body, mbo_max_mdsize));
2501         LASSERTF((int)sizeof(((struct mdt_body *)0)->mbo_max_mdsize) == 4, "found %lld\n",
2502                  (long long)(int)sizeof(((struct mdt_body *)0)->mbo_max_mdsize));
2503         LASSERTF((int)offsetof(struct mdt_body, mbo_unused3) == 160, "found %lld\n",
2504                  (long long)(int)offsetof(struct mdt_body, mbo_unused3));
2505         LASSERTF((int)sizeof(((struct mdt_body *)0)->mbo_unused3) == 4, "found %lld\n",
2506                  (long long)(int)sizeof(((struct mdt_body *)0)->mbo_unused3));
2507         LASSERTF((int)offsetof(struct mdt_body, mbo_uid_h) == 164, "found %lld\n",
2508                  (long long)(int)offsetof(struct mdt_body, mbo_uid_h));
2509         LASSERTF((int)sizeof(((struct mdt_body *)0)->mbo_uid_h) == 4, "found %lld\n",
2510                  (long long)(int)sizeof(((struct mdt_body *)0)->mbo_uid_h));
2511         LASSERTF((int)offsetof(struct mdt_body, mbo_gid_h) == 168, "found %lld\n",
2512                  (long long)(int)offsetof(struct mdt_body, mbo_gid_h));
2513         LASSERTF((int)sizeof(((struct mdt_body *)0)->mbo_gid_h) == 4, "found %lld\n",
2514                  (long long)(int)sizeof(((struct mdt_body *)0)->mbo_gid_h));
2515         LASSERTF((int)offsetof(struct mdt_body, mbo_projid) == 172, "found %lld\n",
2516                  (long long)(int)offsetof(struct mdt_body, mbo_projid));
2517         LASSERTF((int)sizeof(((struct mdt_body *)0)->mbo_projid) == 4, "found %lld\n",
2518                  (long long)(int)sizeof(((struct mdt_body *)0)->mbo_projid));
2519         LASSERTF((int)offsetof(struct mdt_body, mbo_dom_size) == 176, "found %lld\n",
2520                  (long long)(int)offsetof(struct mdt_body, mbo_dom_size));
2521         LASSERTF((int)sizeof(((struct mdt_body *)0)->mbo_dom_size) == 8, "found %lld\n",
2522                  (long long)(int)sizeof(((struct mdt_body *)0)->mbo_dom_size));
2523         LASSERTF((int)offsetof(struct mdt_body, mbo_dom_blocks) == 184, "found %lld\n",
2524                  (long long)(int)offsetof(struct mdt_body, mbo_dom_blocks));
2525         LASSERTF((int)sizeof(((struct mdt_body *)0)->mbo_dom_blocks) == 8, "found %lld\n",
2526                  (long long)(int)sizeof(((struct mdt_body *)0)->mbo_dom_blocks));
2527         LASSERTF((int)offsetof(struct mdt_body, mbo_padding_8) == 192, "found %lld\n",
2528                  (long long)(int)offsetof(struct mdt_body, mbo_padding_8));
2529         LASSERTF((int)sizeof(((struct mdt_body *)0)->mbo_padding_8) == 8, "found %lld\n",
2530                  (long long)(int)sizeof(((struct mdt_body *)0)->mbo_padding_8));
2531         LASSERTF((int)offsetof(struct mdt_body, mbo_padding_9) == 200, "found %lld\n",
2532                  (long long)(int)offsetof(struct mdt_body, mbo_padding_9));
2533         LASSERTF((int)sizeof(((struct mdt_body *)0)->mbo_padding_9) == 8, "found %lld\n",
2534                  (long long)(int)sizeof(((struct mdt_body *)0)->mbo_padding_9));
2535         LASSERTF((int)offsetof(struct mdt_body, mbo_padding_10) == 208, "found %lld\n",
2536                  (long long)(int)offsetof(struct mdt_body, mbo_padding_10));
2537         LASSERTF((int)sizeof(((struct mdt_body *)0)->mbo_padding_10) == 8, "found %lld\n",
2538                  (long long)(int)sizeof(((struct mdt_body *)0)->mbo_padding_10));
2539         LASSERTF(MDS_FMODE_CLOSED == 000000000000UL, "found 0%.11oUL\n",
2540                 MDS_FMODE_CLOSED);
2541         LASSERTF(MDS_FMODE_EXEC == 000000000004UL, "found 0%.11oUL\n",
2542                 MDS_FMODE_EXEC);
2543         LASSERTF(MDS_OPEN_CREATED == 000000000010UL, "found 0%.11oUL\n",
2544                 MDS_OPEN_CREATED);
2545         LASSERTF(MDS_OPEN_CREAT == 000000000100UL, "found 0%.11oUL\n",
2546                 MDS_OPEN_CREAT);
2547         LASSERTF(MDS_OPEN_EXCL == 000000000200UL, "found 0%.11oUL\n",
2548                 MDS_OPEN_EXCL);
2549         LASSERTF(MDS_OPEN_TRUNC == 000000001000UL, "found 0%.11oUL\n",
2550                 MDS_OPEN_TRUNC);
2551         LASSERTF(MDS_OPEN_APPEND == 000000002000UL, "found 0%.11oUL\n",
2552                 MDS_OPEN_APPEND);
2553         LASSERTF(MDS_OPEN_SYNC == 000000010000UL, "found 0%.11oUL\n",
2554                 MDS_OPEN_SYNC);
2555         LASSERTF(MDS_OPEN_DIRECTORY == 000000200000UL, "found 0%.11oUL\n",
2556                 MDS_OPEN_DIRECTORY);
2557         LASSERTF(MDS_OPEN_BY_FID == 000040000000UL, "found 0%.11oUL\n",
2558                 MDS_OPEN_BY_FID);
2559         LASSERTF(MDS_OPEN_DELAY_CREATE == 000100000000UL, "found 0%.11oUL\n",
2560                 MDS_OPEN_DELAY_CREATE);
2561         LASSERTF(MDS_OPEN_OWNEROVERRIDE == 000200000000UL, "found 0%.11oUL\n",
2562                 MDS_OPEN_OWNEROVERRIDE);
2563         LASSERTF(MDS_OPEN_JOIN_FILE == 000400000000UL, "found 0%.11oUL\n",
2564                 MDS_OPEN_JOIN_FILE);
2565         LASSERTF(MDS_OPEN_LOCK == 004000000000UL, "found 0%.11oUL\n",
2566                 MDS_OPEN_LOCK);
2567         LASSERTF(MDS_OPEN_HAS_EA == 010000000000UL, "found 0%.11oUL\n",
2568                 MDS_OPEN_HAS_EA);
2569         LASSERTF(MDS_OPEN_HAS_OBJS == 020000000000UL, "found 0%.11oUL\n",
2570                 MDS_OPEN_HAS_OBJS);
2571         LASSERTF(MDS_OPEN_NORESTORE == 00000000000100000000000ULL, "found 0%.22lloULL\n",
2572                         (long long)MDS_OPEN_NORESTORE);
2573         LASSERTF(MDS_OPEN_NEWSTRIPE == 00000000000200000000000ULL, "found 0%.22lloULL\n",
2574                         (long long)MDS_OPEN_NEWSTRIPE);
2575         LASSERTF(MDS_OPEN_VOLATILE == 00000000000400000000000ULL, "found 0%.22lloULL\n",
2576                         (long long)MDS_OPEN_VOLATILE);
2577         LASSERTF(MDS_OPEN_LEASE == 00000000001000000000000ULL, "found 0%.22lloULL\n",
2578                         (long long)MDS_OPEN_LEASE);
2579         LASSERTF(MDS_OPEN_RESYNC == 00000000004000000000000ULL, "found 0%.22lloULL\n",
2580                         (long long)MDS_OPEN_RESYNC);
2581         LASSERTF(MDS_OPEN_PCC == 00000000010000000000000ULL, "found 0%.22lloULL\n",
2582                         (long long)MDS_OPEN_PCC);
2583         LASSERTF(LUSTRE_SYNC_FL == 0x00000008UL, "found 0x%.8xUL\n",
2584                 (unsigned)LUSTRE_SYNC_FL);
2585         LASSERTF(LUSTRE_IMMUTABLE_FL == 0x00000010UL, "found 0x%.8xUL\n",
2586                 (unsigned)LUSTRE_IMMUTABLE_FL);
2587         LASSERTF(LUSTRE_APPEND_FL == 0x00000020UL, "found 0x%.8xUL\n",
2588                 (unsigned)LUSTRE_APPEND_FL);
2589         LASSERTF(LUSTRE_NODUMP_FL == 0x00000040UL, "found 0x%.8xUL\n",
2590                 (unsigned)LUSTRE_NODUMP_FL);
2591         LASSERTF(LUSTRE_NOATIME_FL == 0x00000080UL, "found 0x%.8xUL\n",
2592                 (unsigned)LUSTRE_NOATIME_FL);
2593         LASSERTF(LUSTRE_INDEX_FL == 0x00001000UL, "found 0x%.8xUL\n",
2594                 (unsigned)LUSTRE_INDEX_FL);
2595         LASSERTF(LUSTRE_ORPHAN_FL == 0x00002000UL, "found 0x%.8xUL\n",
2596                 (unsigned)LUSTRE_ORPHAN_FL);
2597         LASSERTF(LUSTRE_DIRSYNC_FL == 0x00010000UL, "found 0x%.8xUL\n",
2598                 (unsigned)LUSTRE_DIRSYNC_FL);
2599         LASSERTF(LUSTRE_TOPDIR_FL == 0x00020000UL, "found 0x%.8xUL\n",
2600                 (unsigned)LUSTRE_TOPDIR_FL);
2601         LASSERTF(LUSTRE_INLINE_DATA_FL == 0x10000000UL, "found 0x%.8xUL\n",
2602                 (unsigned)LUSTRE_INLINE_DATA_FL);
2603         LASSERTF(LUSTRE_SET_SYNC_FL == 0x00040000UL, "found 0x%.8xUL\n",
2604                 (unsigned)LUSTRE_SET_SYNC_FL);
2605         LASSERTF(MDS_INODELOCK_LOOKUP == 0x00000001UL, "found 0x%.8xUL\n",
2606                 (unsigned)MDS_INODELOCK_LOOKUP);
2607         LASSERTF(MDS_INODELOCK_UPDATE == 0x00000002UL, "found 0x%.8xUL\n",
2608                 (unsigned)MDS_INODELOCK_UPDATE);
2609         LASSERTF(MDS_INODELOCK_OPEN == 0x00000004UL, "found 0x%.8xUL\n",
2610                 (unsigned)MDS_INODELOCK_OPEN);
2611         LASSERTF(MDS_INODELOCK_LAYOUT == 0x00000008UL, "found 0x%.8xUL\n",
2612                 (unsigned)MDS_INODELOCK_LAYOUT);
2613         LASSERTF(MDS_INODELOCK_PERM == 0x00000010UL, "found 0x%.8xUL\n",
2614                 (unsigned)MDS_INODELOCK_PERM);
2615         LASSERTF(MDS_INODELOCK_XATTR == 0x00000020UL, "found 0x%.8xUL\n",
2616                 (unsigned)MDS_INODELOCK_XATTR);
2617         LASSERTF(MDS_INODELOCK_DOM == 0x00000040UL, "found 0x%.8xUL\n",
2618                 (unsigned)MDS_INODELOCK_DOM);
2619
2620         /* Checks for struct mdt_ioepoch */
2621         LASSERTF((int)sizeof(struct mdt_ioepoch) == 24, "found %lld\n",
2622                  (long long)(int)sizeof(struct mdt_ioepoch));
2623         LASSERTF((int)offsetof(struct mdt_ioepoch, mio_open_handle) == 0, "found %lld\n",
2624                  (long long)(int)offsetof(struct mdt_ioepoch, mio_open_handle));
2625         LASSERTF((int)sizeof(((struct mdt_ioepoch *)0)->mio_open_handle) == 8, "found %lld\n",
2626                  (long long)(int)sizeof(((struct mdt_ioepoch *)0)->mio_open_handle));
2627         LASSERTF((int)offsetof(struct mdt_ioepoch, mio_unused1) == 8, "found %lld\n",
2628                  (long long)(int)offsetof(struct mdt_ioepoch, mio_unused1));
2629         LASSERTF((int)sizeof(((struct mdt_ioepoch *)0)->mio_unused1) == 8, "found %lld\n",
2630                  (long long)(int)sizeof(((struct mdt_ioepoch *)0)->mio_unused1));
2631         LASSERTF((int)offsetof(struct mdt_ioepoch, mio_unused2) == 16, "found %lld\n",
2632                  (long long)(int)offsetof(struct mdt_ioepoch, mio_unused2));
2633         LASSERTF((int)sizeof(((struct mdt_ioepoch *)0)->mio_unused2) == 4, "found %lld\n",
2634                  (long long)(int)sizeof(((struct mdt_ioepoch *)0)->mio_unused2));
2635         LASSERTF((int)offsetof(struct mdt_ioepoch, mio_padding) == 20, "found %lld\n",
2636                  (long long)(int)offsetof(struct mdt_ioepoch, mio_padding));
2637         LASSERTF((int)sizeof(((struct mdt_ioepoch *)0)->mio_padding) == 4, "found %lld\n",
2638                  (long long)(int)sizeof(((struct mdt_ioepoch *)0)->mio_padding));
2639
2640         /* Checks for struct mdt_rec_setattr */
2641         LASSERTF((int)sizeof(struct mdt_rec_setattr) == 136, "found %lld\n",
2642                  (long long)(int)sizeof(struct mdt_rec_setattr));
2643         LASSERTF((int)offsetof(struct mdt_rec_setattr, sa_opcode) == 0, "found %lld\n",
2644                  (long long)(int)offsetof(struct mdt_rec_setattr, sa_opcode));
2645         LASSERTF((int)sizeof(((struct mdt_rec_setattr *)0)->sa_opcode) == 4, "found %lld\n",
2646                  (long long)(int)sizeof(((struct mdt_rec_setattr *)0)->sa_opcode));
2647         LASSERTF((int)offsetof(struct mdt_rec_setattr, sa_cap) == 4, "found %lld\n",
2648                  (long long)(int)offsetof(struct mdt_rec_setattr, sa_cap));
2649         LASSERTF((int)sizeof(((struct mdt_rec_setattr *)0)->sa_cap) == 4, "found %lld\n",
2650                  (long long)(int)sizeof(((struct mdt_rec_setattr *)0)->sa_cap));
2651         LASSERTF((int)offsetof(struct mdt_rec_setattr, sa_fsuid) == 8, "found %lld\n",
2652                  (long long)(int)offsetof(struct mdt_rec_setattr, sa_fsuid));
2653         LASSERTF((int)sizeof(((struct mdt_rec_setattr *)0)->sa_fsuid) == 4, "found %lld\n",
2654                  (long long)(int)sizeof(((struct mdt_rec_setattr *)0)->sa_fsuid));
2655         LASSERTF((int)offsetof(struct mdt_rec_setattr, sa_fsuid_h) == 12, "found %lld\n",
2656                  (long long)(int)offsetof(struct mdt_rec_setattr, sa_fsuid_h));
2657         LASSERTF((int)sizeof(((struct mdt_rec_setattr *)0)->sa_fsuid_h) == 4, "found %lld\n",
2658                  (long long)(int)sizeof(((struct mdt_rec_setattr *)0)->sa_fsuid_h));
2659         LASSERTF((int)offsetof(struct mdt_rec_setattr, sa_fsgid) == 16, "found %lld\n",
2660                  (long long)(int)offsetof(struct mdt_rec_setattr, sa_fsgid));
2661         LASSERTF((int)sizeof(((struct mdt_rec_setattr *)0)->sa_fsgid) == 4, "found %lld\n",
2662                  (long long)(int)sizeof(((struct mdt_rec_setattr *)0)->sa_fsgid));
2663         LASSERTF((int)offsetof(struct mdt_rec_setattr, sa_fsgid_h) == 20, "found %lld\n",
2664                  (long long)(int)offsetof(struct mdt_rec_setattr, sa_fsgid_h));
2665         LASSERTF((int)sizeof(((struct mdt_rec_setattr *)0)->sa_fsgid_h) == 4, "found %lld\n",
2666                  (long long)(int)sizeof(((struct mdt_rec_setattr *)0)->sa_fsgid_h));
2667         LASSERTF((int)offsetof(struct mdt_rec_setattr, sa_suppgid) == 24, "found %lld\n",
2668                  (long long)(int)offsetof(struct mdt_rec_setattr, sa_suppgid));
2669         LASSERTF((int)sizeof(((struct mdt_rec_setattr *)0)->sa_suppgid) == 4, "found %lld\n",
2670                  (long long)(int)sizeof(((struct mdt_rec_setattr *)0)->sa_suppgid));
2671         LASSERTF((int)offsetof(struct mdt_rec_setattr, sa_suppgid_h) == 28, "found %lld\n",
2672                  (long long)(int)offsetof(struct mdt_rec_setattr, sa_suppgid_h));
2673         LASSERTF((int)sizeof(((struct mdt_rec_setattr *)0)->sa_suppgid_h) == 4, "found %lld\n",
2674                  (long long)(int)sizeof(((struct mdt_rec_setattr *)0)->sa_suppgid_h));
2675         LASSERTF((int)offsetof(struct mdt_rec_setattr, sa_padding_1) == 32, "found %lld\n",
2676                  (long long)(int)offsetof(struct mdt_rec_setattr, sa_padding_1));
2677         LASSERTF((int)sizeof(((struct mdt_rec_setattr *)0)->sa_padding_1) == 4, "found %lld\n",
2678                  (long long)(int)sizeof(((struct mdt_rec_setattr *)0)->sa_padding_1));
2679         LASSERTF((int)offsetof(struct mdt_rec_setattr, sa_padding_1_h) == 36, "found %lld\n",
2680                  (long long)(int)offsetof(struct mdt_rec_setattr, sa_padding_1_h));
2681         LASSERTF((int)sizeof(((struct mdt_rec_setattr *)0)->sa_padding_1_h) == 4, "found %lld\n",
2682                  (long long)(int)sizeof(((struct mdt_rec_setattr *)0)->sa_padding_1_h));
2683         LASSERTF((int)offsetof(struct mdt_rec_setattr, sa_fid) == 40, "found %lld\n",
2684                  (long long)(int)offsetof(struct mdt_rec_setattr, sa_fid));
2685         LASSERTF((int)sizeof(((struct mdt_rec_setattr *)0)->sa_fid) == 16, "found %lld\n",
2686                  (long long)(int)sizeof(((struct mdt_rec_setattr *)0)->sa_fid));
2687         LASSERTF((int)offsetof(struct mdt_rec_setattr, sa_valid) == 56, "found %lld\n",
2688                  (long long)(int)offsetof(struct mdt_rec_setattr, sa_valid));
2689         LASSERTF((int)sizeof(((struct mdt_rec_setattr *)0)->sa_valid) == 8, "found %lld\n",
2690                  (long long)(int)sizeof(((struct mdt_rec_setattr *)0)->sa_valid));
2691         LASSERTF((int)offsetof(struct mdt_rec_setattr, sa_uid) == 64, "found %lld\n",
2692                  (long long)(int)offsetof(struct mdt_rec_setattr, sa_uid));
2693         LASSERTF((int)sizeof(((struct mdt_rec_setattr *)0)->sa_uid) == 4, "found %lld\n",
2694                  (long long)(int)sizeof(((struct mdt_rec_setattr *)0)->sa_uid));
2695         LASSERTF((int)offsetof(struct mdt_rec_setattr, sa_gid) == 68, "found %lld\n",
2696                  (long long)(int)offsetof(struct mdt_rec_setattr, sa_gid));
2697         LASSERTF((int)sizeof(((struct mdt_rec_setattr *)0)->sa_gid) == 4, "found %lld\n",
2698                  (long long)(int)sizeof(((struct mdt_rec_setattr *)0)->sa_gid));
2699         LASSERTF((int)offsetof(struct mdt_rec_setattr, sa_size) == 72, "found %lld\n",
2700                  (long long)(int)offsetof(struct mdt_rec_setattr, sa_size));
2701         LASSERTF((int)sizeof(((struct mdt_rec_setattr *)0)->sa_size) == 8, "found %lld\n",
2702                  (long long)(int)sizeof(((struct mdt_rec_setattr *)0)->sa_size));
2703         LASSERTF((int)offsetof(struct mdt_rec_setattr, sa_blocks) == 80, "found %lld\n",
2704                  (long long)(int)offsetof(struct mdt_rec_setattr, sa_blocks));
2705         LASSERTF((int)sizeof(((struct mdt_rec_setattr *)0)->sa_blocks) == 8, "found %lld\n",
2706                  (long long)(int)sizeof(((struct mdt_rec_setattr *)0)->sa_blocks));
2707         LASSERTF((int)offsetof(struct mdt_rec_setattr, sa_mtime) == 88, "found %lld\n",
2708                  (long long)(int)offsetof(struct mdt_rec_setattr, sa_mtime));
2709         LASSERTF((int)sizeof(((struct mdt_rec_setattr *)0)->sa_mtime) == 8, "found %lld\n",
2710                  (long long)(int)sizeof(((struct mdt_rec_setattr *)0)->sa_mtime));
2711         LASSERTF((int)offsetof(struct mdt_rec_setattr, sa_atime) == 96, "found %lld\n",
2712                  (long long)(int)offsetof(struct mdt_rec_setattr, sa_atime));
2713         LASSERTF((int)sizeof(((struct mdt_rec_setattr *)0)->sa_atime) == 8, "found %lld\n",
2714                  (long long)(int)sizeof(((struct mdt_rec_setattr *)0)->sa_atime));
2715         LASSERTF((int)offsetof(struct mdt_rec_setattr, sa_ctime) == 104, "found %lld\n",
2716                  (long long)(int)offsetof(struct mdt_rec_setattr, sa_ctime));
2717         LASSERTF((int)sizeof(((struct mdt_rec_setattr *)0)->sa_ctime) == 8, "found %lld\n",
2718                  (long long)(int)sizeof(((struct mdt_rec_setattr *)0)->sa_ctime));
2719         LASSERTF((int)offsetof(struct mdt_rec_setattr, sa_attr_flags) == 112, "found %lld\n",
2720                  (long long)(int)offsetof(struct mdt_rec_setattr, sa_attr_flags));
2721         LASSERTF((int)sizeof(((struct mdt_rec_setattr *)0)->sa_attr_flags) == 4, "found %lld\n",
2722                  (long long)(int)sizeof(((struct mdt_rec_setattr *)0)->sa_attr_flags));
2723         LASSERTF((int)offsetof(struct mdt_rec_setattr, sa_mode) == 116, "found %lld\n",
2724                  (long long)(int)offsetof(struct mdt_rec_setattr, sa_mode));
2725         LASSERTF((int)sizeof(((struct mdt_rec_setattr *)0)->sa_mode) == 4, "found %lld\n",
2726                  (long long)(int)sizeof(((struct mdt_rec_setattr *)0)->sa_mode));
2727         LASSERTF((int)offsetof(struct mdt_rec_setattr, sa_bias) == 120, "found %lld\n",
2728                  (long long)(int)offsetof(struct mdt_rec_setattr, sa_bias));
2729         LASSERTF((int)sizeof(((struct mdt_rec_setattr *)0)->sa_bias) == 4, "found %lld\n",
2730                  (long long)(int)sizeof(((struct mdt_rec_setattr *)0)->sa_bias));
2731         LASSERTF((int)offsetof(struct mdt_rec_setattr, sa_projid) == 124, "found %lld\n",
2732                  (long long)(int)offsetof(struct mdt_rec_setattr, sa_projid));
2733         LASSERTF((int)sizeof(((struct mdt_rec_setattr *)0)->sa_projid) == 4, "found %lld\n",
2734                  (long long)(int)sizeof(((struct mdt_rec_setattr *)0)->sa_projid));
2735         LASSERTF((int)offsetof(struct mdt_rec_setattr, sa_padding_4) == 128, "found %lld\n",
2736                  (long long)(int)offsetof(struct mdt_rec_setattr, sa_padding_4));
2737         LASSERTF((int)sizeof(((struct mdt_rec_setattr *)0)->sa_padding_4) == 4, "found %lld\n",
2738                  (long long)(int)sizeof(((struct mdt_rec_setattr *)0)->sa_padding_4));
2739         LASSERTF((int)offsetof(struct mdt_rec_setattr, sa_padding_5) == 132, "found %lld\n",
2740                  (long long)(int)offsetof(struct mdt_rec_setattr, sa_padding_5));
2741         LASSERTF((int)sizeof(((struct mdt_rec_setattr *)0)->sa_padding_5) == 4, "found %lld\n",
2742                  (long long)(int)sizeof(((struct mdt_rec_setattr *)0)->sa_padding_5));
2743
2744         /* Checks for struct mdt_rec_create */
2745         LASSERTF((int)sizeof(struct mdt_rec_create) == 136, "found %lld\n",
2746                  (long long)(int)sizeof(struct mdt_rec_create));
2747         LASSERTF((int)offsetof(struct mdt_rec_create, cr_opcode) == 0, "found %lld\n",
2748                  (long long)(int)offsetof(struct mdt_rec_create, cr_opcode));
2749         LASSERTF((int)sizeof(((struct mdt_rec_create *)0)->cr_opcode) == 4, "found %lld\n",
2750                  (long long)(int)sizeof(((struct mdt_rec_create *)0)->cr_opcode));
2751         LASSERTF((int)offsetof(struct mdt_rec_create, cr_cap) == 4, "found %lld\n",
2752                  (long long)(int)offsetof(struct mdt_rec_create, cr_cap));
2753         LASSERTF((int)sizeof(((struct mdt_rec_create *)0)->cr_cap) == 4, "found %lld\n",
2754                  (long long)(int)sizeof(((struct mdt_rec_create *)0)->cr_cap));
2755         LASSERTF((int)offsetof(struct mdt_rec_create, cr_fsuid) == 8, "found %lld\n",
2756                  (long long)(int)offsetof(struct mdt_rec_create, cr_fsuid));
2757         LASSERTF((int)sizeof(((struct mdt_rec_create *)0)->cr_fsuid) == 4, "found %lld\n",
2758                  (long long)(int)sizeof(((struct mdt_rec_create *)0)->cr_fsuid));
2759         LASSERTF((int)offsetof(struct mdt_rec_create, cr_fsuid_h) == 12, "found %lld\n",
2760                  (long long)(int)offsetof(struct mdt_rec_create, cr_fsuid_h));
2761         LASSERTF((int)sizeof(((struct mdt_rec_create *)0)->cr_fsuid_h) == 4, "found %lld\n",
2762                  (long long)(int)sizeof(((struct mdt_rec_create *)0)->cr_fsuid_h));
2763         LASSERTF((int)offsetof(struct mdt_rec_create, cr_fsgid) == 16, "found %lld\n",
2764                  (long long)(int)offsetof(struct mdt_rec_create, cr_fsgid));
2765         LASSERTF((int)sizeof(((struct mdt_rec_create *)0)->cr_fsgid) == 4, "found %lld\n",
2766                  (long long)(int)sizeof(((struct mdt_rec_create *)0)->cr_fsgid));
2767         LASSERTF((int)offsetof(struct mdt_rec_create, cr_fsgid_h) == 20, "found %lld\n",
2768                  (long long)(int)offsetof(struct mdt_rec_create, cr_fsgid_h));
2769         LASSERTF((int)sizeof(((struct mdt_rec_create *)0)->cr_fsgid_h) == 4, "found %lld\n",
2770                  (long long)(int)sizeof(((struct mdt_rec_create *)0)->cr_fsgid_h));
2771         LASSERTF((int)offsetof(struct mdt_rec_create, cr_suppgid1) == 24, "found %lld\n",
2772                  (long long)(int)offsetof(struct mdt_rec_create, cr_suppgid1));
2773         LASSERTF((int)sizeof(((struct mdt_rec_create *)0)->cr_suppgid1) == 4, "found %lld\n",
2774                  (long long)(int)sizeof(((struct mdt_rec_create *)0)->cr_suppgid1));
2775         LASSERTF((int)offsetof(struct mdt_rec_create, cr_suppgid1_h) == 28, "found %lld\n",
2776                  (long long)(int)offsetof(struct mdt_rec_create, cr_suppgid1_h));
2777         LASSERTF((int)sizeof(((struct mdt_rec_create *)0)->cr_suppgid1_h) == 4, "found %lld\n",
2778                  (long long)(int)sizeof(((struct mdt_rec_create *)0)->cr_suppgid1_h));
2779         LASSERTF((int)offsetof(struct mdt_rec_create, cr_suppgid2) == 32, "found %lld\n",
2780                  (long long)(int)offsetof(struct mdt_rec_create, cr_suppgid2));
2781         LASSERTF((int)sizeof(((struct mdt_rec_create *)0)->cr_suppgid2) == 4, "found %lld\n",
2782                  (long long)(int)sizeof(((struct mdt_rec_create *)0)->cr_suppgid2));
2783         LASSERTF((int)offsetof(struct mdt_rec_create, cr_suppgid2_h) == 36, "found %lld\n",
2784                  (long long)(int)offsetof(struct mdt_rec_create, cr_suppgid2_h));
2785         LASSERTF((int)sizeof(((struct mdt_rec_create *)0)->cr_suppgid2_h) == 4, "found %lld\n",
2786                  (long long)(int)sizeof(((struct mdt_rec_create *)0)->cr_suppgid2_h));
2787         LASSERTF((int)offsetof(struct mdt_rec_create, cr_fid1) == 40, "found %lld\n",
2788                  (long long)(int)offsetof(struct mdt_rec_create, cr_fid1));
2789         LASSERTF((int)sizeof(((struct mdt_rec_create *)0)->cr_fid1) == 16, "found %lld\n",
2790                  (long long)(int)sizeof(((struct mdt_rec_create *)0)->cr_fid1));
2791         LASSERTF((int)offsetof(struct mdt_rec_create, cr_fid2) == 56, "found %lld\n",
2792                  (long long)(int)offsetof(struct mdt_rec_create, cr_fid2));
2793         LASSERTF((int)sizeof(((struct mdt_rec_create *)0)->cr_fid2) == 16, "found %lld\n",
2794                  (long long)(int)sizeof(((struct mdt_rec_create *)0)->cr_fid2));
2795         LASSERTF((int)offsetof(struct mdt_rec_create, cr_open_handle_old) == 72, "found %lld\n",
2796                  (long long)(int)offsetof(struct mdt_rec_create, cr_open_handle_old));
2797         LASSERTF((int)sizeof(((struct mdt_rec_create *)0)->cr_open_handle_old) == 8, "found %lld\n",
2798                  (long long)(int)sizeof(((struct mdt_rec_create *)0)->cr_open_handle_old));
2799         LASSERTF((int)offsetof(struct mdt_rec_create, cr_time) == 80, "found %lld\n",
2800                  (long long)(int)offsetof(struct mdt_rec_create, cr_time));
2801         LASSERTF((int)sizeof(((struct mdt_rec_create *)0)->cr_time) == 8, "found %lld\n",
2802                  (long long)(int)sizeof(((struct mdt_rec_create *)0)->cr_time));
2803         LASSERTF((int)offsetof(struct mdt_rec_create, cr_rdev) == 88, "found %lld\n",
2804                  (long long)(int)offsetof(struct mdt_rec_create, cr_rdev));
2805         LASSERTF((int)sizeof(((struct mdt_rec_create *)0)->cr_rdev) == 8, "found %lld\n",
2806                  (long long)(int)sizeof(((struct mdt_rec_create *)0)->cr_rdev));
2807         LASSERTF((int)offsetof(struct mdt_rec_create, cr_ioepoch) == 96, "found %lld\n",
2808                  (long long)(int)offsetof(struct mdt_rec_create, cr_ioepoch));
2809         LASSERTF((int)sizeof(((struct mdt_rec_create *)0)->cr_ioepoch) == 8, "found %lld\n",
2810                  (long long)(int)sizeof(((struct mdt_rec_create *)0)->cr_ioepoch));
2811         LASSERTF((int)offsetof(struct mdt_rec_create, cr_padding_1) == 104, "found %lld\n",
2812                  (long long)(int)offsetof(struct mdt_rec_create, cr_padding_1));
2813         LASSERTF((int)sizeof(((struct mdt_rec_create *)0)->cr_padding_1) == 8, "found %lld\n",
2814                  (long long)(int)sizeof(((struct mdt_rec_create *)0)->cr_padding_1));
2815         LASSERTF((int)offsetof(struct mdt_rec_create, cr_mode) == 112, "found %lld\n",
2816                  (long long)(int)offsetof(struct mdt_rec_create, cr_mode));
2817         LASSERTF((int)sizeof(((struct mdt_rec_create *)0)->cr_mode) == 4, "found %lld\n",
2818                  (long long)(int)sizeof(((struct mdt_rec_create *)0)->cr_mode));
2819         LASSERTF((int)offsetof(struct mdt_rec_create, cr_bias) == 116, "found %lld\n",
2820                  (long long)(int)offsetof(struct mdt_rec_create, cr_bias));
2821         LASSERTF((int)sizeof(((struct mdt_rec_create *)0)->cr_bias) == 4, "found %lld\n",
2822                  (long long)(int)sizeof(((struct mdt_rec_create *)0)->cr_bias));
2823         LASSERTF((int)offsetof(struct mdt_rec_create, cr_flags_l) == 120, "found %lld\n",
2824                  (long long)(int)offsetof(struct mdt_rec_create, cr_flags_l));
2825         LASSERTF((int)sizeof(((struct mdt_rec_create *)0)->cr_flags_l) == 4, "found %lld\n",
2826                  (long long)(int)sizeof(((struct mdt_rec_create *)0)->cr_flags_l));
2827         LASSERTF((int)offsetof(struct mdt_rec_create, cr_flags_h) == 124, "found %lld\n",
2828                  (long long)(int)offsetof(struct mdt_rec_create, cr_flags_h));
2829         LASSERTF((int)sizeof(((struct mdt_rec_create *)0)->cr_flags_h) == 4, "found %lld\n",
2830                  (long long)(int)sizeof(((struct mdt_rec_create *)0)->cr_flags_h));
2831         LASSERTF((int)offsetof(struct mdt_rec_create, cr_umask) == 128, "found %lld\n",
2832                  (long long)(int)offsetof(struct mdt_rec_create, cr_umask));
2833         LASSERTF((int)sizeof(((struct mdt_rec_create *)0)->cr_umask) == 4, "found %lld\n",
2834                  (long long)(int)sizeof(((struct mdt_rec_create *)0)->cr_umask));
2835         LASSERTF((int)offsetof(struct mdt_rec_create, cr_padding_4) == 132, "found %lld\n",
2836                  (long long)(int)offsetof(struct mdt_rec_create, cr_padding_4));
2837         LASSERTF((int)sizeof(((struct mdt_rec_create *)0)->cr_padding_4) == 4, "found %lld\n",
2838                  (long long)(int)sizeof(((struct mdt_rec_create *)0)->cr_padding_4));
2839
2840         /* Checks for struct mdt_rec_link */
2841         LASSERTF((int)sizeof(struct mdt_rec_link) == 136, "found %lld\n",
2842                  (long long)(int)sizeof(struct mdt_rec_link));
2843         LASSERTF((int)offsetof(struct mdt_rec_link, lk_opcode) == 0, "found %lld\n",
2844                  (long long)(int)offsetof(struct mdt_rec_link, lk_opcode));
2845         LASSERTF((int)sizeof(((struct mdt_rec_link *)0)->lk_opcode) == 4, "found %lld\n",
2846                  (long long)(int)sizeof(((struct mdt_rec_link *)0)->lk_opcode));
2847         LASSERTF((int)offsetof(struct mdt_rec_link, lk_cap) == 4, "found %lld\n",
2848                  (long long)(int)offsetof(struct mdt_rec_link, lk_cap));
2849         LASSERTF((int)sizeof(((struct mdt_rec_link *)0)->lk_cap) == 4, "found %lld\n",
2850                  (long long)(int)sizeof(((struct mdt_rec_link *)0)->lk_cap));
2851         LASSERTF((int)offsetof(struct mdt_rec_link, lk_fsuid) == 8, "found %lld\n",
2852                  (long long)(int)offsetof(struct mdt_rec_link, lk_fsuid));
2853         LASSERTF((int)sizeof(((struct mdt_rec_link *)0)->lk_fsuid) == 4, "found %lld\n",
2854                  (long long)(int)sizeof(((struct mdt_rec_link *)0)->lk_fsuid));
2855         LASSERTF((int)offsetof(struct mdt_rec_link, lk_fsuid_h) == 12, "found %lld\n",
2856                  (long long)(int)offsetof(struct mdt_rec_link, lk_fsuid_h));
2857         LASSERTF((int)sizeof(((struct mdt_rec_link *)0)->lk_fsuid_h) == 4, "found %lld\n",
2858                  (long long)(int)sizeof(((struct mdt_rec_link *)0)->lk_fsuid_h));
2859         LASSERTF((int)offsetof(struct mdt_rec_link, lk_fsgid) == 16, "found %lld\n",
2860                  (long long)(int)offsetof(struct mdt_rec_link, lk_fsgid));
2861         LASSERTF((int)sizeof(((struct mdt_rec_link *)0)->lk_fsgid) == 4, "found %lld\n",
2862                  (long long)(int)sizeof(((struct mdt_rec_link *)0)->lk_fsgid));
2863         LASSERTF((int)offsetof(struct mdt_rec_link, lk_fsgid_h) == 20, "found %lld\n",
2864                  (long long)(int)offsetof(struct mdt_rec_link, lk_fsgid_h));
2865         LASSERTF((int)sizeof(((struct mdt_rec_link *)0)->lk_fsgid_h) == 4, "found %lld\n",
2866                  (long long)(int)sizeof(((struct mdt_rec_link *)0)->lk_fsgid_h));
2867         LASSERTF((int)offsetof(struct mdt_rec_link, lk_suppgid1) == 24, "found %lld\n",
2868                  (long long)(int)offsetof(struct mdt_rec_link, lk_suppgid1));
2869         LASSERTF((int)sizeof(((struct mdt_rec_link *)0)->lk_suppgid1) == 4, "found %lld\n",
2870                  (long long)(int)sizeof(((struct mdt_rec_link *)0)->lk_suppgid1));
2871         LASSERTF((int)offsetof(struct mdt_rec_link, lk_suppgid1_h) == 28, "found %lld\n",
2872                  (long long)(int)offsetof(struct mdt_rec_link, lk_suppgid1_h));
2873         LASSERTF((int)sizeof(((struct mdt_rec_link *)0)->lk_suppgid1_h) == 4, "found %lld\n",
2874                  (long long)(int)sizeof(((struct mdt_rec_link *)0)->lk_suppgid1_h));
2875         LASSERTF((int)offsetof(struct mdt_rec_link, lk_suppgid2) == 32, "found %lld\n",
2876                  (long long)(int)offsetof(struct mdt_rec_link, lk_suppgid2));
2877         LASSERTF((int)sizeof(((struct mdt_rec_link *)0)->lk_suppgid2) == 4, "found %lld\n",
2878                  (long long)(int)sizeof(((struct mdt_rec_link *)0)->lk_suppgid2));
2879         LASSERTF((int)offsetof(struct mdt_rec_link, lk_suppgid2_h) == 36, "found %lld\n",
2880                  (long long)(int)offsetof(struct mdt_rec_link, lk_suppgid2_h));
2881         LASSERTF((int)sizeof(((struct mdt_rec_link *)0)->lk_suppgid2_h) == 4, "found %lld\n",
2882                  (long long)(int)sizeof(((struct mdt_rec_link *)0)->lk_suppgid2_h));
2883         LASSERTF((int)offsetof(struct mdt_rec_link, lk_fid1) == 40, "found %lld\n",
2884                  (long long)(int)offsetof(struct mdt_rec_link, lk_fid1));
2885         LASSERTF((int)sizeof(((struct mdt_rec_link *)0)->lk_fid1) == 16, "found %lld\n",
2886                  (long long)(int)sizeof(((struct mdt_rec_link *)0)->lk_fid1));
2887         LASSERTF((int)offsetof(struct mdt_rec_link, lk_fid2) == 56, "found %lld\n",
2888                  (long long)(int)offsetof(struct mdt_rec_link, lk_fid2));
2889         LASSERTF((int)sizeof(((struct mdt_rec_link *)0)->lk_fid2) == 16, "found %lld\n",
2890                  (long long)(int)sizeof(((struct mdt_rec_link *)0)->lk_fid2));
2891         LASSERTF((int)offsetof(struct mdt_rec_link, lk_time) == 72, "found %lld\n",
2892                  (long long)(int)offsetof(struct mdt_rec_link, lk_time));
2893         LASSERTF((int)sizeof(((struct mdt_rec_link *)0)->lk_time) == 8, "found %lld\n",
2894                  (long long)(int)sizeof(((struct mdt_rec_link *)0)->lk_time));
2895         LASSERTF((int)offsetof(struct mdt_rec_link, lk_padding_1) == 80, "found %lld\n",
2896                  (long long)(int)offsetof(struct mdt_rec_link, lk_padding_1));
2897         LASSERTF((int)sizeof(((struct mdt_rec_link *)0)->lk_padding_1) == 8, "found %lld\n",
2898                  (long long)(int)sizeof(((struct mdt_rec_link *)0)->lk_padding_1));
2899         LASSERTF((int)offsetof(struct mdt_rec_link, lk_padding_2) == 88, "found %lld\n",
2900                  (long long)(int)offsetof(struct mdt_rec_link, lk_padding_2));
2901         LASSERTF((int)sizeof(((struct mdt_rec_link *)0)->lk_padding_2) == 8, "found %lld\n",
2902                  (long long)(int)sizeof(((struct mdt_rec_link *)0)->lk_padding_2));
2903         LASSERTF((int)offsetof(struct mdt_rec_link, lk_padding_3) == 96, "found %lld\n",
2904                  (long long)(int)offsetof(struct mdt_rec_link, lk_padding_3));
2905         LASSERTF((int)sizeof(((struct mdt_rec_link *)0)->lk_padding_3) == 8, "found %lld\n",
2906                  (long long)(int)sizeof(((struct mdt_rec_link *)0)->lk_padding_3));
2907         LASSERTF((int)offsetof(struct mdt_rec_link, lk_padding_4) == 104, "found %lld\n",
2908                  (long long)(int)offsetof(struct mdt_rec_link, lk_padding_4));
2909         LASSERTF((int)sizeof(((struct mdt_rec_link *)0)->lk_padding_4) == 8, "found %lld\n",
2910                  (long long)(int)sizeof(((struct mdt_rec_link *)0)->lk_padding_4));
2911         LASSERTF((int)offsetof(struct mdt_rec_link, lk_bias) == 112, "found %lld\n",
2912                  (long long)(int)offsetof(struct mdt_rec_link, lk_bias));
2913         LASSERTF((int)sizeof(((struct mdt_rec_link *)0)->lk_bias) == 4, "found %lld\n",
2914                  (long long)(int)sizeof(((struct mdt_rec_link *)0)->lk_bias));
2915         LASSERTF((int)offsetof(struct mdt_rec_link, lk_padding_5) == 116, "found %lld\n",
2916                  (long long)(int)offsetof(struct mdt_rec_link, lk_padding_5));
2917         LASSERTF((int)sizeof(((struct mdt_rec_link *)0)->lk_padding_5) == 4, "found %lld\n",
2918                  (long long)(int)sizeof(((struct mdt_rec_link *)0)->lk_padding_5));
2919         LASSERTF((int)offsetof(struct mdt_rec_link, lk_padding_6) == 120, "found %lld\n",
2920                  (long long)(int)offsetof(struct mdt_rec_link, lk_padding_6));
2921         LASSERTF((int)sizeof(((struct mdt_rec_link *)0)->lk_padding_6) == 4, "found %lld\n",
2922                  (long long)(int)sizeof(((struct mdt_rec_link *)0)->lk_padding_6));
2923         LASSERTF((int)offsetof(struct mdt_rec_link, lk_padding_7) == 124, "found %lld\n",
2924                  (long long)(int)offsetof(struct mdt_rec_link, lk_padding_7));
2925         LASSERTF((int)sizeof(((struct mdt_rec_link *)0)->lk_padding_7) == 4, "found %lld\n",
2926                  (long long)(int)sizeof(((struct mdt_rec_link *)0)->lk_padding_7));
2927         LASSERTF((int)offsetof(struct mdt_rec_link, lk_padding_8) == 128, "found %lld\n",
2928                  (long long)(int)offsetof(struct mdt_rec_link, lk_padding_8));
2929         LASSERTF((int)sizeof(((struct mdt_rec_link *)0)->lk_padding_8) == 4, "found %lld\n",
2930                  (long long)(int)sizeof(((struct mdt_rec_link *)0)->lk_padding_8));
2931         LASSERTF((int)offsetof(struct mdt_rec_link, lk_padding_9) == 132, "found %lld\n",
2932                  (long long)(int)offsetof(struct mdt_rec_link, lk_padding_9));
2933         LASSERTF((int)sizeof(((struct mdt_rec_link *)0)->lk_padding_9) == 4, "found %lld\n",
2934                  (long long)(int)sizeof(((struct mdt_rec_link *)0)->lk_padding_9));
2935
2936         /* Checks for struct mdt_rec_unlink */
2937         LASSERTF((int)sizeof(struct mdt_rec_unlink) == 136, "found %lld\n",
2938                  (long long)(int)sizeof(struct mdt_rec_unlink));
2939         LASSERTF((int)offsetof(struct mdt_rec_unlink, ul_opcode) == 0, "found %lld\n",
2940                  (long long)(int)offsetof(struct mdt_rec_unlink, ul_opcode));
2941         LASSERTF((int)sizeof(((struct mdt_rec_unlink *)0)->ul_opcode) == 4, "found %lld\n",
2942                  (long long)(int)sizeof(((struct mdt_rec_unlink *)0)->ul_opcode));
2943         LASSERTF((int)offsetof(struct mdt_rec_unlink, ul_cap) == 4, "found %lld\n",
2944                  (long long)(int)offsetof(struct mdt_rec_unlink, ul_cap));
2945         LASSERTF((int)sizeof(((struct mdt_rec_unlink *)0)->ul_cap) == 4, "found %lld\n",
2946                  (long long)(int)sizeof(((struct mdt_rec_unlink *)0)->ul_cap));
2947         LASSERTF((int)offsetof(struct mdt_rec_unlink, ul_fsuid) == 8, "found %lld\n",
2948                  (long long)(int)offsetof(struct mdt_rec_unlink, ul_fsuid));
2949         LASSERTF((int)sizeof(((struct mdt_rec_unlink *)0)->ul_fsuid) == 4, "found %lld\n",
2950                  (long long)(int)sizeof(((struct mdt_rec_unlink *)0)->ul_fsuid));
2951         LASSERTF((int)offsetof(struct mdt_rec_unlink, ul_fsuid_h) == 12, "found %lld\n",
2952                  (long long)(int)offsetof(struct mdt_rec_unlink, ul_fsuid_h));
2953         LASSERTF((int)sizeof(((struct mdt_rec_unlink *)0)->ul_fsuid_h) == 4, "found %lld\n",
2954                  (long long)(int)sizeof(((struct mdt_rec_unlink *)0)->ul_fsuid_h));
2955         LASSERTF((int)offsetof(struct mdt_rec_unlink, ul_fsgid) == 16, "found %lld\n",
2956                  (long long)(int)offsetof(struct mdt_rec_unlink, ul_fsgid));
2957         LASSERTF((int)sizeof(((struct mdt_rec_unlink *)0)->ul_fsgid) == 4, "found %lld\n",
2958                  (long long)(int)sizeof(((struct mdt_rec_unlink *)0)->ul_fsgid));
2959         LASSERTF((int)offsetof(struct mdt_rec_unlink, ul_fsgid_h) == 20, "found %lld\n",
2960                  (long long)(int)offsetof(struct mdt_rec_unlink, ul_fsgid_h));
2961         LASSERTF((int)sizeof(((struct mdt_rec_unlink *)0)->ul_fsgid_h) == 4, "found %lld\n",
2962                  (long long)(int)sizeof(((struct mdt_rec_unlink *)0)->ul_fsgid_h));
2963         LASSERTF((int)offsetof(struct mdt_rec_unlink, ul_suppgid1) == 24, "found %lld\n",
2964                  (long long)(int)offsetof(struct mdt_rec_unlink, ul_suppgid1));
2965         LASSERTF((int)sizeof(((struct mdt_rec_unlink *)0)->ul_suppgid1) == 4, "found %lld\n",
2966                  (long long)(int)sizeof(((struct mdt_rec_unlink *)0)->ul_suppgid1));
2967         LASSERTF((int)offsetof(struct mdt_rec_unlink, ul_suppgid1_h) == 28, "found %lld\n",
2968                  (long long)(int)offsetof(struct mdt_rec_unlink, ul_suppgid1_h));
2969         LASSERTF((int)sizeof(((struct mdt_rec_unlink *)0)->ul_suppgid1_h) == 4, "found %lld\n",
2970                  (long long)(int)sizeof(((struct mdt_rec_unlink *)0)->ul_suppgid1_h));
2971         LASSERTF((int)offsetof(struct mdt_rec_unlink, ul_suppgid2) == 32, "found %lld\n",
2972                  (long long)(int)offsetof(struct mdt_rec_unlink, ul_suppgid2));
2973         LASSERTF((int)sizeof(((struct mdt_rec_unlink *)0)->ul_suppgid2) == 4, "found %lld\n",
2974                  (long long)(int)sizeof(((struct mdt_rec_unlink *)0)->ul_suppgid2));
2975         LASSERTF((int)offsetof(struct mdt_rec_unlink, ul_suppgid2_h) == 36, "found %lld\n",
2976                  (long long)(int)offsetof(struct mdt_rec_unlink, ul_suppgid2_h));
2977         LASSERTF((int)sizeof(((struct mdt_rec_unlink *)0)->ul_suppgid2_h) == 4, "found %lld\n",
2978                  (long long)(int)sizeof(((struct mdt_rec_unlink *)0)->ul_suppgid2_h));
2979         LASSERTF((int)offsetof(struct mdt_rec_unlink, ul_fid1) == 40, "found %lld\n",
2980                  (long long)(int)offsetof(struct mdt_rec_unlink, ul_fid1));
2981         LASSERTF((int)sizeof(((struct mdt_rec_unlink *)0)->ul_fid1) == 16, "found %lld\n",
2982                  (long long)(int)sizeof(((struct mdt_rec_unlink *)0)->ul_fid1));
2983         LASSERTF((int)offsetof(struct mdt_rec_unlink, ul_fid2) == 56, "found %lld\n",
2984                  (long long)(int)offsetof(struct mdt_rec_unlink, ul_fid2));
2985         LASSERTF((int)sizeof(((struct mdt_rec_unlink *)0)->ul_fid2) == 16, "found %lld\n",
2986                  (long long)(int)sizeof(((struct mdt_rec_unlink *)0)->ul_fid2));
2987         LASSERTF((int)offsetof(struct mdt_rec_unlink, ul_time) == 72, "found %lld\n",
2988                  (long long)(int)offsetof(struct mdt_rec_unlink, ul_time));
2989         LASSERTF((int)sizeof(((struct mdt_rec_unlink *)0)->ul_time) == 8, "found %lld\n",
2990                  (long long)(int)sizeof(((struct mdt_rec_unlink *)0)->ul_time));
2991         LASSERTF((int)offsetof(struct mdt_rec_unlink, ul_padding_2) == 80, "found %lld\n",
2992                  (long long)(int)offsetof(struct mdt_rec_unlink, ul_padding_2));
2993         LASSERTF((int)sizeof(((struct mdt_rec_unlink *)0)->ul_padding_2) == 8, "found %lld\n",
2994                  (long long)(int)sizeof(((struct mdt_rec_unlink *)0)->ul_padding_2));
2995         LASSERTF((int)offsetof(struct mdt_rec_unlink, ul_padding_3) == 88, "found %lld\n",
2996                  (long long)(int)offsetof(struct mdt_rec_unlink, ul_padding_3));
2997         LASSERTF((int)sizeof(((struct mdt_rec_unlink *)0)->ul_padding_3) == 8, "found %lld\n",
2998                  (long long)(int)sizeof(((struct mdt_rec_unlink *)0)->ul_padding_3));
2999         LASSERTF((int)offsetof(struct mdt_rec_unlink, ul_padding_4) == 96, "found %lld\n",
3000                  (long long)(int)offsetof(struct mdt_rec_unlink, ul_padding_4));
3001         LASSERTF((int)sizeof(((struct mdt_rec_unlink *)0)->ul_padding_4) == 8, "found %lld\n",
3002                  (long long)(int)sizeof(((struct mdt_rec_unlink *)0)->ul_padding_4));
3003         LASSERTF((int)offsetof(struct mdt_rec_unlink, ul_padding_5) == 104, "found %lld\n",
3004                  (long long)(int)offsetof(struct mdt_rec_unlink, ul_padding_5));
3005         LASSERTF((int)sizeof(((struct mdt_rec_unlink *)0)->ul_padding_5) == 8, "found %lld\n",
3006                  (long long)(int)sizeof(((struct mdt_rec_unlink *)0)->ul_padding_5));
3007         LASSERTF((int)offsetof(struct mdt_rec_unlink, ul_bias) == 112, "found %lld\n",
3008                  (long long)(int)offsetof(struct mdt_rec_unlink, ul_bias));
3009         LASSERTF((int)sizeof(((struct mdt_rec_unlink *)0)->ul_bias) == 4, "found %lld\n",
3010                  (long long)(int)sizeof(((struct mdt_rec_unlink *)0)->ul_bias));
3011         LASSERTF((int)offsetof(struct mdt_rec_unlink, ul_mode) == 116, "found %lld\n",
3012                  (long long)(int)offsetof(struct mdt_rec_unlink, ul_mode));
3013         LASSERTF((int)sizeof(((struct mdt_rec_unlink *)0)->ul_mode) == 4, "found %lld\n",
3014                  (long long)(int)sizeof(((struct mdt_rec_unlink *)0)->ul_mode));
3015         LASSERTF((int)offsetof(struct mdt_rec_unlink, ul_padding_6) == 120, "found %lld\n",
3016                  (long long)(int)offsetof(struct mdt_rec_unlink, ul_padding_6));
3017         LASSERTF((int)sizeof(((struct mdt_rec_unlink *)0)->ul_padding_6) == 4, "found %lld\n",
3018                  (long long)(int)sizeof(((struct mdt_rec_unlink *)0)->ul_padding_6));
3019         LASSERTF((int)offsetof(struct mdt_rec_unlink, ul_padding_7) == 124, "found %lld\n",
3020                  (long long)(int)offsetof(struct mdt_rec_unlink, ul_padding_7));
3021         LASSERTF((int)sizeof(((struct mdt_rec_unlink *)0)->ul_padding_7) == 4, "found %lld\n",
3022                  (long long)(int)sizeof(((struct mdt_rec_unlink *)0)->ul_padding_7));
3023         LASSERTF((int)offsetof(struct mdt_rec_unlink, ul_padding_8) == 128, "found %lld\n",
3024                  (long long)(int)offsetof(struct mdt_rec_unlink, ul_padding_8));
3025         LASSERTF((int)sizeof(((struct mdt_rec_unlink *)0)->ul_padding_8) == 4, "found %lld\n",
3026                  (long long)(int)sizeof(((struct mdt_rec_unlink *)0)->ul_padding_8));
3027         LASSERTF((int)offsetof(struct mdt_rec_unlink, ul_padding_9) == 132, "found %lld\n",
3028                  (long long)(int)offsetof(struct mdt_rec_unlink, ul_padding_9));
3029         LASSERTF((int)sizeof(((struct mdt_rec_unlink *)0)->ul_padding_9) == 4, "found %lld\n",
3030                  (long long)(int)sizeof(((struct mdt_rec_unlink *)0)->ul_padding_9));
3031
3032         /* Checks for struct mdt_rec_rename */
3033         LASSERTF((int)sizeof(struct mdt_rec_rename) == 136, "found %lld\n",
3034                  (long long)(int)sizeof(struct mdt_rec_rename));
3035         LASSERTF((int)offsetof(struct mdt_rec_rename, rn_opcode) == 0, "found %lld\n",
3036                  (long long)(int)offsetof(struct mdt_rec_rename, rn_opcode));
3037         LASSERTF((int)sizeof(((struct mdt_rec_rename *)0)->rn_opcode) == 4, "found %lld\n",
3038                  (long long)(int)sizeof(((struct mdt_rec_rename *)0)->rn_opcode));
3039         LASSERTF((int)offsetof(struct mdt_rec_rename, rn_cap) == 4, "found %lld\n",
3040                  (long long)(int)offsetof(struct mdt_rec_rename, rn_cap));
3041         LASSERTF((int)sizeof(((struct mdt_rec_rename *)0)->rn_cap) == 4, "found %lld\n",
3042                  (long long)(int)sizeof(((struct mdt_rec_rename *)0)->rn_cap));
3043         LASSERTF((int)offsetof(struct mdt_rec_rename, rn_fsuid) == 8, "found %lld\n",
3044                  (long long)(int)offsetof(struct mdt_rec_rename, rn_fsuid));
3045         LASSERTF((int)sizeof(((struct mdt_rec_rename *)0)->rn_fsuid) == 4, "found %lld\n",
3046                  (long long)(int)sizeof(((struct mdt_rec_rename *)0)->rn_fsuid));
3047         LASSERTF((int)offsetof(struct mdt_rec_rename, rn_fsuid_h) == 12, "found %lld\n",
3048                  (long long)(int)offsetof(struct mdt_rec_rename, rn_fsuid_h));
3049         LASSERTF((int)sizeof(((struct mdt_rec_rename *)0)->rn_fsuid_h) == 4, "found %lld\n",
3050                  (long long)(int)sizeof(((struct mdt_rec_rename *)0)->rn_fsuid_h));
3051         LASSERTF((int)offsetof(struct mdt_rec_rename, rn_fsgid) == 16, "found %lld\n",
3052                  (long long)(int)offsetof(struct mdt_rec_rename, rn_fsgid));
3053         LASSERTF((int)sizeof(((struct mdt_rec_rename *)0)->rn_fsgid) == 4, "found %lld\n",
3054                  (long long)(int)sizeof(((struct mdt_rec_rename *)0)->rn_fsgid));
3055         LASSERTF((int)offsetof(struct mdt_rec_rename, rn_fsgid_h) == 20, "found %lld\n",
3056                  (long long)(int)offsetof(struct mdt_rec_rename, rn_fsgid_h));
3057         LASSERTF((int)sizeof(((struct mdt_rec_rename *)0)->rn_fsgid_h) == 4, "found %lld\n",
3058                  (long long)(int)sizeof(((struct mdt_rec_rename *)0)->rn_fsgid_h));
3059         LASSERTF((int)offsetof(struct mdt_rec_rename, rn_suppgid1) == 24, "found %lld\n",
3060                  (long long)(int)offsetof(struct mdt_rec_rename, rn_suppgid1));
3061         LASSERTF((int)sizeof(((struct mdt_rec_rename *)0)->rn_suppgid1) == 4, "found %lld\n",
3062                  (long long)(int)sizeof(((struct mdt_rec_rename *)0)->rn_suppgid1));
3063         LASSERTF((int)offsetof(struct mdt_rec_rename, rn_suppgid1_h) == 28, "found %lld\n",
3064                  (long long)(int)offsetof(struct mdt_rec_rename, rn_suppgid1_h));
3065         LASSERTF((int)sizeof(((struct mdt_rec_rename *)0)->rn_suppgid1_h) == 4, "found %lld\n",
3066                  (long long)(int)sizeof(((struct mdt_rec_rename *)0)->rn_suppgid1_h));
3067         LASSERTF((int)offsetof(struct mdt_rec_rename, rn_suppgid2) == 32, "found %lld\n",
3068                  (long long)(int)offsetof(struct mdt_rec_rename, rn_suppgid2));
3069         LASSERTF((int)sizeof(((struct mdt_rec_rename *)0)->rn_suppgid2) == 4, "found %lld\n",
3070                  (long long)(int)sizeof(((struct mdt_rec_rename *)0)->rn_suppgid2));
3071         LASSERTF((int)offsetof(struct mdt_rec_rename, rn_suppgid2_h) == 36, "found %lld\n",
3072                  (long long)(int)offsetof(struct mdt_rec_rename, rn_suppgid2_h));
3073         LASSERTF((int)sizeof(((struct mdt_rec_rename *)0)->rn_suppgid2_h) == 4, "found %lld\n",
3074                  (long long)(int)sizeof(((struct mdt_rec_rename *)0)->rn_suppgid2_h));
3075         LASSERTF((int)offsetof(struct mdt_rec_rename, rn_fid1) == 40, "found %lld\n",
3076                  (long long)(int)offsetof(struct mdt_rec_rename, rn_fid1));
3077         LASSERTF((int)sizeof(((struct mdt_rec_rename *)0)->rn_fid1) == 16, "found %lld\n",
3078                  (long long)(int)sizeof(((struct mdt_rec_rename *)0)->rn_fid1));
3079         LASSERTF((int)offsetof(struct mdt_rec_rename, rn_fid2) == 56, "found %lld\n",
3080                  (long long)(int)offsetof(struct mdt_rec_rename, rn_fid2));
3081         LASSERTF((int)sizeof(((struct mdt_rec_rename *)0)->rn_fid2) == 16, "found %lld\n",
3082                  (long long)(int)sizeof(((struct mdt_rec_rename *)0)->rn_fid2));
3083         LASSERTF((int)offsetof(struct mdt_rec_rename, rn_time) == 72, "found %lld\n",
3084                  (long long)(int)offsetof(struct mdt_rec_rename, rn_time));
3085         LASSERTF((int)sizeof(((struct mdt_rec_rename *)0)->rn_time) == 8, "found %lld\n",
3086                  (long long)(int)sizeof(((struct mdt_rec_rename *)0)->rn_time));
3087         LASSERTF((int)offsetof(struct mdt_rec_rename, rn_padding_1) == 80, "found %lld\n",
3088                  (long long)(int)offsetof(struct mdt_rec_rename, rn_padding_1));
3089         LASSERTF((int)sizeof(((struct mdt_rec_rename *)0)->rn_padding_1) == 8, "found %lld\n",
3090                  (long long)(int)sizeof(((struct mdt_rec_rename *)0)->rn_padding_1));
3091         LASSERTF((int)offsetof(struct mdt_rec_rename, rn_padding_2) == 88, "found %lld\n",
3092                  (long long)(int)offsetof(struct mdt_rec_rename, rn_padding_2));
3093         LASSERTF((int)sizeof(((struct mdt_rec_rename *)0)->rn_padding_2) == 8, "found %lld\n",
3094                  (long long)(int)sizeof(((struct mdt_rec_rename *)0)->rn_padding_2));
3095         LASSERTF((int)offsetof(struct mdt_rec_rename, rn_padding_3) == 96, "found %lld\n",
3096                  (long long)(int)offsetof(struct mdt_rec_rename, rn_padding_3));
3097         LASSERTF((int)sizeof(((struct mdt_rec_rename *)0)->rn_padding_3) == 8, "found %lld\n",
3098                  (long long)(int)sizeof(((struct mdt_rec_rename *)0)->rn_padding_3));
3099         LASSERTF((int)offsetof(struct mdt_rec_rename, rn_padding_4) == 104, "found %lld\n",
3100                  (long long)(int)offsetof(struct mdt_rec_rename, rn_padding_4));
3101         LASSERTF((int)sizeof(((struct mdt_rec_rename *)0)->rn_padding_4) == 8, "found %lld\n",
3102                  (long long)(int)sizeof(((struct mdt_rec_rename *)0)->rn_padding_4));
3103         LASSERTF((int)offsetof(struct mdt_rec_rename, rn_bias) == 112, "found %lld\n",
3104                  (long long)(int)offsetof(struct mdt_rec_rename, rn_bias));
3105         LASSERTF((int)sizeof(((struct mdt_rec_rename *)0)->rn_bias) == 4, "found %lld\n",
3106                  (long long)(int)sizeof(((struct mdt_rec_rename *)0)->rn_bias));
3107         LASSERTF((int)offsetof(struct mdt_rec_rename, rn_mode) == 116, "found %lld\n",
3108                  (long long)(int)offsetof(struct mdt_rec_rename, rn_mode));
3109         LASSERTF((int)sizeof(((struct mdt_rec_rename *)0)->rn_mode) == 4, "found %lld\n",
3110                  (long long)(int)sizeof(((struct mdt_rec_rename *)0)->rn_mode));
3111         LASSERTF((int)offsetof(struct mdt_rec_rename, rn_padding_5) == 120, "found %lld\n",
3112                  (long long)(int)offsetof(struct mdt_rec_rename, rn_padding_5));
3113         LASSERTF((int)sizeof(((struct mdt_rec_rename *)0)->rn_padding_5) == 4, "found %lld\n",
3114                  (long long)(int)sizeof(((struct mdt_rec_rename *)0)->rn_padding_5));
3115         LASSERTF((int)offsetof(struct mdt_rec_rename, rn_padding_6) == 124, "found %lld\n",
3116                  (long long)(int)offsetof(struct mdt_rec_rename, rn_padding_6));
3117         LASSERTF((int)sizeof(((struct mdt_rec_rename *)0)->rn_padding_6) == 4, "found %lld\n",
3118                  (long long)(int)sizeof(((struct mdt_rec_rename *)0)->rn_padding_6));
3119         LASSERTF((int)offsetof(struct mdt_rec_rename, rn_padding_7) == 128, "found %lld\n",
3120                  (long long)(int)offsetof(struct mdt_rec_rename, rn_padding_7));
3121         LASSERTF((int)sizeof(((struct mdt_rec_rename *)0)->rn_padding_7) == 4, "found %lld\n",
3122                  (long long)(int)sizeof(((struct mdt_rec_rename *)0)->rn_padding_7));
3123         LASSERTF((int)offsetof(struct mdt_rec_rename, rn_padding_8) == 132, "found %lld\n",
3124                  (long long)(int)offsetof(struct mdt_rec_rename, rn_padding_8));
3125         LASSERTF((int)sizeof(((struct mdt_rec_rename *)0)->rn_padding_8) == 4, "found %lld\n",
3126                  (long long)(int)sizeof(((struct mdt_rec_rename *)0)->rn_padding_8));
3127
3128         /* Checks for struct mdt_rec_setxattr */
3129         LASSERTF((int)sizeof(struct mdt_rec_setxattr) == 136, "found %lld\n",
3130                  (long long)(int)sizeof(struct mdt_rec_setxattr));
3131         LASSERTF((int)offsetof(struct mdt_rec_setxattr, sx_opcode) == 0, "found %lld\n",
3132                  (long long)(int)offsetof(struct mdt_rec_setxattr, sx_opcode));
3133         LASSERTF((int)sizeof(((struct mdt_rec_setxattr *)0)->sx_opcode) == 4, "found %lld\n",
3134                  (long long)(int)sizeof(((struct mdt_rec_setxattr *)0)->sx_opcode));
3135         LASSERTF((int)offsetof(struct mdt_rec_setxattr, sx_cap) == 4, "found %lld\n",
3136                  (long long)(int)offsetof(struct mdt_rec_setxattr, sx_cap));
3137         LASSERTF((int)sizeof(((struct mdt_rec_setxattr *)0)->sx_cap) == 4, "found %lld\n",
3138                  (long long)(int)sizeof(((struct mdt_rec_setxattr *)0)->sx_cap));
3139         LASSERTF((int)offsetof(struct mdt_rec_setxattr, sx_fsuid) == 8, "found %lld\n",
3140                  (long long)(int)offsetof(struct mdt_rec_setxattr, sx_fsuid));
3141         LASSERTF((int)sizeof(((struct mdt_rec_setxattr *)0)->sx_fsuid) == 4, "found %lld\n",
3142                  (long long)(int)sizeof(((struct mdt_rec_setxattr *)0)->sx_fsuid));
3143         LASSERTF((int)offsetof(struct mdt_rec_setxattr, sx_fsuid_h) == 12, "found %lld\n",
3144                  (long long)(int)offsetof(struct mdt_rec_setxattr, sx_fsuid_h));
3145         LASSERTF((int)sizeof(((struct mdt_rec_setxattr *)0)->sx_fsuid_h) == 4, "found %lld\n",
3146                  (long long)(int)sizeof(((struct mdt_rec_setxattr *)0)->sx_fsuid_h));
3147         LASSERTF((int)offsetof(struct mdt_rec_setxattr, sx_fsgid) == 16, "found %lld\n",
3148                  (long long)(int)offsetof(struct mdt_rec_setxattr, sx_fsgid));
3149         LASSERTF((int)sizeof(((struct mdt_rec_setxattr *)0)->sx_fsgid) == 4, "found %lld\n",
3150                  (long long)(int)sizeof(((struct mdt_rec_setxattr *)0)->sx_fsgid));
3151         LASSERTF((int)offsetof(struct mdt_rec_setxattr, sx_fsgid_h) == 20, "found %lld\n",
3152                  (long long)(int)offsetof(struct mdt_rec_setxattr, sx_fsgid_h));
3153         LASSERTF((int)sizeof(((struct mdt_rec_setxattr *)0)->sx_fsgid_h) == 4, "found %lld\n",
3154                  (long long)(int)sizeof(((struct mdt_rec_setxattr *)0)->sx_fsgid_h));
3155         LASSERTF((int)offsetof(struct mdt_rec_setxattr, sx_suppgid1) == 24, "found %lld\n",
3156                  (long long)(int)offsetof(struct mdt_rec_setxattr, sx_suppgid1));
3157         LASSERTF((int)sizeof(((struct mdt_rec_setxattr *)0)->sx_suppgid1) == 4, "found %lld\n",
3158                  (long long)(int)sizeof(((struct mdt_rec_setxattr *)0)->sx_suppgid1));
3159         LASSERTF((int)offsetof(struct mdt_rec_setxattr, sx_suppgid1_h) == 28, "found %lld\n",
3160                  (long long)(int)offsetof(struct mdt_rec_setxattr, sx_suppgid1_h));
3161         LASSERTF((int)sizeof(((struct mdt_rec_setxattr *)0)->sx_suppgid1_h) == 4, "found %lld\n",
3162                  (long long)(int)sizeof(((struct mdt_rec_setxattr *)0)->sx_suppgid1_h));
3163         LASSERTF((int)offsetof(struct mdt_rec_setxattr, sx_suppgid2) == 32, "found %lld\n",
3164                  (long long)(int)offsetof(struct mdt_rec_setxattr, sx_suppgid2));
3165         LASSERTF((int)sizeof(((struct mdt_rec_setxattr *)0)->sx_suppgid2) == 4, "found %lld\n",
3166                  (long long)(int)sizeof(((struct mdt_rec_setxattr *)0)->sx_suppgid2));
3167         LASSERTF((int)offsetof(struct mdt_rec_setxattr, sx_suppgid2_h) == 36, "found %lld\n",
3168                  (long long)(int)offsetof(struct mdt_rec_setxattr, sx_suppgid2_h));
3169         LASSERTF((int)sizeof(((struct mdt_rec_setxattr *)0)->sx_suppgid2_h) == 4, "found %lld\n",
3170                  (long long)(int)sizeof(((struct mdt_rec_setxattr *)0)->sx_suppgid2_h));
3171         LASSERTF((int)offsetof(struct mdt_rec_setxattr, sx_fid) == 40, "found %lld\n",
3172                  (long long)(int)offsetof(struct mdt_rec_setxattr, sx_fid));
3173         LASSERTF((int)sizeof(((struct mdt_rec_setxattr *)0)->sx_fid) == 16, "found %lld\n",
3174                  (long long)(int)sizeof(((struct mdt_rec_setxattr *)0)->sx_fid));
3175         LASSERTF((int)offsetof(struct mdt_rec_setxattr, sx_padding_1) == 56, "found %lld\n",
3176                  (long long)(int)offsetof(struct mdt_rec_setxattr, sx_padding_1));
3177         LASSERTF((int)sizeof(((struct mdt_rec_setxattr *)0)->sx_padding_1) == 8, "found %lld\n",
3178                  (long long)(int)sizeof(((struct mdt_rec_setxattr *)0)->sx_padding_1));
3179         LASSERTF((int)offsetof(struct mdt_rec_setxattr, sx_padding_2) == 64, "found %lld\n",
3180                  (long long)(int)offsetof(struct mdt_rec_setxattr, sx_padding_2));
3181         LASSERTF((int)sizeof(((struct mdt_rec_setxattr *)0)->sx_padding_2) == 4, "found %lld\n",
3182                  (long long)(int)sizeof(((struct mdt_rec_setxattr *)0)->sx_padding_2));
3183         LASSERTF((int)offsetof(struct mdt_rec_setxattr, sx_padding_3) == 68, "found %lld\n",
3184                  (long long)(int)offsetof(struct mdt_rec_setxattr, sx_padding_3));
3185         LASSERTF((int)sizeof(((struct mdt_rec_setxattr *)0)->sx_padding_3) == 4, "found %lld\n",
3186                  (long long)(int)sizeof(((struct mdt_rec_setxattr *)0)->sx_padding_3));
3187         LASSERTF((int)offsetof(struct mdt_rec_setxattr, sx_valid) == 72, "found %lld\n",
3188                  (long long)(int)offsetof(struct mdt_rec_setxattr, sx_valid));
3189         LASSERTF((int)sizeof(((struct mdt_rec_setxattr *)0)->sx_valid) == 8, "found %lld\n",
3190                  (long long)(int)sizeof(((struct mdt_rec_setxattr *)0)->sx_valid));
3191         LASSERTF((int)offsetof(struct mdt_rec_setxattr, sx_time) == 80, "found %lld\n",
3192                  (long long)(int)offsetof(struct mdt_rec_setxattr, sx_time));
3193         LASSERTF((int)sizeof(((struct mdt_rec_setxattr *)0)->sx_time) == 8, "found %lld\n",
3194                  (long long)(int)sizeof(((struct mdt_rec_setxattr *)0)->sx_time));
3195         LASSERTF((int)offsetof(struct mdt_rec_setxattr, sx_padding_5) == 88, "found %lld\n",
3196                  (long long)(int)offsetof(struct mdt_rec_setxattr, sx_padding_5));
3197         LASSERTF((int)sizeof(((struct mdt_rec_setxattr *)0)->sx_padding_5) == 8, "found %lld\n",
3198                  (long long)(int)sizeof(((struct mdt_rec_setxattr *)0)->sx_padding_5));
3199         LASSERTF((int)offsetof(struct mdt_rec_setxattr, sx_padding_6) == 96, "found %lld\n",
3200                  (long long)(int)offsetof(struct mdt_rec_setxattr, sx_padding_6));
3201         LASSERTF((int)sizeof(((struct mdt_rec_setxattr *)0)->sx_padding_6) == 8, "found %lld\n",
3202                  (long long)(int)sizeof(((struct mdt_rec_setxattr *)0)->sx_padding_6));
3203         LASSERTF((int)offsetof(struct mdt_rec_setxattr, sx_padding_7) == 104, "found %lld\n",
3204                  (long long)(int)offsetof(struct mdt_rec_setxattr, sx_padding_7));
3205         LASSERTF((int)sizeof(((struct mdt_rec_setxattr *)0)->sx_padding_7) == 8, "found %lld\n",
3206                  (long long)(int)sizeof(((struct mdt_rec_setxattr *)0)->sx_padding_7));
3207         LASSERTF((int)offsetof(struct mdt_rec_setxattr, sx_size) == 112, "found %lld\n",
3208                  (long long)(int)offsetof(struct mdt_rec_setxattr, sx_size));
3209         LASSERTF((int)sizeof(((struct mdt_rec_setxattr *)0)->sx_size) == 4, "found %lld\n",
3210                  (long long)(int)sizeof(((struct mdt_rec_setxattr *)0)->sx_size));
3211         LASSERTF((int)offsetof(struct mdt_rec_setxattr, sx_flags) == 116, "found %lld\n",
3212                  (long long)(int)offsetof(struct mdt_rec_setxattr, sx_flags));
3213         LASSERTF((int)sizeof(((struct mdt_rec_setxattr *)0)->sx_flags) == 4, "found %lld\n",
3214                  (long long)(int)sizeof(((struct mdt_rec_setxattr *)0)->sx_flags));
3215         LASSERTF((int)offsetof(struct mdt_rec_setxattr, sx_padding_8) == 120, "found %lld\n",
3216                  (long long)(int)offsetof(struct mdt_rec_setxattr, sx_padding_8));
3217         LASSERTF((int)sizeof(((struct mdt_rec_setxattr *)0)->sx_padding_8) == 4, "found %lld\n",
3218                  (long long)(int)sizeof(((struct mdt_rec_setxattr *)0)->sx_padding_8));
3219         LASSERTF((int)offsetof(struct mdt_rec_setxattr, sx_padding_9) == 124, "found %lld\n",
3220                  (long long)(int)offsetof(struct mdt_rec_setxattr, sx_padding_9));
3221         LASSERTF((int)sizeof(((struct mdt_rec_setxattr *)0)->sx_padding_9) == 4, "found %lld\n",
3222                  (long long)(int)sizeof(((struct mdt_rec_setxattr *)0)->sx_padding_9));
3223         LASSERTF((int)offsetof(struct mdt_rec_setxattr, sx_padding_10) == 128, "found %lld\n",
3224                  (long long)(int)offsetof(struct mdt_rec_setxattr, sx_padding_10));
3225         LASSERTF((int)sizeof(((struct mdt_rec_setxattr *)0)->sx_padding_10) == 4, "found %lld\n",
3226                  (long long)(int)sizeof(((struct mdt_rec_setxattr *)0)->sx_padding_10));
3227         LASSERTF((int)offsetof(struct mdt_rec_setxattr, sx_padding_11) == 132, "found %lld\n",
3228                  (long long)(int)offsetof(struct mdt_rec_setxattr, sx_padding_11));
3229         LASSERTF((int)sizeof(((struct mdt_rec_setxattr *)0)->sx_padding_11) == 4, "found %lld\n",
3230                  (long long)(int)sizeof(((struct mdt_rec_setxattr *)0)->sx_padding_11));
3231
3232         /* Checks for struct mdt_rec_resync */
3233         LASSERTF((int)sizeof(struct mdt_rec_resync) == 136, "found %lld\n",
3234                  (long long)(int)sizeof(struct mdt_rec_resync));
3235         LASSERTF((int)offsetof(struct mdt_rec_resync, rs_opcode) == 0, "found %lld\n",
3236                  (long long)(int)offsetof(struct mdt_rec_resync, rs_opcode));
3237         LASSERTF((int)sizeof(((struct mdt_rec_resync *)0)->rs_opcode) == 4, "found %lld\n",
3238                  (long long)(int)sizeof(((struct mdt_rec_resync *)0)->rs_opcode));
3239         LASSERTF((int)offsetof(struct mdt_rec_resync, rs_cap) == 4, "found %lld\n",
3240                  (long long)(int)offsetof(struct mdt_rec_resync, rs_cap));
3241         LASSERTF((int)sizeof(((struct mdt_rec_resync *)0)->rs_cap) == 4, "found %lld\n",
3242                  (long long)(int)sizeof(((struct mdt_rec_resync *)0)->rs_cap));
3243         LASSERTF((int)offsetof(struct mdt_rec_resync, rs_fsuid) == 8, "found %lld\n",
3244                  (long long)(int)offsetof(struct mdt_rec_resync, rs_fsuid));
3245         LASSERTF((int)sizeof(((struct mdt_rec_resync *)0)->rs_fsuid) == 4, "found %lld\n",
3246                  (long long)(int)sizeof(((struct mdt_rec_resync *)0)->rs_fsuid));
3247         LASSERTF((int)offsetof(struct mdt_rec_resync, rs_fsuid_h) == 12, "found %lld\n",
3248                  (long long)(int)offsetof(struct mdt_rec_resync, rs_fsuid_h));
3249         LASSERTF((int)sizeof(((struct mdt_rec_resync *)0)->rs_fsuid_h) == 4, "found %lld\n",
3250                  (long long)(int)sizeof(((struct mdt_rec_resync *)0)->rs_fsuid_h));
3251         LASSERTF((int)offsetof(struct mdt_rec_resync, rs_fsgid) == 16, "found %lld\n",
3252                  (long long)(int)offsetof(struct mdt_rec_resync, rs_fsgid));
3253         LASSERTF((int)sizeof(((struct mdt_rec_resync *)0)->rs_fsgid) == 4, "found %lld\n",
3254                  (long long)(int)sizeof(((struct mdt_rec_resync *)0)->rs_fsgid));
3255         LASSERTF((int)offsetof(struct mdt_rec_resync, rs_fsgid_h) == 20, "found %lld\n",
3256                  (long long)(int)offsetof(struct mdt_rec_resync, rs_fsgid_h));
3257         LASSERTF((int)sizeof(((struct mdt_rec_resync *)0)->rs_fsgid_h) == 4, "found %lld\n",
3258                  (long long)(int)sizeof(((struct mdt_rec_resync *)0)->rs_fsgid_h));
3259         LASSERTF((int)offsetof(struct mdt_rec_resync, rs_suppgid1) == 24, "found %lld\n",
3260                  (long long)(int)offsetof(struct mdt_rec_resync, rs_suppgid1));
3261         LASSERTF((int)sizeof(((struct mdt_rec_resync *)0)->rs_suppgid1) == 4, "found %lld\n",
3262                  (long long)(int)sizeof(((struct mdt_rec_resync *)0)->rs_suppgid1));
3263         LASSERTF((int)offsetof(struct mdt_rec_resync, rs_suppgid1_h) == 28, "found %lld\n",
3264                  (long long)(int)offsetof(struct mdt_rec_resync, rs_suppgid1_h));
3265         LASSERTF((int)sizeof(((struct mdt_rec_resync *)0)->rs_suppgid1_h) == 4, "found %lld\n",
3266                  (long long)(int)sizeof(((struct mdt_rec_resync *)0)->rs_suppgid1_h));
3267         LASSERTF((int)offsetof(struct mdt_rec_resync, rs_suppgid2) == 32, "found %lld\n",
3268                  (long long)(int)offsetof(struct mdt_rec_resync, rs_suppgid2));
3269         LASSERTF((int)sizeof(((struct mdt_rec_resync *)0)->rs_suppgid2) == 4, "found %lld\n",
3270                  (long long)(int)sizeof(((struct mdt_rec_resync *)0)->rs_suppgid2));
3271         LASSERTF((int)offsetof(struct mdt_rec_resync, rs_suppgid2_h) == 36, "found %lld\n",
3272                  (long long)(int)offsetof(struct mdt_rec_resync, rs_suppgid2_h));
3273         LASSERTF((int)sizeof(((struct mdt_rec_resync *)0)->rs_suppgid2_h) == 4, "found %lld\n",
3274                  (long long)(int)sizeof(((struct mdt_rec_resync *)0)->rs_suppgid2_h));
3275         LASSERTF((int)offsetof(struct mdt_rec_resync, rs_fid) == 40, "found %lld\n",
3276                  (long long)(int)offsetof(struct mdt_rec_resync, rs_fid));
3277         LASSERTF((int)sizeof(((struct mdt_rec_resync *)0)->rs_fid) == 16, "found %lld\n",
3278                  (long long)(int)sizeof(((struct mdt_rec_resync *)0)->rs_fid));
3279         LASSERTF((int)offsetof(struct mdt_rec_resync, rs_padding0) == 56, "found %lld\n",
3280                  (long long)(int)offsetof(struct mdt_rec_resync, rs_padding0));
3281         LASSERTF((int)sizeof(((struct mdt_rec_resync *)0)->rs_padding0) == 16, "found %lld\n",
3282                  (long long)(int)sizeof(((struct mdt_rec_resync *)0)->rs_padding0));
3283         LASSERTF((int)offsetof(struct mdt_rec_resync, rs_lease_handle) == 72, "found %lld\n",
3284                  (long long)(int)offsetof(struct mdt_rec_resync, rs_lease_handle));
3285         LASSERTF((int)sizeof(((struct mdt_rec_resync *)0)->rs_lease_handle) == 8, "found %lld\n",
3286                  (long long)(int)sizeof(((struct mdt_rec_resync *)0)->rs_lease_handle));
3287         LASSERTF((int)offsetof(struct mdt_rec_resync, rs_padding1) == 80, "found %lld\n",
3288                  (long long)(int)offsetof(struct mdt_rec_resync, rs_padding1));
3289         LASSERTF((int)sizeof(((struct mdt_rec_resync *)0)->rs_padding1) == 8, "found %lld\n",
3290                  (long long)(int)sizeof(((struct mdt_rec_resync *)0)->rs_padding1));
3291         LASSERTF((int)offsetof(struct mdt_rec_resync, rs_padding2) == 88, "found %lld\n",
3292                  (long long)(int)offsetof(struct mdt_rec_resync, rs_padding2));
3293         LASSERTF((int)sizeof(((struct mdt_rec_resync *)0)->rs_padding2) == 8, "found %lld\n",
3294                  (long long)(int)sizeof(((struct mdt_rec_resync *)0)->rs_padding2));
3295         LASSERTF((int)offsetof(struct mdt_rec_resync, rs_padding3) == 96, "found %lld\n",
3296                  (long long)(int)offsetof(struct mdt_rec_resync, rs_padding3));
3297         LASSERTF((int)sizeof(((struct mdt_rec_resync *)0)->rs_padding3) == 8, "found %lld\n",
3298                  (long long)(int)sizeof(((struct mdt_rec_resync *)0)->rs_padding3));
3299         LASSERTF((int)offsetof(struct mdt_rec_resync, rs_padding4) == 104, "found %lld\n",
3300                  (long long)(int)offsetof(struct mdt_rec_resync, rs_padding4));
3301         LASSERTF((int)sizeof(((struct mdt_rec_resync *)0)->rs_padding4) == 8, "found %lld\n",
3302                  (long long)(int)sizeof(((struct mdt_rec_resync *)0)->rs_padding4));
3303         LASSERTF((int)offsetof(struct mdt_rec_resync, rs_bias) == 112, "found %lld\n",
3304                  (long long)(int)offsetof(struct mdt_rec_resync, rs_bias));
3305         LASSERTF((int)sizeof(((struct mdt_rec_resync *)0)->rs_bias) == 4, "found %lld\n",
3306                  (long long)(int)sizeof(((struct mdt_rec_resync *)0)->rs_bias));
3307         LASSERTF((int)offsetof(struct mdt_rec_resync, rs_padding5) == 116, "found %lld\n",
3308                  (long long)(int)offsetof(struct mdt_rec_resync, rs_padding5));
3309         LASSERTF((int)sizeof(((struct mdt_rec_resync *)0)->rs_padding5) == 4, "found %lld\n",
3310                  (long long)(int)sizeof(((struct mdt_rec_resync *)0)->rs_padding5));
3311         LASSERTF((int)offsetof(struct mdt_rec_resync, rs_padding6) == 120, "found %lld\n",
3312                  (long long)(int)offsetof(struct mdt_rec_resync, rs_padding6));
3313         LASSERTF((int)sizeof(((struct mdt_rec_resync *)0)->rs_padding6) == 4, "found %lld\n",
3314                  (long long)(int)sizeof(((struct mdt_rec_resync *)0)->rs_padding6));
3315         LASSERTF((int)offsetof(struct mdt_rec_resync, rs_padding7) == 124, "found %lld\n",
3316                  (long long)(int)offsetof(struct mdt_rec_resync, rs_padding7));
3317         LASSERTF((int)sizeof(((struct mdt_rec_resync *)0)->rs_padding7) == 4, "found %lld\n",
3318                  (long long)(int)sizeof(((struct mdt_rec_resync *)0)->rs_padding7));
3319         LASSERTF((int)offsetof(struct mdt_rec_resync, rs_padding8) == 128, "found %lld\n",
3320                  (long long)(int)offsetof(struct mdt_rec_resync, rs_padding8));
3321         LASSERTF((int)sizeof(((struct mdt_rec_resync *)0)->rs_padding8) == 4, "found %lld\n",
3322                  (long long)(int)sizeof(((struct mdt_rec_resync *)0)->rs_padding8));
3323         LASSERTF((int)offsetof(struct mdt_rec_resync, rs_mirror_id) == 132, "found %lld\n",
3324                  (long long)(int)offsetof(struct mdt_rec_resync, rs_mirror_id));
3325         LASSERTF((int)sizeof(((struct mdt_rec_resync *)0)->rs_mirror_id) == 2, "found %lld\n",
3326                  (long long)(int)sizeof(((struct mdt_rec_resync *)0)->rs_mirror_id));
3327         LASSERTF((int)offsetof(struct mdt_rec_resync, rs_padding9) == 134, "found %lld\n",
3328                  (long long)(int)offsetof(struct mdt_rec_resync, rs_padding9));
3329         LASSERTF((int)sizeof(((struct mdt_rec_resync *)0)->rs_padding9) == 2, "found %lld\n",
3330                  (long long)(int)sizeof(((struct mdt_rec_resync *)0)->rs_padding9));
3331
3332         /* Checks for struct mdt_rec_reint */
3333         LASSERTF((int)sizeof(struct mdt_rec_reint) == 136, "found %lld\n",
3334                  (long long)(int)sizeof(struct mdt_rec_reint));
3335         LASSERTF((int)offsetof(struct mdt_rec_reint, rr_opcode) == 0, "found %lld\n",
3336                  (long long)(int)offsetof(struct mdt_rec_reint, rr_opcode));
3337         LASSERTF((int)sizeof(((struct mdt_rec_reint *)0)->rr_opcode) == 4, "found %lld\n",
3338                  (long long)(int)sizeof(((struct mdt_rec_reint *)0)->rr_opcode));
3339         LASSERTF((int)offsetof(struct mdt_rec_reint, rr_cap) == 4, "found %lld\n",
3340                  (long long)(int)offsetof(struct mdt_rec_reint, rr_cap));
3341         LASSERTF((int)sizeof(((struct mdt_rec_reint *)0)->rr_cap) == 4, "found %lld\n",
3342                  (long long)(int)sizeof(((struct mdt_rec_reint *)0)->rr_cap));
3343         LASSERTF((int)offsetof(struct mdt_rec_reint, rr_fsuid) == 8, "found %lld\n",
3344                  (long long)(int)offsetof(struct mdt_rec_reint, rr_fsuid));
3345         LASSERTF((int)sizeof(((struct mdt_rec_reint *)0)->rr_fsuid) == 4, "found %lld\n",
3346                  (long long)(int)sizeof(((struct mdt_rec_reint *)0)->rr_fsuid));
3347         LASSERTF((int)offsetof(struct mdt_rec_reint, rr_fsuid_h) == 12, "found %lld\n",
3348                  (long long)(int)offsetof(struct mdt_rec_reint, rr_fsuid_h));
3349         LASSERTF((int)sizeof(((struct mdt_rec_reint *)0)->rr_fsuid_h) == 4, "found %lld\n",
3350                  (long long)(int)sizeof(((struct mdt_rec_reint *)0)->rr_fsuid_h));
3351         LASSERTF((int)offsetof(struct mdt_rec_reint, rr_fsgid) == 16, "found %lld\n",
3352                  (long long)(int)offsetof(struct mdt_rec_reint, rr_fsgid));
3353         LASSERTF((int)sizeof(((struct mdt_rec_reint *)0)->rr_fsgid) == 4, "found %lld\n",
3354                  (long long)(int)sizeof(((struct mdt_rec_reint *)0)->rr_fsgid));
3355         LASSERTF((int)offsetof(struct mdt_rec_reint, rr_fsgid_h) == 20, "found %lld\n",
3356                  (long long)(int)offsetof(struct mdt_rec_reint, rr_fsgid_h));
3357         LASSERTF((int)sizeof(((struct mdt_rec_reint *)0)->rr_fsgid_h) == 4, "found %lld\n",
3358                  (long long)(int)sizeof(((struct mdt_rec_reint *)0)->rr_fsgid_h));
3359         LASSERTF((int)offsetof(struct mdt_rec_reint, rr_suppgid1) == 24, "found %lld\n",
3360                  (long long)(int)offsetof(struct mdt_rec_reint, rr_suppgid1));
3361         LASSERTF((int)sizeof(((struct mdt_rec_reint *)0)->rr_suppgid1) == 4, "found %lld\n",
3362                  (long long)(int)sizeof(((struct mdt_rec_reint *)0)->rr_suppgid1));
3363         LASSERTF((int)offsetof(struct mdt_rec_reint, rr_suppgid1_h) == 28, "found %lld\n",
3364                  (long long)(int)offsetof(struct mdt_rec_reint, rr_suppgid1_h));
3365         LASSERTF((int)sizeof(((struct mdt_rec_reint *)0)->rr_suppgid1_h) == 4, "found %lld\n",
3366                  (long long)(int)sizeof(((struct mdt_rec_reint *)0)->rr_suppgid1_h));
3367         LASSERTF((int)offsetof(struct mdt_rec_reint, rr_suppgid2) == 32, "found %lld\n",
3368                  (long long)(int)offsetof(struct mdt_rec_reint, rr_suppgid2));
3369         LASSERTF((int)sizeof(((struct mdt_rec_reint *)0)->rr_suppgid2) == 4, "found %lld\n",
3370                  (long long)(int)sizeof(((struct mdt_rec_reint *)0)->rr_suppgid2));
3371         LASSERTF((int)offsetof(struct mdt_rec_reint, rr_suppgid2_h) == 36, "found %lld\n",
3372                  (long long)(int)offsetof(struct mdt_rec_reint, rr_suppgid2_h));
3373         LASSERTF((int)sizeof(((struct mdt_rec_reint *)0)->rr_suppgid2_h) == 4, "found %lld\n",
3374                  (long long)(int)sizeof(((struct mdt_rec_reint *)0)->rr_suppgid2_h));
3375         LASSERTF((int)offsetof(struct mdt_rec_reint, rr_fid1) == 40, "found %lld\n",
3376                  (long long)(int)offsetof(struct mdt_rec_reint, rr_fid1));
3377         LASSERTF((int)sizeof(((struct mdt_rec_reint *)0)->rr_fid1) == 16, "found %lld\n",
3378                  (long long)(int)sizeof(((struct mdt_rec_reint *)0)->rr_fid1));
3379         LASSERTF((int)offsetof(struct mdt_rec_reint, rr_fid2) == 56, "found %lld\n",
3380                  (long long)(int)offsetof(struct mdt_rec_reint, rr_fid2));
3381         LASSERTF((int)sizeof(((struct mdt_rec_reint *)0)->rr_fid2) == 16, "found %lld\n",
3382                  (long long)(int)sizeof(((struct mdt_rec_reint *)0)->rr_fid2));
3383         LASSERTF((int)offsetof(struct mdt_rec_reint, rr_mtime) == 72, "found %lld\n",
3384                  (long long)(int)offsetof(struct mdt_rec_reint, rr_mtime));
3385         LASSERTF((int)sizeof(((struct mdt_rec_reint *)0)->rr_mtime) == 8, "found %lld\n",
3386                  (long long)(int)sizeof(((struct mdt_rec_reint *)0)->rr_mtime));
3387         LASSERTF((int)offsetof(struct mdt_rec_reint, rr_atime) == 80, "found %lld\n",
3388                  (long long)(int)offsetof(struct mdt_rec_reint, rr_atime));
3389         LASSERTF((int)sizeof(((struct mdt_rec_reint *)0)->rr_atime) == 8, "found %lld\n",
3390                  (long long)(int)sizeof(((struct mdt_rec_reint *)0)->rr_atime));
3391         LASSERTF((int)offsetof(struct mdt_rec_reint, rr_ctime) == 88, "found %lld\n",
3392                  (long long)(int)offsetof(struct mdt_rec_reint, rr_ctime));
3393         LASSERTF((int)sizeof(((struct mdt_rec_reint *)0)->rr_ctime) == 8, "found %lld\n",
3394                  (long long)(int)sizeof(((struct mdt_rec_reint *)0)->rr_ctime));
3395         LASSERTF((int)offsetof(struct mdt_rec_reint, rr_size) == 96, "found %lld\n",
3396                  (long long)(int)offsetof(struct mdt_rec_reint, rr_size));
3397         LASSERTF((int)sizeof(((struct mdt_rec_reint *)0)->rr_size) == 8, "found %lld\n",
3398                  (long long)(int)sizeof(((struct mdt_rec_reint *)0)->rr_size));
3399         LASSERTF((int)offsetof(struct mdt_rec_reint, rr_blocks) == 104, "found %lld\n",
3400                  (long long)(int)offsetof(struct mdt_rec_reint, rr_blocks));
3401         LASSERTF((int)sizeof(((struct mdt_rec_reint *)0)->rr_blocks) == 8, "found %lld\n",
3402                  (long long)(int)sizeof(((struct mdt_rec_reint *)0)->rr_blocks));
3403         LASSERTF((int)offsetof(struct mdt_rec_reint, rr_bias) == 112, "found %lld\n",
3404                  (long long)(int)offsetof(struct mdt_rec_reint, rr_bias));
3405         LASSERTF((int)sizeof(((struct mdt_rec_reint *)0)->rr_bias) == 4, "found %lld\n",
3406                  (long long)(int)sizeof(((struct mdt_rec_reint *)0)->rr_bias));
3407         LASSERTF((int)offsetof(struct mdt_rec_reint, rr_mode) == 116, "found %lld\n",
3408                  (long long)(int)offsetof(struct mdt_rec_reint, rr_mode));
3409         LASSERTF((int)sizeof(((struct mdt_rec_reint *)0)->rr_mode) == 4, "found %lld\n",
3410                  (long long)(int)sizeof(((struct mdt_rec_reint *)0)->rr_mode));
3411         LASSERTF((int)offsetof(struct mdt_rec_reint, rr_flags) == 120, "found %lld\n",
3412                  (long long)(int)offsetof(struct mdt_rec_reint, rr_flags));
3413         LASSERTF((int)sizeof(((struct mdt_rec_reint *)0)->rr_flags) == 4, "found %lld\n",
3414                  (long long)(int)sizeof(((struct mdt_rec_reint *)0)->rr_flags));
3415         LASSERTF((int)offsetof(struct mdt_rec_reint, rr_flags_h) == 124, "found %lld\n",
3416                  (long long)(int)offsetof(struct mdt_rec_reint, rr_flags_h));
3417         LASSERTF((int)sizeof(((struct mdt_rec_reint *)0)->rr_flags_h) == 4, "found %lld\n",
3418                  (long long)(int)sizeof(((struct mdt_rec_reint *)0)->rr_flags_h));
3419         LASSERTF((int)offsetof(struct mdt_rec_reint, rr_umask) == 128, "found %lld\n",
3420                  (long long)(int)offsetof(struct mdt_rec_reint, rr_umask));
3421         LASSERTF((int)sizeof(((struct mdt_rec_reint *)0)->rr_umask) == 4, "found %lld\n",
3422                  (long long)(int)sizeof(((struct mdt_rec_reint *)0)->rr_umask));
3423         LASSERTF((int)offsetof(struct mdt_rec_reint, rr_mirror_id) == 132, "found %lld\n",
3424                  (long long)(int)offsetof(struct mdt_rec_reint, rr_mirror_id));
3425         LASSERTF((int)sizeof(((struct mdt_rec_reint *)0)->rr_mirror_id) == 2, "found %lld\n",
3426                  (long long)(int)sizeof(((struct mdt_rec_reint *)0)->rr_mirror_id));
3427         LASSERTF((int)offsetof(struct mdt_rec_reint, rr_padding_4) == 134, "found %lld\n",
3428                  (long long)(int)offsetof(struct mdt_rec_reint, rr_padding_4));
3429         LASSERTF((int)sizeof(((struct mdt_rec_reint *)0)->rr_padding_4) == 2, "found %lld\n",
3430                  (long long)(int)sizeof(((struct mdt_rec_reint *)0)->rr_padding_4));
3431
3432         /* Checks for struct lmv_desc */
3433         LASSERTF((int)sizeof(struct lmv_desc) == 88, "found %lld\n",
3434                  (long long)(int)sizeof(struct lmv_desc));
3435         LASSERTF((int)offsetof(struct lmv_desc, ld_tgt_count) == 0, "found %lld\n",
3436                  (long long)(int)offsetof(struct lmv_desc, ld_tgt_count));
3437         LASSERTF((int)sizeof(((struct lmv_desc *)0)->ld_tgt_count) == 4, "found %lld\n",
3438                  (long long)(int)sizeof(((struct lmv_desc *)0)->ld_tgt_count));
3439         LASSERTF((int)offsetof(struct lmv_desc, ld_active_tgt_count) == 4, "found %lld\n",
3440                  (long long)(int)offsetof(struct lmv_desc, ld_active_tgt_count));
3441         LASSERTF((int)sizeof(((struct lmv_desc *)0)->ld_active_tgt_count) == 4, "found %lld\n",
3442                  (long long)(int)sizeof(((struct lmv_desc *)0)->ld_active_tgt_count));
3443         LASSERTF((int)offsetof(struct lmv_desc, ld_default_stripe_count) == 8, "found %lld\n",
3444                  (long long)(int)offsetof(struct lmv_desc, ld_default_stripe_count));
3445         LASSERTF((int)sizeof(((struct lmv_desc *)0)->ld_default_stripe_count) == 4, "found %lld\n",
3446                  (long long)(int)sizeof(((struct lmv_desc *)0)->ld_default_stripe_count));
3447         LASSERTF((int)offsetof(struct lmv_desc, ld_pattern) == 12, "found %lld\n",
3448                  (long long)(int)offsetof(struct lmv_desc, ld_pattern));
3449         LASSERTF((int)sizeof(((struct lmv_desc *)0)->ld_pattern) == 4, "found %lld\n",
3450                  (long long)(int)sizeof(((struct lmv_desc *)0)->ld_pattern));
3451         LASSERTF((int)offsetof(struct lmv_desc, ld_default_hash_size) == 16, "found %lld\n",
3452                  (long long)(int)offsetof(struct lmv_desc, ld_default_hash_size));
3453         LASSERTF((int)sizeof(((struct lmv_desc *)0)->ld_default_hash_size) == 8, "found %lld\n",
3454                  (long long)(int)sizeof(((struct lmv_desc *)0)->ld_default_hash_size));
3455         LASSERTF((int)offsetof(struct lmv_desc, ld_padding_1) == 24, "found %lld\n",
3456                  (long long)(int)offsetof(struct lmv_desc, ld_padding_1));
3457         LASSERTF((int)sizeof(((struct lmv_desc *)0)->ld_padding_1) == 8, "found %lld\n",
3458                  (long long)(int)sizeof(((struct lmv_desc *)0)->ld_padding_1));
3459         LASSERTF((int)offsetof(struct lmv_desc, ld_padding_2) == 32, "found %lld\n",
3460                  (long long)(int)offsetof(struct lmv_desc, ld_padding_2));
3461         LASSERTF((int)sizeof(((struct lmv_desc *)0)->ld_padding_2) == 4, "found %lld\n",
3462                  (long long)(int)sizeof(((struct lmv_desc *)0)->ld_padding_2));
3463         LASSERTF((int)offsetof(struct lmv_desc, ld_qos_maxage) == 36, "found %lld\n",
3464                  (long long)(int)offsetof(struct lmv_desc, ld_qos_maxage));
3465         LASSERTF((int)sizeof(((struct lmv_desc *)0)->ld_qos_maxage) == 4, "found %lld\n",
3466                  (long long)(int)sizeof(((struct lmv_desc *)0)->ld_qos_maxage));
3467         LASSERTF((int)offsetof(struct lmv_desc, ld_padding_3) == 40, "found %lld\n",
3468                  (long long)(int)offsetof(struct lmv_desc, ld_padding_3));
3469         LASSERTF((int)sizeof(((struct lmv_desc *)0)->ld_padding_3) == 4, "found %lld\n",
3470                  (long long)(int)sizeof(((struct lmv_desc *)0)->ld_padding_3));
3471         LASSERTF((int)offsetof(struct lmv_desc, ld_padding_4) == 44, "found %lld\n",
3472                  (long long)(int)offsetof(struct lmv_desc, ld_padding_4));
3473         LASSERTF((int)sizeof(((struct lmv_desc *)0)->ld_padding_4) == 4, "found %lld\n",
3474                  (long long)(int)sizeof(((struct lmv_desc *)0)->ld_padding_4));
3475         LASSERTF((int)offsetof(struct lmv_desc, ld_uuid) == 48, "found %lld\n",
3476                  (long long)(int)offsetof(struct lmv_desc, ld_uuid));
3477         LASSERTF((int)sizeof(((struct lmv_desc *)0)->ld_uuid) == 40, "found %lld\n",
3478                  (long long)(int)sizeof(((struct lmv_desc *)0)->ld_uuid));
3479
3480         /* Checks for struct lov_desc */
3481         LASSERTF((int)sizeof(struct lov_desc) == 88, "found %lld\n",
3482                  (long long)(int)sizeof(struct lov_desc));
3483         LASSERTF((int)offsetof(struct lov_desc, ld_tgt_count) == 0, "found %lld\n",
3484                  (long long)(int)offsetof(struct lov_desc, ld_tgt_count));
3485         LASSERTF((int)sizeof(((struct lov_desc *)0)->ld_tgt_count) == 4, "found %lld\n",
3486                  (long long)(int)sizeof(((struct lov_desc *)0)->ld_tgt_count));
3487         LASSERTF((int)offsetof(struct lov_desc, ld_active_tgt_count) == 4, "found %lld\n",
3488                  (long long)(int)offsetof(struct lov_desc, ld_active_tgt_count));
3489         LASSERTF((int)sizeof(((struct lov_desc *)0)->ld_active_tgt_count) == 4, "found %lld\n",
3490                  (long long)(int)sizeof(((struct lov_desc *)0)->ld_active_tgt_count));
3491         LASSERTF((int)offsetof(struct lov_desc, ld_default_stripe_count) == 8, "found %lld\n",
3492                  (long long)(int)offsetof(struct lov_desc, ld_default_stripe_count));
3493         LASSERTF((int)sizeof(((struct lov_desc *)0)->ld_default_stripe_count) == 4, "found %lld\n",
3494                  (long long)(int)sizeof(((struct lov_desc *)0)->ld_default_stripe_count));
3495         LASSERTF((int)offsetof(struct lov_desc, ld_pattern) == 12, "found %lld\n",
3496                  (long long)(int)offsetof(struct lov_desc, ld_pattern));
3497         LASSERTF((int)sizeof(((struct lov_desc *)0)->ld_pattern) == 4, "found %lld\n",
3498                  (long long)(int)sizeof(((struct lov_desc *)0)->ld_pattern));
3499         LASSERTF((int)offsetof(struct lov_desc, ld_default_stripe_size) == 16, "found %lld\n",
3500                  (long long)(int)offsetof(struct lov_desc, ld_default_stripe_size));
3501         LASSERTF((int)sizeof(((struct lov_desc *)0)->ld_default_stripe_size) == 8, "found %lld\n",
3502                  (long long)(int)sizeof(((struct lov_desc *)0)->ld_default_stripe_size));
3503         LASSERTF((int)offsetof(struct lov_desc, ld_default_stripe_offset) == 24, "found %lld\n",
3504                  (long long)(int)offsetof(struct lov_desc, ld_default_stripe_offset));
3505         LASSERTF((int)sizeof(((struct lov_desc *)0)->ld_default_stripe_offset) == 8, "found %lld\n",
3506                  (long long)(int)sizeof(((struct lov_desc *)0)->ld_default_stripe_offset));
3507         LASSERTF((int)offsetof(struct lov_desc, ld_padding_0) == 32, "found %lld\n",
3508                  (long long)(int)offsetof(struct lov_desc, ld_padding_0));
3509         LASSERTF((int)sizeof(((struct lov_desc *)0)->ld_padding_0) == 4, "found %lld\n",
3510                  (long long)(int)sizeof(((struct lov_desc *)0)->ld_padding_0));
3511         LASSERTF((int)offsetof(struct lov_desc, ld_qos_maxage) == 36, "found %lld\n",
3512                  (long long)(int)offsetof(struct lov_desc, ld_qos_maxage));
3513         LASSERTF((int)sizeof(((struct lov_desc *)0)->ld_qos_maxage) == 4, "found %lld\n",
3514                  (long long)(int)sizeof(((struct lov_desc *)0)->ld_qos_maxage));
3515         LASSERTF((int)offsetof(struct lov_desc, ld_padding_1) == 40, "found %lld\n",
3516                  (long long)(int)offsetof(struct lov_desc, ld_padding_1));
3517         LASSERTF((int)sizeof(((struct lov_desc *)0)->ld_padding_1) == 4, "found %lld\n",
3518                  (long long)(int)sizeof(((struct lov_desc *)0)->ld_padding_1));
3519         LASSERTF((int)offsetof(struct lov_desc, ld_padding_2) == 44, "found %lld\n",
3520                  (long long)(int)offsetof(struct lov_desc, ld_padding_2));
3521         LASSERTF((int)sizeof(((struct lov_desc *)0)->ld_padding_2) == 4, "found %lld\n",
3522                  (long long)(int)sizeof(((struct lov_desc *)0)->ld_padding_2));
3523         LASSERTF((int)offsetof(struct lov_desc, ld_uuid) == 48, "found %lld\n",
3524                  (long long)(int)offsetof(struct lov_desc, ld_uuid));
3525         LASSERTF((int)sizeof(((struct lov_desc *)0)->ld_uuid) == 40, "found %lld\n",
3526                  (long long)(int)sizeof(((struct lov_desc *)0)->ld_uuid));
3527         BUILD_BUG_ON(LOV_DESC_MAGIC != 0xB0CCDE5C);
3528
3529         /* Checks for struct ldlm_res_id */
3530         LASSERTF((int)sizeof(struct ldlm_res_id) == 32, "found %lld\n",
3531                  (long long)(int)sizeof(struct ldlm_res_id));
3532         BUILD_BUG_ON(RES_NAME_SIZE != 4);
3533         LASSERTF((int)offsetof(struct ldlm_res_id, name[4]) == 32, "found %lld\n",
3534                  (long long)(int)offsetof(struct ldlm_res_id, name[4]));
3535         LASSERTF((int)sizeof(((struct ldlm_res_id *)0)->name[4]) == 8, "found %lld\n",
3536                  (long long)(int)sizeof(((struct ldlm_res_id *)0)->name[4]));
3537
3538         /* Checks for struct ldlm_extent */
3539         LASSERTF((int)sizeof(struct ldlm_extent) == 24, "found %lld\n",
3540                  (long long)(int)sizeof(struct ldlm_extent));
3541         LASSERTF((int)offsetof(struct ldlm_extent, start) == 0, "found %lld\n",
3542                  (long long)(int)offsetof(struct ldlm_extent, start));
3543         LASSERTF((int)sizeof(((struct ldlm_extent *)0)->start) == 8, "found %lld\n",
3544                  (long long)(int)sizeof(((struct ldlm_extent *)0)->start));
3545         LASSERTF((int)offsetof(struct ldlm_extent, end) == 8, "found %lld\n",
3546                  (long long)(int)offsetof(struct ldlm_extent, end));
3547         LASSERTF((int)sizeof(((struct ldlm_extent *)0)->end) == 8, "found %lld\n",
3548                  (long long)(int)sizeof(((struct ldlm_extent *)0)->end));
3549         LASSERTF((int)offsetof(struct ldlm_extent, gid) == 16, "found %lld\n",
3550                  (long long)(int)offsetof(struct ldlm_extent, gid));
3551         LASSERTF((int)sizeof(((struct ldlm_extent *)0)->gid) == 8, "found %lld\n",
3552                  (long long)(int)sizeof(((struct ldlm_extent *)0)->gid));
3553
3554         /* Checks for struct ldlm_inodebits */
3555         LASSERTF((int)sizeof(struct ldlm_inodebits) == 16, "found %lld\n",
3556                  (long long)(int)sizeof(struct ldlm_inodebits));
3557         LASSERTF((int)offsetof(struct ldlm_inodebits, bits) == 0, "found %lld\n",
3558                  (long long)(int)offsetof(struct ldlm_inodebits, bits));
3559         LASSERTF((int)sizeof(((struct ldlm_inodebits *)0)->bits) == 8, "found %lld\n",
3560                  (long long)(int)sizeof(((struct ldlm_inodebits *)0)->bits));
3561         LASSERTF((int)offsetof(struct ldlm_inodebits, try_bits) == 8, "found %lld\n",
3562                  (long long)(int)offsetof(struct ldlm_inodebits, try_bits));
3563         LASSERTF((int)sizeof(((struct ldlm_inodebits *)0)->try_bits) == 8, "found %lld\n",
3564                  (long long)(int)sizeof(((struct ldlm_inodebits *)0)->try_bits));
3565
3566         /* Checks for struct ldlm_flock_wire */
3567         LASSERTF((int)sizeof(struct ldlm_flock_wire) == 32, "found %lld\n",
3568                  (long long)(int)sizeof(struct ldlm_flock_wire));
3569         LASSERTF((int)offsetof(struct ldlm_flock_wire, lfw_start) == 0, "found %lld\n",
3570                  (long long)(int)offsetof(struct ldlm_flock_wire, lfw_start));
3571         LASSERTF((int)sizeof(((struct ldlm_flock_wire *)0)->lfw_start) == 8, "found %lld\n",
3572                  (long long)(int)sizeof(((struct ldlm_flock_wire *)0)->lfw_start));
3573         LASSERTF((int)offsetof(struct ldlm_flock_wire, lfw_end) == 8, "found %lld\n",
3574                  (long long)(int)offsetof(struct ldlm_flock_wire, lfw_end));
3575         LASSERTF((int)sizeof(((struct ldlm_flock_wire *)0)->lfw_end) == 8, "found %lld\n",
3576                  (long long)(int)sizeof(((struct ldlm_flock_wire *)0)->lfw_end));
3577         LASSERTF((int)offsetof(struct ldlm_flock_wire, lfw_owner) == 16, "found %lld\n",
3578                  (long long)(int)offsetof(struct ldlm_flock_wire, lfw_owner));
3579         LASSERTF((int)sizeof(((struct ldlm_flock_wire *)0)->lfw_owner) == 8, "found %lld\n",
3580                  (long long)(int)sizeof(((struct ldlm_flock_wire *)0)->lfw_owner));
3581         LASSERTF((int)offsetof(struct ldlm_flock_wire, lfw_padding) == 24, "found %lld\n",
3582                  (long long)(int)offsetof(struct ldlm_flock_wire, lfw_padding));
3583         LASSERTF((int)sizeof(((struct ldlm_flock_wire *)0)->lfw_padding) == 4, "found %lld\n",
3584                  (long long)(int)sizeof(((struct ldlm_flock_wire *)0)->lfw_padding));
3585         LASSERTF((int)offsetof(struct ldlm_flock_wire, lfw_pid) == 28, "found %lld\n",
3586                  (long long)(int)offsetof(struct ldlm_flock_wire, lfw_pid));
3587         LASSERTF((int)sizeof(((struct ldlm_flock_wire *)0)->lfw_pid) == 4, "found %lld\n",
3588                  (long long)(int)sizeof(((struct ldlm_flock_wire *)0)->lfw_pid));
3589
3590         /* Checks for struct ldlm_intent */
3591         LASSERTF((int)sizeof(struct ldlm_intent) == 8, "found %lld\n",
3592                  (long long)(int)sizeof(struct ldlm_intent));
3593         LASSERTF((int)offsetof(struct ldlm_intent, opc) == 0, "found %lld\n",
3594                  (long long)(int)offsetof(struct ldlm_intent, opc));
3595         LASSERTF((int)sizeof(((struct ldlm_intent *)0)->opc) == 8, "found %lld\n",
3596                  (long long)(int)sizeof(((struct ldlm_intent *)0)->opc));
3597         BUILD_BUG_ON(IT_OPEN != 0x00000001);
3598         BUILD_BUG_ON(IT_CREAT != 0x00000002);
3599         BUILD_BUG_ON(IT_READDIR != 0x00000004);
3600         BUILD_BUG_ON(IT_GETATTR != 0x00000008);
3601         BUILD_BUG_ON(IT_LOOKUP != 0x00000010);
3602         BUILD_BUG_ON(IT_GETXATTR != 0x00000080);
3603         BUILD_BUG_ON(IT_LAYOUT != 0x00000400);
3604         BUILD_BUG_ON(IT_QUOTA_DQACQ != 0x00000800);
3605         BUILD_BUG_ON(IT_QUOTA_CONN != 0x00001000);
3606         BUILD_BUG_ON(IT_GLIMPSE != 0x00004000);
3607         BUILD_BUG_ON(IT_BRW != 0x00008000);
3608
3609         /* Checks for struct ldlm_resource_desc */
3610         LASSERTF((int)sizeof(struct ldlm_resource_desc) == 40, "found %lld\n",
3611                  (long long)(int)sizeof(struct ldlm_resource_desc));
3612         LASSERTF((int)offsetof(struct ldlm_resource_desc, lr_type) == 0, "found %lld\n",
3613                  (long long)(int)offsetof(struct ldlm_resource_desc, lr_type));
3614         LASSERTF((int)sizeof(((struct ldlm_resource_desc *)0)->lr_type) == 4, "found %lld\n",
3615                  (long long)(int)sizeof(((struct ldlm_resource_desc *)0)->lr_type));
3616         LASSERTF((int)offsetof(struct ldlm_resource_desc, lr_pad) == 4, "found %lld\n",
3617                  (long long)(int)offsetof(struct ldlm_resource_desc, lr_pad));
3618         LASSERTF((int)sizeof(((struct ldlm_resource_desc *)0)->lr_pad) == 4, "found %lld\n",
3619                  (long long)(int)sizeof(((struct ldlm_resource_desc *)0)->lr_pad));
3620         LASSERTF((int)offsetof(struct ldlm_resource_desc, lr_name) == 8, "found %lld\n",
3621                  (long long)(int)offsetof(struct ldlm_resource_desc, lr_name));
3622         LASSERTF((int)sizeof(((struct ldlm_resource_desc *)0)->lr_name) == 32, "found %lld\n",
3623                  (long long)(int)sizeof(((struct ldlm_resource_desc *)0)->lr_name));
3624
3625         /* Checks for struct ldlm_lock_desc */
3626         LASSERTF((int)sizeof(struct ldlm_lock_desc) == 80, "found %lld\n",
3627                  (long long)(int)sizeof(struct ldlm_lock_desc));
3628         LASSERTF((int)offsetof(struct ldlm_lock_desc, l_resource) == 0, "found %lld\n",
3629                  (long long)(int)offsetof(struct ldlm_lock_desc, l_resource));
3630         LASSERTF((int)sizeof(((struct ldlm_lock_desc *)0)->l_resource) == 40, "found %lld\n",
3631                  (long long)(int)sizeof(((struct ldlm_lock_desc *)0)->l_resource));
3632         LASSERTF((int)offsetof(struct ldlm_lock_desc, l_req_mode) == 40, "found %lld\n",
3633                  (long long)(int)offsetof(struct ldlm_lock_desc, l_req_mode));
3634         LASSERTF((int)sizeof(((struct ldlm_lock_desc *)0)->l_req_mode) == 4, "found %lld\n",
3635                  (long long)(int)sizeof(((struct ldlm_lock_desc *)0)->l_req_mode));
3636         LASSERTF((int)offsetof(struct ldlm_lock_desc, l_granted_mode) == 44, "found %lld\n",
3637                  (long long)(int)offsetof(struct ldlm_lock_desc, l_granted_mode));
3638         LASSERTF((int)sizeof(((struct ldlm_lock_desc *)0)->l_granted_mode) == 4, "found %lld\n",
3639                  (long long)(int)sizeof(((struct ldlm_lock_desc *)0)->l_granted_mode));
3640         LASSERTF((int)offsetof(struct ldlm_lock_desc, l_policy_data) == 48, "found %lld\n",
3641                  (long long)(int)offsetof(struct ldlm_lock_desc, l_policy_data));
3642         LASSERTF((int)sizeof(((struct ldlm_lock_desc *)0)->l_policy_data) == 32, "found %lld\n",
3643                  (long long)(int)sizeof(((struct ldlm_lock_desc *)0)->l_policy_data));
3644
3645         /* Checks for struct ldlm_request */
3646         LASSERTF((int)sizeof(struct ldlm_request) == 104, "found %lld\n",
3647                  (long long)(int)sizeof(struct ldlm_request));
3648         LASSERTF((int)offsetof(struct ldlm_request, lock_flags) == 0, "found %lld\n",
3649                  (long long)(int)offsetof(struct ldlm_request, lock_flags));
3650         LASSERTF((int)sizeof(((struct ldlm_request *)0)->lock_flags) == 4, "found %lld\n",
3651                  (long long)(int)sizeof(((struct ldlm_request *)0)->lock_flags));
3652         LASSERTF((int)offsetof(struct ldlm_request, lock_count) == 4, "found %lld\n",
3653                  (long long)(int)offsetof(struct ldlm_request, lock_count));
3654         LASSERTF((int)sizeof(((struct ldlm_request *)0)->lock_count) == 4, "found %lld\n",
3655                  (long long)(int)sizeof(((struct ldlm_request *)0)->lock_count));
3656         LASSERTF((int)offsetof(struct ldlm_request, lock_desc) == 8, "found %lld\n",
3657                  (long long)(int)offsetof(struct ldlm_request, lock_desc));
3658         LASSERTF((int)sizeof(((struct ldlm_request *)0)->lock_desc) == 80, "found %lld\n",
3659                  (long long)(int)sizeof(((struct ldlm_request *)0)->lock_desc));
3660         LASSERTF((int)offsetof(struct ldlm_request, lock_handle) == 88, "found %lld\n",
3661                  (long long)(int)offsetof(struct ldlm_request, lock_handle));
3662         LASSERTF((int)sizeof(((struct ldlm_request *)0)->lock_handle) == 16, "found %lld\n",
3663                  (long long)(int)sizeof(((struct ldlm_request *)0)->lock_handle));
3664
3665         /* Checks for struct ldlm_reply */
3666         LASSERTF((int)sizeof(struct ldlm_reply) == 112, "found %lld\n",
3667                  (long long)(int)sizeof(struct ldlm_reply));
3668         LASSERTF((int)offsetof(struct ldlm_reply, lock_flags) == 0, "found %lld\n",
3669                  (long long)(int)offsetof(struct ldlm_reply, lock_flags));
3670         LASSERTF((int)sizeof(((struct ldlm_reply *)0)->lock_flags) == 4, "found %lld\n",
3671                  (long long)(int)sizeof(((struct ldlm_reply *)0)->lock_flags));
3672         LASSERTF((int)offsetof(struct ldlm_reply, lock_padding) == 4, "found %lld\n",
3673                  (long long)(int)offsetof(struct ldlm_reply, lock_padding));
3674         LASSERTF((int)sizeof(((struct ldlm_reply *)0)->lock_padding) == 4, "found %lld\n",
3675                  (long long)(int)sizeof(((struct ldlm_reply *)0)->lock_padding));
3676         LASSERTF((int)offsetof(struct ldlm_reply, lock_desc) == 8, "found %lld\n",
3677                  (long long)(int)offsetof(struct ldlm_reply, lock_desc));
3678         LASSERTF((int)sizeof(((struct ldlm_reply *)0)->lock_desc) == 80, "found %lld\n",
3679                  (long long)(int)sizeof(((struct ldlm_reply *)0)->lock_desc));
3680         LASSERTF((int)offsetof(struct ldlm_reply, lock_handle) == 88, "found %lld\n",
3681                  (long long)(int)offsetof(struct ldlm_reply, lock_handle));
3682         LASSERTF((int)sizeof(((struct ldlm_reply *)0)->lock_handle) == 8, "found %lld\n",
3683                  (long long)(int)sizeof(((struct ldlm_reply *)0)->lock_handle));
3684         LASSERTF((int)offsetof(struct ldlm_reply, lock_policy_res1) == 96, "found %lld\n",
3685                  (long long)(int)offsetof(struct ldlm_reply, lock_policy_res1));
3686         LASSERTF((int)sizeof(((struct ldlm_reply *)0)->lock_policy_res1) == 8, "found %lld\n",
3687                  (long long)(int)sizeof(((struct ldlm_reply *)0)->lock_policy_res1));
3688         LASSERTF((int)offsetof(struct ldlm_reply, lock_policy_res2) == 104, "found %lld\n",
3689                  (long long)(int)offsetof(struct ldlm_reply, lock_policy_res2));
3690         LASSERTF((int)sizeof(((struct ldlm_reply *)0)->lock_policy_res2) == 8, "found %lld\n",
3691                  (long long)(int)sizeof(((struct ldlm_reply *)0)->lock_policy_res2));
3692
3693         /* Checks for struct ost_lvb_v1 */
3694         LASSERTF((int)sizeof(struct ost_lvb_v1) == 40, "found %lld\n",
3695                  (long long)(int)sizeof(struct ost_lvb_v1));
3696         LASSERTF((int)offsetof(struct ost_lvb_v1, lvb_size) == 0, "found %lld\n",
3697                  (long long)(int)offsetof(struct ost_lvb_v1, lvb_size));
3698         LASSERTF((int)sizeof(((struct ost_lvb_v1 *)0)->lvb_size) == 8, "found %lld\n",
3699                  (long long)(int)sizeof(((struct ost_lvb_v1 *)0)->lvb_size));
3700         LASSERTF((int)offsetof(struct ost_lvb_v1, lvb_mtime) == 8, "found %lld\n",
3701                  (long long)(int)offsetof(struct ost_lvb_v1, lvb_mtime));
3702         LASSERTF((int)sizeof(((struct ost_lvb_v1 *)0)->lvb_mtime) == 8, "found %lld\n",
3703                  (long long)(int)sizeof(((struct ost_lvb_v1 *)0)->lvb_mtime));
3704         LASSERTF((int)offsetof(struct ost_lvb_v1, lvb_atime) == 16, "found %lld\n",
3705                  (long long)(int)offsetof(struct ost_lvb_v1, lvb_atime));
3706         LASSERTF((int)sizeof(((struct ost_lvb_v1 *)0)->lvb_atime) == 8, "found %lld\n",
3707                  (long long)(int)sizeof(((struct ost_lvb_v1 *)0)->lvb_atime));
3708         LASSERTF((int)offsetof(struct ost_lvb_v1, lvb_ctime) == 24, "found %lld\n",
3709                  (long long)(int)offsetof(struct ost_lvb_v1, lvb_ctime));
3710         LASSERTF((int)sizeof(((struct ost_lvb_v1 *)0)->lvb_ctime) == 8, "found %lld\n",
3711                  (long long)(int)sizeof(((struct ost_lvb_v1 *)0)->lvb_ctime));
3712         LASSERTF((int)offsetof(struct ost_lvb_v1, lvb_blocks) == 32, "found %lld\n",
3713                  (long long)(int)offsetof(struct ost_lvb_v1, lvb_blocks));
3714         LASSERTF((int)sizeof(((struct ost_lvb_v1 *)0)->lvb_blocks) == 8, "found %lld\n",
3715                  (long long)(int)sizeof(((struct ost_lvb_v1 *)0)->lvb_blocks));
3716
3717         /* Checks for struct ost_lvb */
3718         LASSERTF((int)sizeof(struct ost_lvb) == 56, "found %lld\n",
3719                  (long long)(int)sizeof(struct ost_lvb));
3720         LASSERTF((int)offsetof(struct ost_lvb, lvb_size) == 0, "found %lld\n",
3721                  (long long)(int)offsetof(struct ost_lvb, lvb_size));
3722         LASSERTF((int)sizeof(((struct ost_lvb *)0)->lvb_size) == 8, "found %lld\n",
3723                  (long long)(int)sizeof(((struct ost_lvb *)0)->lvb_size));
3724         LASSERTF((int)offsetof(struct ost_lvb, lvb_mtime) == 8, "found %lld\n",
3725                  (long long)(int)offsetof(struct ost_lvb, lvb_mtime));
3726         LASSERTF((int)sizeof(((struct ost_lvb *)0)->lvb_mtime) == 8, "found %lld\n",
3727                  (long long)(int)sizeof(((struct ost_lvb *)0)->lvb_mtime));
3728         LASSERTF((int)offsetof(struct ost_lvb, lvb_atime) == 16, "found %lld\n",
3729                  (long long)(int)offsetof(struct ost_lvb, lvb_atime));
3730         LASSERTF((int)sizeof(((struct ost_lvb *)0)->lvb_atime) == 8, "found %lld\n",
3731                  (long long)(int)sizeof(((struct ost_lvb *)0)->lvb_atime));
3732         LASSERTF((int)offsetof(struct ost_lvb, lvb_ctime) == 24, "found %lld\n",
3733                  (long long)(int)offsetof(struct ost_lvb, lvb_ctime));
3734         LASSERTF((int)sizeof(((struct ost_lvb *)0)->lvb_ctime) == 8, "found %lld\n",
3735                  (long long)(int)sizeof(((struct ost_lvb *)0)->lvb_ctime));
3736         LASSERTF((int)offsetof(struct ost_lvb, lvb_blocks) == 32, "found %lld\n",
3737                  (long long)(int)offsetof(struct ost_lvb, lvb_blocks));
3738         LASSERTF((int)sizeof(((struct ost_lvb *)0)->lvb_blocks) == 8, "found %lld\n",
3739                  (long long)(int)sizeof(((struct ost_lvb *)0)->lvb_blocks));
3740         LASSERTF((int)offsetof(struct ost_lvb, lvb_mtime_ns) == 40, "found %lld\n",
3741                  (long long)(int)offsetof(struct ost_lvb, lvb_mtime_ns));
3742         LASSERTF((int)sizeof(((struct ost_lvb *)0)->lvb_mtime_ns) == 4, "found %lld\n",
3743                  (long long)(int)sizeof(((struct ost_lvb *)0)->lvb_mtime_ns));
3744         LASSERTF((int)offsetof(struct ost_lvb, lvb_atime_ns) == 44, "found %lld\n",
3745                  (long long)(int)offsetof(struct ost_lvb, lvb_atime_ns));
3746         LASSERTF((int)sizeof(((struct ost_lvb *)0)->lvb_atime_ns) == 4, "found %lld\n",
3747                  (long long)(int)sizeof(((struct ost_lvb *)0)->lvb_atime_ns));
3748         LASSERTF((int)offsetof(struct ost_lvb, lvb_ctime_ns) == 48, "found %lld\n",
3749                  (long long)(int)offsetof(struct ost_lvb, lvb_ctime_ns));
3750         LASSERTF((int)sizeof(((struct ost_lvb *)0)->lvb_ctime_ns) == 4, "found %lld\n",
3751                  (long long)(int)sizeof(((struct ost_lvb *)0)->lvb_ctime_ns));
3752         LASSERTF((int)offsetof(struct ost_lvb, lvb_padding) == 52, "found %lld\n",
3753                  (long long)(int)offsetof(struct ost_lvb, lvb_padding));
3754         LASSERTF((int)sizeof(((struct ost_lvb *)0)->lvb_padding) == 4, "found %lld\n",
3755                  (long long)(int)sizeof(((struct ost_lvb *)0)->lvb_padding));
3756
3757         /* Checks for struct lquota_lvb */
3758         LASSERTF((int)sizeof(struct lquota_lvb) == 40, "found %lld\n",
3759                  (long long)(int)sizeof(struct lquota_lvb));
3760         LASSERTF((int)offsetof(struct lquota_lvb, lvb_flags) == 0, "found %lld\n",
3761                  (long long)(int)offsetof(struct lquota_lvb, lvb_flags));
3762         LASSERTF((int)sizeof(((struct lquota_lvb *)0)->lvb_flags) == 8, "found %lld\n",
3763                  (long long)(int)sizeof(((struct lquota_lvb *)0)->lvb_flags));
3764         LASSERTF((int)offsetof(struct lquota_lvb, lvb_id_may_rel) == 8, "found %lld\n",
3765                  (long long)(int)offsetof(struct lquota_lvb, lvb_id_may_rel));
3766         LASSERTF((int)sizeof(((struct lquota_lvb *)0)->lvb_id_may_rel) == 8, "found %lld\n",
3767                  (long long)(int)sizeof(((struct lquota_lvb *)0)->lvb_id_may_rel));
3768         LASSERTF((int)offsetof(struct lquota_lvb, lvb_id_rel) == 16, "found %lld\n",
3769                  (long long)(int)offsetof(struct lquota_lvb, lvb_id_rel));
3770         LASSERTF((int)sizeof(((struct lquota_lvb *)0)->lvb_id_rel) == 8, "found %lld\n",
3771                  (long long)(int)sizeof(((struct lquota_lvb *)0)->lvb_id_rel));
3772         LASSERTF((int)offsetof(struct lquota_lvb, lvb_id_qunit) == 24, "found %lld\n",
3773                  (long long)(int)offsetof(struct lquota_lvb, lvb_id_qunit));
3774         LASSERTF((int)sizeof(((struct lquota_lvb *)0)->lvb_id_qunit) == 8, "found %lld\n",
3775                  (long long)(int)sizeof(((struct lquota_lvb *)0)->lvb_id_qunit));
3776         LASSERTF((int)offsetof(struct lquota_lvb, lvb_pad1) == 32, "found %lld\n",
3777                  (long long)(int)offsetof(struct lquota_lvb, lvb_pad1));
3778         LASSERTF((int)sizeof(((struct lquota_lvb *)0)->lvb_pad1) == 8, "found %lld\n",
3779                  (long long)(int)sizeof(((struct lquota_lvb *)0)->lvb_pad1));
3780         LASSERTF(LQUOTA_FL_EDQUOT == 1, "found %lld\n",
3781                  (long long)LQUOTA_FL_EDQUOT);
3782
3783         /* Checks for struct ldlm_gl_lquota_desc */
3784         LASSERTF((int)sizeof(struct ldlm_gl_lquota_desc) == 64, "found %lld\n",
3785                  (long long)(int)sizeof(struct ldlm_gl_lquota_desc));
3786         LASSERTF((int)offsetof(struct ldlm_gl_lquota_desc, gl_id) == 0, "found %lld\n",
3787                  (long long)(int)offsetof(struct ldlm_gl_lquota_desc, gl_id));
3788         LASSERTF((int)sizeof(((struct ldlm_gl_lquota_desc *)0)->gl_id) == 16, "found %lld\n",
3789                  (long long)(int)sizeof(((struct ldlm_gl_lquota_desc *)0)->gl_id));
3790         LASSERTF((int)offsetof(struct ldlm_gl_lquota_desc, gl_flags) == 16, "found %lld\n",
3791                  (long long)(int)offsetof(struct ldlm_gl_lquota_desc, gl_flags));
3792         LASSERTF((int)sizeof(((struct ldlm_gl_lquota_desc *)0)->gl_flags) == 8, "found %lld\n",
3793                  (long long)(int)sizeof(((struct ldlm_gl_lquota_desc *)0)->gl_flags));
3794         LASSERTF((int)offsetof(struct ldlm_gl_lquota_desc, gl_ver) == 24, "found %lld\n",
3795                  (long long)(int)offsetof(struct ldlm_gl_lquota_desc, gl_ver));
3796         LASSERTF((int)sizeof(((struct ldlm_gl_lquota_desc *)0)->gl_ver) == 8, "found %lld\n",
3797                  (long long)(int)sizeof(((struct ldlm_gl_lquota_desc *)0)->gl_ver));
3798         LASSERTF((int)offsetof(struct ldlm_gl_lquota_desc, gl_hardlimit) == 32, "found %lld\n",
3799                  (long long)(int)offsetof(struct ldlm_gl_lquota_desc, gl_hardlimit));
3800         LASSERTF((int)sizeof(((struct ldlm_gl_lquota_desc *)0)->gl_hardlimit) == 8, "found %lld\n",
3801                  (long long)(int)sizeof(((struct ldlm_gl_lquota_desc *)0)->gl_hardlimit));
3802         LASSERTF((int)offsetof(struct ldlm_gl_lquota_desc, gl_softlimit) == 40, "found %lld\n",
3803                  (long long)(int)offsetof(struct ldlm_gl_lquota_desc, gl_softlimit));
3804         LASSERTF((int)sizeof(((struct ldlm_gl_lquota_desc *)0)->gl_softlimit) == 8, "found %lld\n",
3805                  (long long)(int)sizeof(((struct ldlm_gl_lquota_desc *)0)->gl_softlimit));
3806         LASSERTF((int)offsetof(struct ldlm_gl_lquota_desc, gl_time) == 48, "found %lld\n",
3807                  (long long)(int)offsetof(struct ldlm_gl_lquota_desc, gl_time));
3808         LASSERTF((int)sizeof(((struct ldlm_gl_lquota_desc *)0)->gl_time) == 8, "found %lld\n",
3809                  (long long)(int)sizeof(((struct ldlm_gl_lquota_desc *)0)->gl_time));
3810         LASSERTF((int)offsetof(struct ldlm_gl_lquota_desc, gl_pad2) == 56, "found %lld\n",
3811                  (long long)(int)offsetof(struct ldlm_gl_lquota_desc, gl_pad2));
3812         LASSERTF((int)sizeof(((struct ldlm_gl_lquota_desc *)0)->gl_pad2) == 8, "found %lld\n",
3813                  (long long)(int)sizeof(((struct ldlm_gl_lquota_desc *)0)->gl_pad2));
3814
3815         /* Checks for struct ldlm_gl_barrier_desc */
3816         LASSERTF((int)sizeof(struct ldlm_gl_barrier_desc) == 16, "found %lld\n",
3817                  (long long)(int)sizeof(struct ldlm_gl_barrier_desc));
3818         LASSERTF((int)offsetof(struct ldlm_gl_barrier_desc, lgbd_status) == 0, "found %lld\n",
3819                  (long long)(int)offsetof(struct ldlm_gl_barrier_desc, lgbd_status));
3820         LASSERTF((int)sizeof(((struct ldlm_gl_barrier_desc *)0)->lgbd_status) == 4, "found %lld\n",
3821                  (long long)(int)sizeof(((struct ldlm_gl_barrier_desc *)0)->lgbd_status));
3822         LASSERTF((int)offsetof(struct ldlm_gl_barrier_desc, lgbd_timeout) == 4, "found %lld\n",
3823                  (long long)(int)offsetof(struct ldlm_gl_barrier_desc, lgbd_timeout));
3824         LASSERTF((int)sizeof(((struct ldlm_gl_barrier_desc *)0)->lgbd_timeout) == 4, "found %lld\n",
3825                  (long long)(int)sizeof(((struct ldlm_gl_barrier_desc *)0)->lgbd_timeout));
3826         LASSERTF((int)offsetof(struct ldlm_gl_barrier_desc, lgbd_padding) == 8, "found %lld\n",
3827                  (long long)(int)offsetof(struct ldlm_gl_barrier_desc, lgbd_padding));
3828         LASSERTF((int)sizeof(((struct ldlm_gl_barrier_desc *)0)->lgbd_padding) == 8, "found %lld\n",
3829                  (long long)(int)sizeof(((struct ldlm_gl_barrier_desc *)0)->lgbd_padding));
3830
3831         /* Checks for struct barrier_lvb */
3832         LASSERTF((int)sizeof(struct barrier_lvb) == 16, "found %lld\n",
3833                  (long long)(int)sizeof(struct barrier_lvb));
3834         LASSERTF((int)offsetof(struct barrier_lvb, lvb_status) == 0, "found %lld\n",
3835                  (long long)(int)offsetof(struct barrier_lvb, lvb_status));
3836         LASSERTF((int)sizeof(((struct barrier_lvb *)0)->lvb_status) == 4, "found %lld\n",
3837                  (long long)(int)sizeof(((struct barrier_lvb *)0)->lvb_status));
3838         LASSERTF((int)offsetof(struct barrier_lvb, lvb_index) == 4, "found %lld\n",
3839                  (long long)(int)offsetof(struct barrier_lvb, lvb_index));
3840         LASSERTF((int)sizeof(((struct barrier_lvb *)0)->lvb_index) == 4, "found %lld\n",
3841                  (long long)(int)sizeof(((struct barrier_lvb *)0)->lvb_index));
3842         LASSERTF((int)offsetof(struct barrier_lvb, lvb_padding) == 8, "found %lld\n",
3843                  (long long)(int)offsetof(struct barrier_lvb, lvb_padding));
3844         LASSERTF((int)sizeof(((struct barrier_lvb *)0)->lvb_padding) == 8, "found %lld\n",
3845                  (long long)(int)sizeof(((struct barrier_lvb *)0)->lvb_padding));
3846
3847         /* Checks for struct mgs_send_param */
3848         LASSERTF((int)sizeof(struct mgs_send_param) == 1024, "found %lld\n",
3849                  (long long)(int)sizeof(struct mgs_send_param));
3850         BUILD_BUG_ON(MGS_PARAM_MAXLEN != 1024);
3851         LASSERTF((int)offsetof(struct mgs_send_param, mgs_param[1024]) == 1024, "found %lld\n",
3852                  (long long)(int)offsetof(struct mgs_send_param, mgs_param[1024]));
3853         LASSERTF((int)sizeof(((struct mgs_send_param *)0)->mgs_param[1024]) == 1, "found %lld\n",
3854                  (long long)(int)sizeof(((struct mgs_send_param *)0)->mgs_param[1024]));
3855
3856         /* Checks for struct cfg_marker */
3857         LASSERTF((int)sizeof(struct cfg_marker) == 160, "found %lld\n",
3858                  (long long)(int)sizeof(struct cfg_marker));
3859         LASSERTF((int)offsetof(struct cfg_marker, cm_step) == 0, "found %lld\n",
3860                  (long long)(int)offsetof(struct cfg_marker, cm_step));
3861         LASSERTF((int)sizeof(((struct cfg_marker *)0)->cm_step) == 4, "found %lld\n",
3862                  (long long)(int)sizeof(((struct cfg_marker *)0)->cm_step));
3863         LASSERTF((int)offsetof(struct cfg_marker, cm_flags) == 4, "found %lld\n",
3864                  (long long)(int)offsetof(struct cfg_marker, cm_flags));
3865         LASSERTF((int)sizeof(((struct cfg_marker *)0)->cm_flags) == 4, "found %lld\n",
3866                  (long long)(int)sizeof(((struct cfg_marker *)0)->cm_flags));
3867         LASSERTF((int)offsetof(struct cfg_marker, cm_vers) == 8, "found %lld\n",
3868                  (long long)(int)offsetof(struct cfg_marker, cm_vers));
3869         LASSERTF((int)sizeof(((struct cfg_marker *)0)->cm_vers) == 4, "found %lld\n",
3870                  (long long)(int)sizeof(((struct cfg_marker *)0)->cm_vers));
3871         LASSERTF((int)offsetof(struct cfg_marker, cm_padding) == 12, "found %lld\n",
3872                  (long long)(int)offsetof(struct cfg_marker, cm_padding));
3873         LASSERTF((int)sizeof(((struct cfg_marker *)0)->cm_padding) == 4, "found %lld\n",
3874                  (long long)(int)sizeof(((struct cfg_marker *)0)->cm_padding));
3875         LASSERTF((int)offsetof(struct cfg_marker, cm_createtime) == 16, "found %lld\n",
3876                  (long long)(int)offsetof(struct cfg_marker, cm_createtime));
3877         LASSERTF((int)sizeof(((struct cfg_marker *)0)->cm_createtime) == 8, "found %lld\n",
3878                  (long long)(int)sizeof(((struct cfg_marker *)0)->cm_createtime));
3879         LASSERTF((int)offsetof(struct cfg_marker, cm_canceltime) == 24, "found %lld\n",
3880                  (long long)(int)offsetof(struct cfg_marker, cm_canceltime));
3881         LASSERTF((int)sizeof(((struct cfg_marker *)0)->cm_canceltime) == 8, "found %lld\n",
3882                  (long long)(int)sizeof(((struct cfg_marker *)0)->cm_canceltime));
3883         LASSERTF((int)offsetof(struct cfg_marker, cm_tgtname) == 32, "found %lld\n",
3884                  (long long)(int)offsetof(struct cfg_marker, cm_tgtname));
3885         LASSERTF((int)sizeof(((struct cfg_marker *)0)->cm_tgtname) == 64, "found %lld\n",
3886                  (long long)(int)sizeof(((struct cfg_marker *)0)->cm_tgtname));
3887         LASSERTF((int)offsetof(struct cfg_marker, cm_comment) == 96, "found %lld\n",
3888                  (long long)(int)offsetof(struct cfg_marker, cm_comment));
3889         LASSERTF((int)sizeof(((struct cfg_marker *)0)->cm_comment) == 64, "found %lld\n",
3890                  (long long)(int)sizeof(((struct cfg_marker *)0)->cm_comment));
3891
3892         /* Checks for struct llog_logid */
3893         LASSERTF((int)sizeof(struct llog_logid) == 20, "found %lld\n",
3894                  (long long)(int)sizeof(struct llog_logid));
3895         LASSERTF((int)offsetof(struct llog_logid, lgl_oi) == 0, "found %lld\n",
3896                  (long long)(int)offsetof(struct llog_logid, lgl_oi));
3897         LASSERTF((int)sizeof(((struct llog_logid *)0)->lgl_oi) == 16, "found %lld\n",
3898                  (long long)(int)sizeof(((struct llog_logid *)0)->lgl_oi));
3899         LASSERTF((int)offsetof(struct llog_logid, lgl_ogen) == 16, "found %lld\n",
3900                  (long long)(int)offsetof(struct llog_logid, lgl_ogen));
3901         LASSERTF((int)sizeof(((struct llog_logid *)0)->lgl_ogen) == 4, "found %lld\n",
3902                  (long long)(int)sizeof(((struct llog_logid *)0)->lgl_ogen));
3903         BUILD_BUG_ON(OST_SZ_REC != 274730752);
3904         BUILD_BUG_ON(MDS_UNLINK_REC != 274801668);
3905         BUILD_BUG_ON(MDS_UNLINK64_REC != 275325956);
3906         BUILD_BUG_ON(MDS_SETATTR64_REC != 275325953);
3907         BUILD_BUG_ON(OBD_CFG_REC != 274857984);
3908         BUILD_BUG_ON(LLOG_GEN_REC != 274989056);
3909         BUILD_BUG_ON(CHANGELOG_REC != 275120128);
3910         BUILD_BUG_ON(CHANGELOG_USER_REC != 275185664);
3911         BUILD_BUG_ON(HSM_AGENT_REC != 275251200);
3912         BUILD_BUG_ON(UPDATE_REC != 275382272);
3913         BUILD_BUG_ON(LLOG_HDR_MAGIC != 275010873);
3914         BUILD_BUG_ON(LLOG_LOGID_MAGIC != 275010875);
3915
3916         /* Checks for struct llog_catid */
3917         LASSERTF((int)sizeof(struct llog_catid) == 32, "found %lld\n",
3918                  (long long)(int)sizeof(struct llog_catid));
3919         LASSERTF((int)offsetof(struct llog_catid, lci_logid) == 0, "found %lld\n",
3920                  (long long)(int)offsetof(struct llog_catid, lci_logid));
3921         LASSERTF((int)sizeof(((struct llog_catid *)0)->lci_logid) == 20, "found %lld\n",
3922                  (long long)(int)sizeof(((struct llog_catid *)0)->lci_logid));
3923         LASSERTF((int)offsetof(struct llog_catid, lci_padding1) == 20, "found %lld\n",
3924                  (long long)(int)offsetof(struct llog_catid, lci_padding1));
3925         LASSERTF((int)sizeof(((struct llog_catid *)0)->lci_padding1) == 4, "found %lld\n",
3926                  (long long)(int)sizeof(((struct llog_catid *)0)->lci_padding1));
3927         LASSERTF((int)offsetof(struct llog_catid, lci_padding2) == 24, "found %lld\n",
3928                  (long long)(int)offsetof(struct llog_catid, lci_padding2));
3929         LASSERTF((int)sizeof(((struct llog_catid *)0)->lci_padding2) == 4, "found %lld\n",
3930                  (long long)(int)sizeof(((struct llog_catid *)0)->lci_padding2));
3931         LASSERTF((int)offsetof(struct llog_catid, lci_padding3) == 28, "found %lld\n",
3932                  (long long)(int)offsetof(struct llog_catid, lci_padding3));
3933         LASSERTF((int)sizeof(((struct llog_catid *)0)->lci_padding3) == 4, "found %lld\n",
3934                  (long long)(int)sizeof(((struct llog_catid *)0)->lci_padding3));
3935
3936         /* Checks for struct llog_rec_hdr */
3937         LASSERTF((int)sizeof(struct llog_rec_hdr) == 16, "found %lld\n",
3938                  (long long)(int)sizeof(struct llog_rec_hdr));
3939         LASSERTF((int)offsetof(struct llog_rec_hdr, lrh_len) == 0, "found %lld\n",
3940                  (long long)(int)offsetof(struct llog_rec_hdr, lrh_len));
3941         LASSERTF((int)sizeof(((struct llog_rec_hdr *)0)->lrh_len) == 4, "found %lld\n",
3942                  (long long)(int)sizeof(((struct llog_rec_hdr *)0)->lrh_len));
3943         LASSERTF((int)offsetof(struct llog_rec_hdr, lrh_index) == 4, "found %lld\n",
3944                  (long long)(int)offsetof(struct llog_rec_hdr, lrh_index));
3945         LASSERTF((int)sizeof(((struct llog_rec_hdr *)0)->lrh_index) == 4, "found %lld\n",
3946                  (long long)(int)sizeof(((struct llog_rec_hdr *)0)->lrh_index));
3947         LASSERTF((int)offsetof(struct llog_rec_hdr, lrh_type) == 8, "found %lld\n",
3948                  (long long)(int)offsetof(struct llog_rec_hdr, lrh_type));
3949         LASSERTF((int)sizeof(((struct llog_rec_hdr *)0)->lrh_type) == 4, "found %lld\n",
3950                  (long long)(int)sizeof(((struct llog_rec_hdr *)0)->lrh_type));
3951         LASSERTF((int)offsetof(struct llog_rec_hdr, lrh_id) == 12, "found %lld\n",
3952                  (long long)(int)offsetof(struct llog_rec_hdr, lrh_id));
3953         LASSERTF((int)sizeof(((struct llog_rec_hdr *)0)->lrh_id) == 4, "found %lld\n",
3954                  (long long)(int)sizeof(((struct llog_rec_hdr *)0)->lrh_id));
3955
3956         /* Checks for struct llog_rec_tail */
3957         LASSERTF((int)sizeof(struct llog_rec_tail) == 8, "found %lld\n",
3958                  (long long)(int)sizeof(struct llog_rec_tail));
3959         LASSERTF((int)offsetof(struct llog_rec_tail, lrt_len) == 0, "found %lld\n",
3960                  (long long)(int)offsetof(struct llog_rec_tail, lrt_len));
3961         LASSERTF((int)sizeof(((struct llog_rec_tail *)0)->lrt_len) == 4, "found %lld\n",
3962                  (long long)(int)sizeof(((struct llog_rec_tail *)0)->lrt_len));
3963         LASSERTF((int)offsetof(struct llog_rec_tail, lrt_index) == 4, "found %lld\n",
3964                  (long long)(int)offsetof(struct llog_rec_tail, lrt_index));
3965         LASSERTF((int)sizeof(((struct llog_rec_tail *)0)->lrt_index) == 4, "found %lld\n",
3966                  (long long)(int)sizeof(((struct llog_rec_tail *)0)->lrt_index));
3967
3968         /* Checks for struct llog_logid_rec */
3969         LASSERTF((int)sizeof(struct llog_logid_rec) == 64, "found %lld\n",
3970                  (long long)(int)sizeof(struct llog_logid_rec));
3971         LASSERTF((int)offsetof(struct llog_logid_rec, lid_hdr) == 0, "found %lld\n",
3972                  (long long)(int)offsetof(struct llog_logid_rec, lid_hdr));
3973         LASSERTF((int)sizeof(((struct llog_logid_rec *)0)->lid_hdr) == 16, "found %lld\n",
3974                  (long long)(int)sizeof(((struct llog_logid_rec *)0)->lid_hdr));
3975         LASSERTF((int)offsetof(struct llog_logid_rec, lid_id) == 16, "found %lld\n",
3976                  (long long)(int)offsetof(struct llog_logid_rec, lid_id));
3977         LASSERTF((int)sizeof(((struct llog_logid_rec *)0)->lid_id) == 20, "found %lld\n",
3978                  (long long)(int)sizeof(((struct llog_logid_rec *)0)->lid_id));
3979         LASSERTF((int)offsetof(struct llog_logid_rec, lid_padding1) == 36, "found %lld\n",
3980                  (long long)(int)offsetof(struct llog_logid_rec, lid_padding1));
3981         LASSERTF((int)sizeof(((struct llog_logid_rec *)0)->lid_padding1) == 4, "found %lld\n",
3982                  (long long)(int)sizeof(((struct llog_logid_rec *)0)->lid_padding1));
3983         LASSERTF((int)offsetof(struct llog_logid_rec, lid_padding2) == 40, "found %lld\n",
3984                  (long long)(int)offsetof(struct llog_logid_rec, lid_padding2));
3985         LASSERTF((int)sizeof(((struct llog_logid_rec *)0)->lid_padding2) == 8, "found %lld\n",
3986                  (long long)(int)sizeof(((struct llog_logid_rec *)0)->lid_padding2));
3987         LASSERTF((int)offsetof(struct llog_logid_rec, lid_padding3) == 48, "found %lld\n",
3988                  (long long)(int)offsetof(struct llog_logid_rec, lid_padding3));
3989         LASSERTF((int)sizeof(((struct llog_logid_rec *)0)->lid_padding3) == 8, "found %lld\n",
3990                  (long long)(int)sizeof(((struct llog_logid_rec *)0)->lid_padding3));
3991         LASSERTF((int)offsetof(struct llog_logid_rec, lid_tail) == 56, "found %lld\n",
3992                  (long long)(int)offsetof(struct llog_logid_rec, lid_tail));
3993         LASSERTF((int)sizeof(((struct llog_logid_rec *)0)->lid_tail) == 8, "found %lld\n",
3994                  (long long)(int)sizeof(((struct llog_logid_rec *)0)->lid_tail));
3995
3996         /* Checks for struct llog_unlink_rec */
3997         LASSERTF((int)sizeof(struct llog_unlink_rec) == 40, "found %lld\n",
3998                  (long long)(int)sizeof(struct llog_unlink_rec));
3999         LASSERTF((int)offsetof(struct llog_unlink_rec, lur_hdr) == 0, "found %lld\n",
4000                  (long long)(int)offsetof(struct llog_unlink_rec, lur_hdr));
4001         LASSERTF((int)sizeof(((struct llog_unlink_rec *)0)->lur_hdr) == 16, "found %lld\n",
4002                  (long long)(int)sizeof(((struct llog_unlink_rec *)0)->lur_hdr));
4003         LASSERTF((int)offsetof(struct llog_unlink_rec, lur_oid) == 16, "found %lld\n",
4004                  (long long)(int)offsetof(struct llog_unlink_rec, lur_oid));
4005         LASSERTF((int)sizeof(((struct llog_unlink_rec *)0)->lur_oid) == 8, "found %lld\n",
4006                  (long long)(int)sizeof(((struct llog_unlink_rec *)0)->lur_oid));
4007         LASSERTF((int)offsetof(struct llog_unlink_rec, lur_oseq) == 24, "found %lld\n",
4008                  (long long)(int)offsetof(struct llog_unlink_rec, lur_oseq));
4009         LASSERTF((int)sizeof(((struct llog_unlink_rec *)0)->lur_oseq) == 4, "found %lld\n",
4010                  (long long)(int)sizeof(((struct llog_unlink_rec *)0)->lur_oseq));
4011         LASSERTF((int)offsetof(struct llog_unlink_rec, lur_count) == 28, "found %lld\n",
4012                  (long long)(int)offsetof(struct llog_unlink_rec, lur_count));
4013         LASSERTF((int)sizeof(((struct llog_unlink_rec *)0)->lur_count) == 4, "found %lld\n",
4014                  (long long)(int)sizeof(((struct llog_unlink_rec *)0)->lur_count));
4015         LASSERTF((int)offsetof(struct llog_unlink_rec, lur_tail) == 32, "found %lld\n",
4016                  (long long)(int)offsetof(struct llog_unlink_rec, lur_tail));
4017         LASSERTF((int)sizeof(((struct llog_unlink_rec *)0)->lur_tail) == 8, "found %lld\n",
4018                  (long long)(int)sizeof(((struct llog_unlink_rec *)0)->lur_tail));
4019         /* Checks for struct llog_unlink64_rec */
4020         LASSERTF((int)sizeof(struct llog_unlink64_rec) == 64, "found %lld\n",
4021                  (long long)(int)sizeof(struct llog_unlink64_rec));
4022         LASSERTF((int)offsetof(struct llog_unlink64_rec, lur_hdr) == 0, "found %lld\n",
4023                  (long long)(int)offsetof(struct llog_unlink64_rec, lur_hdr));
4024         LASSERTF((int)sizeof(((struct llog_unlink64_rec *)0)->lur_hdr) == 16, "found %lld\n",
4025                  (long long)(int)sizeof(((struct llog_unlink64_rec *)0)->lur_hdr));
4026         LASSERTF((int)offsetof(struct llog_unlink64_rec, lur_fid) == 16, "found %lld\n",
4027                  (long long)(int)offsetof(struct llog_unlink64_rec, lur_fid));
4028         LASSERTF((int)sizeof(((struct llog_unlink64_rec *)0)->lur_fid) == 16, "found %lld\n",
4029                  (long long)(int)sizeof(((struct llog_unlink64_rec *)0)->lur_fid));
4030         LASSERTF((int)offsetof(struct llog_unlink64_rec, lur_count) == 32, "found %lld\n",
4031                  (long long)(int)offsetof(struct llog_unlink64_rec, lur_count));
4032         LASSERTF((int)sizeof(((struct llog_unlink64_rec *)0)->lur_count) == 4, "found %lld\n",
4033                  (long long)(int)sizeof(((struct llog_unlink64_rec *)0)->lur_count));
4034         LASSERTF((int)offsetof(struct llog_unlink64_rec, lur_tail) == 56, "found %lld\n",
4035                  (long long)(int)offsetof(struct llog_unlink64_rec, lur_tail));
4036         LASSERTF((int)sizeof(((struct llog_unlink64_rec *)0)->lur_tail) == 8, "found %lld\n",
4037                  (long long)(int)sizeof(((struct llog_unlink64_rec *)0)->lur_tail));
4038         LASSERTF((int)offsetof(struct llog_unlink64_rec, lur_padding1) == 36, "found %lld\n",
4039                  (long long)(int)offsetof(struct llog_unlink64_rec, lur_padding1));
4040         LASSERTF((int)sizeof(((struct llog_unlink64_rec *)0)->lur_padding1) == 4, "found %lld\n",
4041                  (long long)(int)sizeof(((struct llog_unlink64_rec *)0)->lur_padding1));
4042         LASSERTF((int)offsetof(struct llog_unlink64_rec, lur_padding2) == 40, "found %lld\n",
4043                  (long long)(int)offsetof(struct llog_unlink64_rec, lur_padding2));
4044         LASSERTF((int)sizeof(((struct llog_unlink64_rec *)0)->lur_padding2) == 8, "found %lld\n",
4045                  (long long)(int)sizeof(((struct llog_unlink64_rec *)0)->lur_padding2));
4046         LASSERTF((int)offsetof(struct llog_unlink64_rec, lur_padding3) == 48, "found %lld\n",
4047                  (long long)(int)offsetof(struct llog_unlink64_rec, lur_padding3));
4048         LASSERTF((int)sizeof(((struct llog_unlink64_rec *)0)->lur_padding3) == 8, "found %lld\n",
4049                  (long long)(int)sizeof(((struct llog_unlink64_rec *)0)->lur_padding3));
4050
4051         /* Checks for struct llog_setattr64_rec */
4052         LASSERTF((int)sizeof(struct llog_setattr64_rec) == 64, "found %lld\n",
4053                  (long long)(int)sizeof(struct llog_setattr64_rec));
4054         LASSERTF((int)offsetof(struct llog_setattr64_rec, lsr_hdr) == 0, "found %lld\n",
4055                  (long long)(int)offsetof(struct llog_setattr64_rec, lsr_hdr));
4056         LASSERTF((int)sizeof(((struct llog_setattr64_rec *)0)->lsr_hdr) == 16, "found %lld\n",
4057                  (long long)(int)sizeof(((struct llog_setattr64_rec *)0)->lsr_hdr));
4058         LASSERTF((int)offsetof(struct llog_setattr64_rec, lsr_oi) == 16, "found %lld\n",
4059                  (long long)(int)offsetof(struct llog_setattr64_rec, lsr_oi));
4060         LASSERTF((int)sizeof(((struct llog_setattr64_rec *)0)->lsr_oi) == 16, "found %lld\n",
4061                  (long long)(int)sizeof(((struct llog_setattr64_rec *)0)->lsr_oi));
4062         LASSERTF((int)offsetof(struct llog_setattr64_rec, lsr_uid) == 32, "found %lld\n",
4063                  (long long)(int)offsetof(struct llog_setattr64_rec, lsr_uid));
4064         LASSERTF((int)sizeof(((struct llog_setattr64_rec *)0)->lsr_uid) == 4, "found %lld\n",
4065                  (long long)(int)sizeof(((struct llog_setattr64_rec *)0)->lsr_uid));
4066         LASSERTF((int)offsetof(struct llog_setattr64_rec, lsr_uid_h) == 36, "found %lld\n",
4067                  (long long)(int)offsetof(struct llog_setattr64_rec, lsr_uid_h));
4068         LASSERTF((int)sizeof(((struct llog_setattr64_rec *)0)->lsr_uid_h) == 4, "found %lld\n",
4069                  (long long)(int)sizeof(((struct llog_setattr64_rec *)0)->lsr_uid_h));
4070         LASSERTF((int)offsetof(struct llog_setattr64_rec, lsr_gid) == 40, "found %lld\n",
4071                  (long long)(int)offsetof(struct llog_setattr64_rec, lsr_gid));
4072         LASSERTF((int)sizeof(((struct llog_setattr64_rec *)0)->lsr_gid) == 4, "found %lld\n",
4073                  (long long)(int)sizeof(((struct llog_setattr64_rec *)0)->lsr_gid));
4074         LASSERTF((int)offsetof(struct llog_setattr64_rec, lsr_gid_h) == 44, "found %lld\n",
4075                  (long long)(int)offsetof(struct llog_setattr64_rec, lsr_gid_h));
4076         LASSERTF((int)sizeof(((struct llog_setattr64_rec *)0)->lsr_gid_h) == 4, "found %lld\n",
4077                  (long long)(int)sizeof(((struct llog_setattr64_rec *)0)->lsr_gid_h));
4078         LASSERTF((int)offsetof(struct llog_setattr64_rec, lsr_valid) == 48, "found %lld\n",
4079                  (long long)(int)offsetof(struct llog_setattr64_rec, lsr_valid));
4080         LASSERTF((int)sizeof(((struct llog_setattr64_rec *)0)->lsr_valid) == 8, "found %lld\n",
4081                  (long long)(int)sizeof(((struct llog_setattr64_rec *)0)->lsr_valid));
4082         LASSERTF((int)offsetof(struct llog_setattr64_rec, lsr_tail) == 56, "found %lld\n",
4083                  (long long)(int)offsetof(struct llog_setattr64_rec, lsr_tail));
4084         LASSERTF((int)sizeof(((struct llog_setattr64_rec *)0)->lsr_tail) == 8, "found %lld\n",
4085                  (long long)(int)sizeof(((struct llog_setattr64_rec *)0)->lsr_tail));
4086         LASSERTF((int)offsetof(struct llog_setattr64_rec, lsr_hdr) == (int)offsetof(struct llog_setattr64_rec_v2, lsr_hdr), "%d != %d\n",
4087                  (int)offsetof(struct llog_setattr64_rec, lsr_hdr), (int)offsetof(struct llog_setattr64_rec_v2, lsr_hdr));
4088         LASSERTF((int)sizeof(((struct llog_setattr64_rec *)0)->lsr_hdr) == (int)sizeof(((struct llog_setattr64_rec_v2 *)0)->lsr_hdr), "%d != %d\n",
4089                  (int)sizeof(((struct llog_setattr64_rec *)0)->lsr_hdr), (int)sizeof(((struct llog_setattr64_rec_v2 *)0)->lsr_hdr));
4090         LASSERTF((int)offsetof(struct llog_setattr64_rec, lsr_oi) == (int)offsetof(struct llog_setattr64_rec_v2, lsr_oi), "%d != %d\n",
4091                  (int)offsetof(struct llog_setattr64_rec, lsr_oi), (int)offsetof(struct llog_setattr64_rec_v2, lsr_oi));
4092         LASSERTF((int)sizeof(((struct llog_setattr64_rec *)0)->lsr_oi) == (int)sizeof(((struct llog_setattr64_rec_v2 *)0)->lsr_oi), "%d != %d\n",
4093                  (int)sizeof(((struct llog_setattr64_rec *)0)->lsr_oi), (int)sizeof(((struct llog_setattr64_rec_v2 *)0)->lsr_oi));
4094         LASSERTF((int)offsetof(struct llog_setattr64_rec, lsr_uid) == (int)offsetof(struct llog_setattr64_rec_v2, lsr_uid), "%d != %d\n",
4095                  (int)offsetof(struct llog_setattr64_rec, lsr_uid), (int)offsetof(struct llog_setattr64_rec_v2, lsr_uid));
4096         LASSERTF((int)sizeof(((struct llog_setattr64_rec *)0)->lsr_uid) == (int)sizeof(((struct llog_setattr64_rec_v2 *)0)->lsr_uid), "%d != %d\n",
4097                  (int)sizeof(((struct llog_setattr64_rec *)0)->lsr_uid), (int)sizeof(((struct llog_setattr64_rec_v2 *)0)->lsr_uid));
4098         LASSERTF((int)offsetof(struct llog_setattr64_rec, lsr_uid_h) == (int)offsetof(struct llog_setattr64_rec_v2, lsr_uid_h), "%d != %d\n",
4099                  (int)offsetof(struct llog_setattr64_rec, lsr_uid_h), (int)offsetof(struct llog_setattr64_rec_v2, lsr_uid_h));
4100         LASSERTF((int)sizeof(((struct llog_setattr64_rec *)0)->lsr_uid_h) == (int)sizeof(((struct llog_setattr64_rec_v2 *)0)->lsr_uid_h), "%d != %d\n",
4101                  (int)sizeof(((struct llog_setattr64_rec *)0)->lsr_uid_h), (int)sizeof(((struct llog_setattr64_rec_v2 *)0)->lsr_uid_h));
4102         LASSERTF((int)offsetof(struct llog_setattr64_rec, lsr_gid) == (int)offsetof(struct llog_setattr64_rec_v2, lsr_gid), "%d != %d\n",
4103                  (int)offsetof(struct llog_setattr64_rec, lsr_gid), (int)offsetof(struct llog_setattr64_rec_v2, lsr_gid));
4104         LASSERTF((int)sizeof(((struct llog_setattr64_rec *)0)->lsr_gid) == (int)sizeof(((struct llog_setattr64_rec_v2 *)0)->lsr_gid), "%d != %d\n",
4105                  (int)sizeof(((struct llog_setattr64_rec *)0)->lsr_gid), (int)sizeof(((struct llog_setattr64_rec_v2 *)0)->lsr_gid));
4106         LASSERTF((int)offsetof(struct llog_setattr64_rec, lsr_gid_h) == (int)offsetof(struct llog_setattr64_rec_v2, lsr_gid_h), "%d != %d\n",
4107                  (int)offsetof(struct llog_setattr64_rec, lsr_gid_h), (int)offsetof(struct llog_setattr64_rec_v2, lsr_gid_h));
4108         LASSERTF((int)sizeof(((struct llog_setattr64_rec *)0)->lsr_gid_h) == (int)sizeof(((struct llog_setattr64_rec_v2 *)0)->lsr_gid_h), "%d != %d\n",
4109                  (int)sizeof(((struct llog_setattr64_rec *)0)->lsr_gid_h), (int)sizeof(((struct llog_setattr64_rec_v2 *)0)->lsr_gid_h));
4110         LASSERTF((int)offsetof(struct llog_setattr64_rec, lsr_valid) == (int)offsetof(struct llog_setattr64_rec_v2, lsr_valid), "%d != %d\n",
4111                  (int)offsetof(struct llog_setattr64_rec, lsr_valid), (int)offsetof(struct llog_setattr64_rec_v2, lsr_valid));
4112         LASSERTF((int)sizeof(((struct llog_setattr64_rec *)0)->lsr_valid) == (int)sizeof(((struct llog_setattr64_rec_v2 *)0)->lsr_valid), "%d != %d\n",
4113                  (int)sizeof(((struct llog_setattr64_rec *)0)->lsr_valid), (int)sizeof(((struct llog_setattr64_rec_v2 *)0)->lsr_valid));
4114         LASSERTF((int)offsetof(struct llog_setattr64_rec_v2, lsr_projid) == 56, "found %lld\n",
4115                  (long long)(int)offsetof(struct llog_setattr64_rec_v2, lsr_projid));
4116         LASSERTF((int)sizeof(((struct llog_setattr64_rec_v2 *)0)->lsr_projid) == 4, "found %lld\n",
4117                  (long long)(int)sizeof(((struct llog_setattr64_rec_v2 *)0)->lsr_projid));
4118         LASSERTF((int)offsetof(struct llog_setattr64_rec_v2, lsr_layout_version) == 60, "found %lld\n",
4119                  (long long)(int)offsetof(struct llog_setattr64_rec_v2, lsr_layout_version));
4120         LASSERTF((int)sizeof(((struct llog_setattr64_rec_v2 *)0)->lsr_layout_version) == 4, "found %lld\n",
4121                  (long long)(int)sizeof(((struct llog_setattr64_rec_v2 *)0)->lsr_layout_version));
4122         LASSERTF((int)offsetof(struct llog_setattr64_rec_v2, lsr_padding2) == 64, "found %lld\n",
4123                  (long long)(int)offsetof(struct llog_setattr64_rec_v2, lsr_padding2));
4124         LASSERTF((int)sizeof(((struct llog_setattr64_rec_v2 *)0)->lsr_padding2) == 8, "found %lld\n",
4125                  (long long)(int)sizeof(((struct llog_setattr64_rec_v2 *)0)->lsr_padding2));
4126         LASSERTF((int)offsetof(struct llog_setattr64_rec_v2, lsr_padding3) == 72, "found %lld\n",
4127                  (long long)(int)offsetof(struct llog_setattr64_rec_v2, lsr_padding3));
4128         LASSERTF((int)sizeof(((struct llog_setattr64_rec_v2 *)0)->lsr_padding3) == 8, "found %lld\n",
4129                  (long long)(int)sizeof(((struct llog_setattr64_rec_v2 *)0)->lsr_padding3));
4130         LASSERTF((int)offsetof(struct llog_setattr64_rec_v2, lsr_tail) == 80, "found %lld\n",
4131                  (long long)(int)offsetof(struct llog_setattr64_rec_v2, lsr_tail));
4132         LASSERTF((int)sizeof(((struct llog_setattr64_rec_v2 *)0)->lsr_tail) == 8, "found %lld\n",
4133                  (long long)(int)sizeof(((struct llog_setattr64_rec_v2 *)0)->lsr_tail));
4134
4135         /* Checks for struct llog_size_change_rec */
4136         LASSERTF((int)sizeof(struct llog_size_change_rec) == 64, "found %lld\n",
4137                  (long long)(int)sizeof(struct llog_size_change_rec));
4138         LASSERTF((int)offsetof(struct llog_size_change_rec, lsc_hdr) == 0, "found %lld\n",
4139                  (long long)(int)offsetof(struct llog_size_change_rec, lsc_hdr));
4140         LASSERTF((int)sizeof(((struct llog_size_change_rec *)0)->lsc_hdr) == 16, "found %lld\n",
4141                  (long long)(int)sizeof(((struct llog_size_change_rec *)0)->lsc_hdr));
4142         LASSERTF((int)offsetof(struct llog_size_change_rec, lsc_fid) == 16, "found %lld\n",
4143                  (long long)(int)offsetof(struct llog_size_change_rec, lsc_fid));
4144         LASSERTF((int)sizeof(((struct llog_size_change_rec *)0)->lsc_fid) == 16, "found %lld\n",
4145                  (long long)(int)sizeof(((struct llog_size_change_rec *)0)->lsc_fid));
4146         LASSERTF((int)offsetof(struct llog_size_change_rec, lsc_ioepoch) == 32, "found %lld\n",
4147                  (long long)(int)offsetof(struct llog_size_change_rec, lsc_ioepoch));
4148         LASSERTF((int)sizeof(((struct llog_size_change_rec *)0)->lsc_ioepoch) == 4, "found %lld\n",
4149                  (long long)(int)sizeof(((struct llog_size_change_rec *)0)->lsc_ioepoch));
4150         LASSERTF((int)offsetof(struct llog_size_change_rec, lsc_padding1) == 36, "found %lld\n",
4151                  (long long)(int)offsetof(struct llog_size_change_rec, lsc_padding1));
4152         LASSERTF((int)sizeof(((struct llog_size_change_rec *)0)->lsc_padding1) == 4, "found %lld\n",
4153                  (long long)(int)sizeof(((struct llog_size_change_rec *)0)->lsc_padding1));
4154         LASSERTF((int)offsetof(struct llog_size_change_rec, lsc_padding2) == 40, "found %lld\n",
4155                  (long long)(int)offsetof(struct llog_size_change_rec, lsc_padding2));
4156         LASSERTF((int)sizeof(((struct llog_size_change_rec *)0)->lsc_padding2) == 8, "found %lld\n",
4157                  (long long)(int)sizeof(((struct llog_size_change_rec *)0)->lsc_padding2));
4158         LASSERTF((int)offsetof(struct llog_size_change_rec, lsc_padding3) == 48, "found %lld\n",
4159                  (long long)(int)offsetof(struct llog_size_change_rec, lsc_padding3));
4160         LASSERTF((int)sizeof(((struct llog_size_change_rec *)0)->lsc_padding3) == 8, "found %lld\n",
4161                  (long long)(int)sizeof(((struct llog_size_change_rec *)0)->lsc_padding3));
4162         LASSERTF((int)offsetof(struct llog_size_change_rec, lsc_tail) == 56, "found %lld\n",
4163                  (long long)(int)offsetof(struct llog_size_change_rec, lsc_tail));
4164         LASSERTF((int)sizeof(((struct llog_size_change_rec *)0)->lsc_tail) == 8, "found %lld\n",
4165                  (long long)(int)sizeof(((struct llog_size_change_rec *)0)->lsc_tail));
4166
4167         /* Checks for struct changelog_rec */
4168         LASSERTF((int)sizeof(struct changelog_rec) == 64, "found %lld\n",
4169                  (long long)(int)sizeof(struct changelog_rec));
4170         LASSERTF((int)offsetof(struct changelog_rec, cr_namelen) == 0, "found %lld\n",
4171                  (long long)(int)offsetof(struct changelog_rec, cr_namelen));
4172         LASSERTF((int)sizeof(((struct changelog_rec *)0)->cr_namelen) == 2, "found %lld\n",
4173                  (long long)(int)sizeof(((struct changelog_rec *)0)->cr_namelen));
4174         LASSERTF((int)offsetof(struct changelog_rec, cr_flags) == 2, "found %lld\n",
4175                  (long long)(int)offsetof(struct changelog_rec, cr_flags));
4176         LASSERTF((int)sizeof(((struct changelog_rec *)0)->cr_flags) == 2, "found %lld\n",
4177                  (long long)(int)sizeof(((struct changelog_rec *)0)->cr_flags));
4178         LASSERTF((int)offsetof(struct changelog_rec, cr_type) == 4, "found %lld\n",
4179                  (long long)(int)offsetof(struct changelog_rec, cr_type));
4180         LASSERTF((int)sizeof(((struct changelog_rec *)0)->cr_type) == 4, "found %lld\n",
4181                  (long long)(int)sizeof(((struct changelog_rec *)0)->cr_type));
4182         LASSERTF((int)offsetof(struct changelog_rec, cr_index) == 8, "found %lld\n",
4183                  (long long)(int)offsetof(struct changelog_rec, cr_index));
4184         LASSERTF((int)sizeof(((struct changelog_rec *)0)->cr_index) == 8, "found %lld\n",
4185                  (long long)(int)sizeof(((struct changelog_rec *)0)->cr_index));
4186         LASSERTF((int)offsetof(struct changelog_rec, cr_prev) == 16, "found %lld\n",
4187                  (long long)(int)offsetof(struct changelog_rec, cr_prev));
4188         LASSERTF((int)sizeof(((struct changelog_rec *)0)->cr_prev) == 8, "found %lld\n",
4189                  (long long)(int)sizeof(((struct changelog_rec *)0)->cr_prev));
4190         LASSERTF((int)offsetof(struct changelog_rec, cr_time) == 24, "found %lld\n",
4191                  (long long)(int)offsetof(struct changelog_rec, cr_time));
4192         LASSERTF((int)sizeof(((struct changelog_rec *)0)->cr_time) == 8, "found %lld\n",
4193                  (long long)(int)sizeof(((struct changelog_rec *)0)->cr_time));
4194         LASSERTF((int)offsetof(struct changelog_rec, cr_tfid) == 32, "found %lld\n",
4195                  (long long)(int)offsetof(struct changelog_rec, cr_tfid));
4196         LASSERTF((int)sizeof(((struct changelog_rec *)0)->cr_tfid) == 16, "found %lld\n",
4197                  (long long)(int)sizeof(((struct changelog_rec *)0)->cr_tfid));
4198         LASSERTF((int)offsetof(struct changelog_rec, cr_pfid) == 48, "found %lld\n",
4199                  (long long)(int)offsetof(struct changelog_rec, cr_pfid));
4200         LASSERTF((int)sizeof(((struct changelog_rec *)0)->cr_pfid) == 16, "found %lld\n",
4201                  (long long)(int)sizeof(((struct changelog_rec *)0)->cr_pfid));
4202
4203         /* Checks for struct changelog_ext_rename */
4204         LASSERTF((int)sizeof(struct changelog_ext_rename) == 32, "found %lld\n",
4205                  (long long)(int)sizeof(struct changelog_ext_rename));
4206         LASSERTF((int)offsetof(struct changelog_ext_rename, cr_sfid) == 0, "found %lld\n",
4207                  (long long)(int)offsetof(struct changelog_ext_rename, cr_sfid));
4208         LASSERTF((int)sizeof(((struct changelog_ext_rename *)0)->cr_sfid) == 16, "found %lld\n",
4209                  (long long)(int)sizeof(((struct changelog_ext_rename *)0)->cr_sfid));
4210         LASSERTF((int)offsetof(struct changelog_ext_rename, cr_spfid) == 16, "found %lld\n",
4211                  (long long)(int)offsetof(struct changelog_ext_rename, cr_spfid));
4212         LASSERTF((int)sizeof(((struct changelog_ext_rename *)0)->cr_spfid) == 16, "found %lld\n",
4213                  (long long)(int)sizeof(((struct changelog_ext_rename *)0)->cr_spfid));
4214
4215         /* Checks for struct changelog_ext_jobid */
4216         LASSERTF((int)sizeof(struct changelog_ext_jobid) == 32, "found %lld\n",
4217                  (long long)(int)sizeof(struct changelog_ext_jobid));
4218         BUILD_BUG_ON(LUSTRE_JOBID_SIZE != 32);
4219         LASSERTF((int)offsetof(struct changelog_ext_jobid, cr_jobid) == 0, "found %lld\n",
4220                  (long long)(int)offsetof(struct changelog_ext_jobid, cr_jobid));
4221         LASSERTF((int)sizeof(((struct changelog_ext_jobid *)0)->cr_jobid) == 32, "found %lld\n",
4222                  (long long)(int)sizeof(((struct changelog_ext_jobid *)0)->cr_jobid));
4223
4224         /* Checks for struct changelog_setinfo */
4225         LASSERTF((int)sizeof(struct changelog_setinfo) == 12, "found %lld\n",
4226                  (long long)(int)sizeof(struct changelog_setinfo));
4227         LASSERTF((int)offsetof(struct changelog_setinfo, cs_recno) == 0, "found %lld\n",
4228                  (long long)(int)offsetof(struct changelog_setinfo, cs_recno));
4229         LASSERTF((int)sizeof(((struct changelog_setinfo *)0)->cs_recno) == 8, "found %lld\n",
4230                  (long long)(int)sizeof(((struct changelog_setinfo *)0)->cs_recno));
4231         LASSERTF((int)offsetof(struct changelog_setinfo, cs_id) == 8, "found %lld\n",
4232                  (long long)(int)offsetof(struct changelog_setinfo, cs_id));
4233         LASSERTF((int)sizeof(((struct changelog_setinfo *)0)->cs_id) == 4, "found %lld\n",
4234                  (long long)(int)sizeof(((struct changelog_setinfo *)0)->cs_id));
4235
4236         /* Checks for struct llog_changelog_rec */
4237         LASSERTF((int)sizeof(struct llog_changelog_rec) == 88, "found %lld\n",
4238                  (long long)(int)sizeof(struct llog_changelog_rec));
4239         LASSERTF((int)offsetof(struct llog_changelog_rec, cr_hdr) == 0, "found %lld\n",
4240                  (long long)(int)offsetof(struct llog_changelog_rec, cr_hdr));
4241         LASSERTF((int)sizeof(((struct llog_changelog_rec *)0)->cr_hdr) == 16, "found %lld\n",
4242                  (long long)(int)sizeof(((struct llog_changelog_rec *)0)->cr_hdr));
4243         LASSERTF((int)offsetof(struct llog_changelog_rec, cr) == 16, "found %lld\n",
4244                  (long long)(int)offsetof(struct llog_changelog_rec, cr));
4245         LASSERTF((int)sizeof(((struct llog_changelog_rec *)0)->cr) == 64, "found %lld\n",
4246                  (long long)(int)sizeof(((struct llog_changelog_rec *)0)->cr));
4247         LASSERTF((int)offsetof(struct llog_changelog_rec, cr_do_not_use) == 80, "found %lld\n",
4248                  (long long)(int)offsetof(struct llog_changelog_rec, cr_do_not_use));
4249         LASSERTF((int)sizeof(((struct llog_changelog_rec *)0)->cr_do_not_use) == 8, "found %lld\n",
4250                  (long long)(int)sizeof(((struct llog_changelog_rec *)0)->cr_do_not_use));
4251
4252         /* Checks for struct llog_changelog_user_rec */
4253         LASSERTF((int)sizeof(struct llog_changelog_user_rec) == 40, "found %lld\n",
4254                  (long long)(int)sizeof(struct llog_changelog_user_rec));
4255         LASSERTF((int)offsetof(struct llog_changelog_user_rec, cur_hdr) == 0, "found %lld\n",
4256                  (long long)(int)offsetof(struct llog_changelog_user_rec, cur_hdr));
4257         LASSERTF((int)sizeof(((struct llog_changelog_user_rec *)0)->cur_hdr) == 16, "found %lld\n",
4258                  (long long)(int)sizeof(((struct llog_changelog_user_rec *)0)->cur_hdr));
4259         LASSERTF((int)offsetof(struct llog_changelog_user_rec, cur_id) == 16, "found %lld\n",
4260                  (long long)(int)offsetof(struct llog_changelog_user_rec, cur_id));
4261         LASSERTF((int)sizeof(((struct llog_changelog_user_rec *)0)->cur_id) == 4, "found %lld\n",
4262                  (long long)(int)sizeof(((struct llog_changelog_user_rec *)0)->cur_id));
4263         LASSERTF((int)offsetof(struct llog_changelog_user_rec, cur_time) == 20, "found %lld\n",
4264                  (long long)(int)offsetof(struct llog_changelog_user_rec, cur_time));
4265         LASSERTF((int)sizeof(((struct llog_changelog_user_rec *)0)->cur_time) == 4, "found %lld\n",
4266                  (long long)(int)sizeof(((struct llog_changelog_user_rec *)0)->cur_time));
4267         LASSERTF((int)offsetof(struct llog_changelog_user_rec, cur_endrec) == 24, "found %lld\n",
4268                  (long long)(int)offsetof(struct llog_changelog_user_rec, cur_endrec));
4269         LASSERTF((int)sizeof(((struct llog_changelog_user_rec *)0)->cur_endrec) == 8, "found %lld\n",
4270                  (long long)(int)sizeof(((struct llog_changelog_user_rec *)0)->cur_endrec));
4271         LASSERTF((int)offsetof(struct llog_changelog_user_rec, cur_tail) == 32, "found %lld\n",
4272                  (long long)(int)offsetof(struct llog_changelog_user_rec, cur_tail));
4273         LASSERTF((int)sizeof(((struct llog_changelog_user_rec *)0)->cur_tail) == 8, "found %lld\n",
4274                  (long long)(int)sizeof(((struct llog_changelog_user_rec *)0)->cur_tail));
4275
4276         /* Checks for struct llog_gen */
4277         LASSERTF((int)sizeof(struct llog_gen) == 16, "found %lld\n",
4278                  (long long)(int)sizeof(struct llog_gen));
4279         LASSERTF((int)offsetof(struct llog_gen, mnt_cnt) == 0, "found %lld\n",
4280                  (long long)(int)offsetof(struct llog_gen, mnt_cnt));
4281         LASSERTF((int)sizeof(((struct llog_gen *)0)->mnt_cnt) == 8, "found %lld\n",
4282                  (long long)(int)sizeof(((struct llog_gen *)0)->mnt_cnt));
4283         LASSERTF((int)offsetof(struct llog_gen, conn_cnt) == 8, "found %lld\n",
4284                  (long long)(int)offsetof(struct llog_gen, conn_cnt));
4285         LASSERTF((int)sizeof(((struct llog_gen *)0)->conn_cnt) == 8, "found %lld\n",
4286                  (long long)(int)sizeof(((struct llog_gen *)0)->conn_cnt));
4287
4288         /* Checks for struct llog_gen_rec */
4289         LASSERTF((int)sizeof(struct llog_gen_rec) == 64, "found %lld\n",
4290                  (long long)(int)sizeof(struct llog_gen_rec));
4291         LASSERTF((int)offsetof(struct llog_gen_rec, lgr_hdr) == 0, "found %lld\n",
4292                  (long long)(int)offsetof(struct llog_gen_rec, lgr_hdr));
4293         LASSERTF((int)sizeof(((struct llog_gen_rec *)0)->lgr_hdr) == 16, "found %lld\n",
4294                  (long long)(int)sizeof(((struct llog_gen_rec *)0)->lgr_hdr));
4295         LASSERTF((int)offsetof(struct llog_gen_rec, lgr_gen) == 16, "found %lld\n",
4296                  (long long)(int)offsetof(struct llog_gen_rec, lgr_gen));
4297         LASSERTF((int)sizeof(((struct llog_gen_rec *)0)->lgr_gen) == 16, "found %lld\n",
4298                  (long long)(int)sizeof(((struct llog_gen_rec *)0)->lgr_gen));
4299         LASSERTF((int)offsetof(struct llog_gen_rec, lgr_tail) == 56, "found %lld\n",
4300                  (long long)(int)offsetof(struct llog_gen_rec, lgr_tail));
4301         LASSERTF((int)sizeof(((struct llog_gen_rec *)0)->lgr_tail) == 8, "found %lld\n",
4302                  (long long)(int)sizeof(((struct llog_gen_rec *)0)->lgr_tail));
4303
4304         /* Checks for struct llog_log_hdr */
4305         LASSERTF((int)sizeof(struct llog_log_hdr) == 8192, "found %lld\n",
4306                  (long long)(int)sizeof(struct llog_log_hdr));
4307         LASSERTF((int)offsetof(struct llog_log_hdr, llh_hdr) == 0, "found %lld\n",
4308                  (long long)(int)offsetof(struct llog_log_hdr, llh_hdr));
4309         LASSERTF((int)sizeof(((struct llog_log_hdr *)0)->llh_hdr) == 16, "found %lld\n",
4310                  (long long)(int)sizeof(((struct llog_log_hdr *)0)->llh_hdr));
4311         LASSERTF((int)offsetof(struct llog_log_hdr, llh_timestamp) == 16, "found %lld\n",
4312                  (long long)(int)offsetof(struct llog_log_hdr, llh_timestamp));
4313         LASSERTF((int)sizeof(((struct llog_log_hdr *)0)->llh_timestamp) == 8, "found %lld\n",
4314                  (long long)(int)sizeof(((struct llog_log_hdr *)0)->llh_timestamp));
4315         LASSERTF((int)offsetof(struct llog_log_hdr, llh_count) == 24, "found %lld\n",
4316                  (long long)(int)offsetof(struct llog_log_hdr, llh_count));
4317         LASSERTF((int)sizeof(((struct llog_log_hdr *)0)->llh_count) == 4, "found %lld\n",
4318                  (long long)(int)sizeof(((struct llog_log_hdr *)0)->llh_count));
4319         LASSERTF((int)offsetof(struct llog_log_hdr, llh_bitmap_offset) == 28, "found %lld\n",
4320                  (long long)(int)offsetof(struct llog_log_hdr, llh_bitmap_offset));
4321         LASSERTF((int)sizeof(((struct llog_log_hdr *)0)->llh_bitmap_offset) == 4, "found %lld\n",
4322                  (long long)(int)sizeof(((struct llog_log_hdr *)0)->llh_bitmap_offset));
4323         LASSERTF((int)offsetof(struct llog_log_hdr, llh_size) == 32, "found %lld\n",
4324                  (long long)(int)offsetof(struct llog_log_hdr, llh_size));
4325         LASSERTF((int)sizeof(((struct llog_log_hdr *)0)->llh_size) == 4, "found %lld\n",
4326                  (long long)(int)sizeof(((struct llog_log_hdr *)0)->llh_size));
4327         LASSERTF((int)offsetof(struct llog_log_hdr, llh_flags) == 36, "found %lld\n",
4328                  (long long)(int)offsetof(struct llog_log_hdr, llh_flags));
4329         LASSERTF((int)sizeof(((struct llog_log_hdr *)0)->llh_flags) == 4, "found %lld\n",
4330                  (long long)(int)sizeof(((struct llog_log_hdr *)0)->llh_flags));
4331         LASSERTF((int)offsetof(struct llog_log_hdr, llh_cat_idx) == 40, "found %lld\n",
4332                  (long long)(int)offsetof(struct llog_log_hdr, llh_cat_idx));
4333         LASSERTF((int)sizeof(((struct llog_log_hdr *)0)->llh_cat_idx) == 4, "found %lld\n",
4334                  (long long)(int)sizeof(((struct llog_log_hdr *)0)->llh_cat_idx));
4335         LASSERTF((int)offsetof(struct llog_log_hdr, llh_tgtuuid) == 44, "found %lld\n",
4336                  (long long)(int)offsetof(struct llog_log_hdr, llh_tgtuuid));
4337         LASSERTF((int)sizeof(((struct llog_log_hdr *)0)->llh_tgtuuid) == 40, "found %lld\n",
4338                  (long long)(int)sizeof(((struct llog_log_hdr *)0)->llh_tgtuuid));
4339         BUILD_BUG_ON(LLOG_F_ZAP_WHEN_EMPTY != 0x00000001);
4340         BUILD_BUG_ON(LLOG_F_IS_CAT != 0x00000002);
4341         BUILD_BUG_ON(LLOG_F_IS_PLAIN != 0x00000004);
4342         BUILD_BUG_ON(LLOG_F_EXT_JOBID != 0x00000008);
4343         BUILD_BUG_ON(LLOG_F_IS_FIXSIZE != 0x00000010);
4344         BUILD_BUG_ON(LLOG_F_EXT_EXTRA_FLAGS != 0x00000020);
4345         BUILD_BUG_ON(LLOG_F_EXT_X_UIDGID != 0x00000040);
4346         BUILD_BUG_ON(LLOG_F_EXT_X_NID != 0x00000080);
4347         BUILD_BUG_ON(LLOG_F_EXT_X_OMODE != 0x00000100);
4348         BUILD_BUG_ON(LLOG_F_EXT_X_XATTR != 0x00000200);
4349
4350         /* Checks for struct llogd_body */
4351         LASSERTF((int)sizeof(struct llogd_body) == 48, "found %lld\n",
4352                  (long long)(int)sizeof(struct llogd_body));
4353         LASSERTF((int)offsetof(struct llogd_body, lgd_logid) == 0, "found %lld\n",
4354                  (long long)(int)offsetof(struct llogd_body, lgd_logid));
4355         LASSERTF((int)sizeof(((struct llogd_body *)0)->lgd_logid) == 20, "found %lld\n",
4356                  (long long)(int)sizeof(((struct llogd_body *)0)->lgd_logid));
4357         LASSERTF((int)offsetof(struct llogd_body, lgd_ctxt_idx) == 20, "found %lld\n",
4358                  (long long)(int)offsetof(struct llogd_body, lgd_ctxt_idx));
4359         LASSERTF((int)sizeof(((struct llogd_body *)0)->lgd_ctxt_idx) == 4, "found %lld\n",
4360                  (long long)(int)sizeof(((struct llogd_body *)0)->lgd_ctxt_idx));
4361         LASSERTF((int)offsetof(struct llogd_body, lgd_llh_flags) == 24, "found %lld\n",
4362                  (long long)(int)offsetof(struct llogd_body, lgd_llh_flags));
4363         LASSERTF((int)sizeof(((struct llogd_body *)0)->lgd_llh_flags) == 4, "found %lld\n",
4364                  (long long)(int)sizeof(((struct llogd_body *)0)->lgd_llh_flags));
4365         LASSERTF((int)offsetof(struct llogd_body, lgd_index) == 28, "found %lld\n",
4366                  (long long)(int)offsetof(struct llogd_body, lgd_index));
4367         LASSERTF((int)sizeof(((struct llogd_body *)0)->lgd_index) == 4, "found %lld\n",
4368                  (long long)(int)sizeof(((struct llogd_body *)0)->lgd_index));
4369         LASSERTF((int)offsetof(struct llogd_body, lgd_saved_index) == 32, "found %lld\n",
4370                  (long long)(int)offsetof(struct llogd_body, lgd_saved_index));
4371         LASSERTF((int)sizeof(((struct llogd_body *)0)->lgd_saved_index) == 4, "found %lld\n",
4372                  (long long)(int)sizeof(((struct llogd_body *)0)->lgd_saved_index));
4373         LASSERTF((int)offsetof(struct llogd_body, lgd_len) == 36, "found %lld\n",
4374                  (long long)(int)offsetof(struct llogd_body, lgd_len));
4375         LASSERTF((int)sizeof(((struct llogd_body *)0)->lgd_len) == 4, "found %lld\n",
4376                  (long long)(int)sizeof(((struct llogd_body *)0)->lgd_len));
4377         LASSERTF((int)offsetof(struct llogd_body, lgd_cur_offset) == 40, "found %lld\n",
4378                  (long long)(int)offsetof(struct llogd_body, lgd_cur_offset));
4379         LASSERTF((int)sizeof(((struct llogd_body *)0)->lgd_cur_offset) == 8, "found %lld\n",
4380                  (long long)(int)sizeof(((struct llogd_body *)0)->lgd_cur_offset));
4381         BUILD_BUG_ON(LLOG_ORIGIN_HANDLE_CREATE != 501);
4382         BUILD_BUG_ON(LLOG_ORIGIN_HANDLE_NEXT_BLOCK != 502);
4383         BUILD_BUG_ON(LLOG_ORIGIN_HANDLE_READ_HEADER != 503);
4384         BUILD_BUG_ON(LLOG_ORIGIN_HANDLE_PREV_BLOCK != 508);
4385         BUILD_BUG_ON(LLOG_FIRST_OPC != 501);
4386         BUILD_BUG_ON(LLOG_LAST_OPC != 510);
4387         BUILD_BUG_ON(LLOG_CONFIG_ORIG_CTXT != 0);
4388         BUILD_BUG_ON(LLOG_CONFIG_REPL_CTXT != 1);
4389         BUILD_BUG_ON(LLOG_MDS_OST_ORIG_CTXT != 2);
4390         BUILD_BUG_ON(LLOG_MDS_OST_REPL_CTXT != 3);
4391         BUILD_BUG_ON(LLOG_SIZE_ORIG_CTXT != 4);
4392         BUILD_BUG_ON(LLOG_SIZE_REPL_CTXT != 5);
4393         BUILD_BUG_ON(LLOG_TEST_ORIG_CTXT != 8);
4394         BUILD_BUG_ON(LLOG_TEST_REPL_CTXT != 9);
4395         BUILD_BUG_ON(LLOG_CHANGELOG_ORIG_CTXT != 12);
4396         BUILD_BUG_ON(LLOG_CHANGELOG_REPL_CTXT != 13);
4397         BUILD_BUG_ON(LLOG_CHANGELOG_USER_ORIG_CTXT != 14);
4398         BUILD_BUG_ON(LLOG_AGENT_ORIG_CTXT != 15);
4399         BUILD_BUG_ON(LLOG_UPDATELOG_ORIG_CTXT != 16);
4400         BUILD_BUG_ON(LLOG_UPDATELOG_REPL_CTXT != 17);
4401         BUILD_BUG_ON(LLOG_MAX_CTXTS != 18);
4402
4403         /* Checks for struct llogd_conn_body */
4404         LASSERTF((int)sizeof(struct llogd_conn_body) == 40, "found %lld\n",
4405                  (long long)(int)sizeof(struct llogd_conn_body));
4406         LASSERTF((int)offsetof(struct llogd_conn_body, lgdc_gen) == 0, "found %lld\n",
4407                  (long long)(int)offsetof(struct llogd_conn_body, lgdc_gen));
4408         LASSERTF((int)sizeof(((struct llogd_conn_body *)0)->lgdc_gen) == 16, "found %lld\n",
4409                  (long long)(int)sizeof(((struct llogd_conn_body *)0)->lgdc_gen));
4410         LASSERTF((int)offsetof(struct llogd_conn_body, lgdc_logid) == 16, "found %lld\n",
4411                  (long long)(int)offsetof(struct llogd_conn_body, lgdc_logid));
4412         LASSERTF((int)sizeof(((struct llogd_conn_body *)0)->lgdc_logid) == 20, "found %lld\n",
4413                  (long long)(int)sizeof(((struct llogd_conn_body *)0)->lgdc_logid));
4414         LASSERTF((int)offsetof(struct llogd_conn_body, lgdc_ctxt_idx) == 36, "found %lld\n",
4415                  (long long)(int)offsetof(struct llogd_conn_body, lgdc_ctxt_idx));
4416         LASSERTF((int)sizeof(((struct llogd_conn_body *)0)->lgdc_ctxt_idx) == 4, "found %lld\n",
4417                  (long long)(int)sizeof(((struct llogd_conn_body *)0)->lgdc_ctxt_idx));
4418
4419         /* Checks for struct ll_fiemap_info_key */
4420         LASSERTF((int)sizeof(struct ll_fiemap_info_key) == 248, "found %lld\n",
4421                  (long long)(int)sizeof(struct ll_fiemap_info_key));
4422         LASSERTF((int)offsetof(struct ll_fiemap_info_key, lfik_name[8]) == 8, "found %lld\n",
4423                  (long long)(int)offsetof(struct ll_fiemap_info_key, lfik_name[8]));
4424         LASSERTF((int)sizeof(((struct ll_fiemap_info_key *)0)->lfik_name[8]) == 1, "found %lld\n",
4425                  (long long)(int)sizeof(((struct ll_fiemap_info_key *)0)->lfik_name[8]));
4426         LASSERTF((int)offsetof(struct ll_fiemap_info_key, lfik_oa) == 8, "found %lld\n",
4427                  (long long)(int)offsetof(struct ll_fiemap_info_key, lfik_oa));
4428         LASSERTF((int)sizeof(((struct ll_fiemap_info_key *)0)->lfik_oa) == 208, "found %lld\n",
4429                  (long long)(int)sizeof(((struct ll_fiemap_info_key *)0)->lfik_oa));
4430         LASSERTF((int)offsetof(struct ll_fiemap_info_key, lfik_fiemap) == 216, "found %lld\n",
4431                  (long long)(int)offsetof(struct ll_fiemap_info_key, lfik_fiemap));
4432         LASSERTF((int)sizeof(((struct ll_fiemap_info_key *)0)->lfik_fiemap) == 32, "found %lld\n",
4433                  (long long)(int)sizeof(((struct ll_fiemap_info_key *)0)->lfik_fiemap));
4434
4435         /* Checks for struct quota_body */
4436         LASSERTF((int)sizeof(struct quota_body) == 112, "found %lld\n",
4437                  (long long)(int)sizeof(struct quota_body));
4438         LASSERTF((int)offsetof(struct quota_body, qb_fid) == 0, "found %lld\n",
4439                  (long long)(int)offsetof(struct quota_body, qb_fid));
4440         LASSERTF((int)sizeof(((struct quota_body *)0)->qb_fid) == 16, "found %lld\n",
4441                  (long long)(int)sizeof(((struct quota_body *)0)->qb_fid));
4442         LASSERTF((int)offsetof(struct quota_body, qb_id) == 16, "found %lld\n",
4443                  (long long)(int)offsetof(struct quota_body, qb_id));
4444         LASSERTF((int)sizeof(((struct quota_body *)0)->qb_id) == 16, "found %lld\n",
4445                  (long long)(int)sizeof(((struct quota_body *)0)->qb_id));
4446         LASSERTF((int)offsetof(struct quota_body, qb_flags) == 32, "found %lld\n",
4447                  (long long)(int)offsetof(struct quota_body, qb_flags));
4448         LASSERTF((int)sizeof(((struct quota_body *)0)->qb_flags) == 4, "found %lld\n",
4449                  (long long)(int)sizeof(((struct quota_body *)0)->qb_flags));
4450         LASSERTF((int)offsetof(struct quota_body, qb_padding) == 36, "found %lld\n",
4451                  (long long)(int)offsetof(struct quota_body, qb_padding));
4452         LASSERTF((int)sizeof(((struct quota_body *)0)->qb_padding) == 4, "found %lld\n",
4453                  (long long)(int)sizeof(((struct quota_body *)0)->qb_padding));
4454         LASSERTF((int)offsetof(struct quota_body, qb_count) == 40, "found %lld\n",
4455                  (long long)(int)offsetof(struct quota_body, qb_count));
4456         LASSERTF((int)sizeof(((struct quota_body *)0)->qb_count) == 8, "found %lld\n",
4457                  (long long)(int)sizeof(((struct quota_body *)0)->qb_count));
4458         LASSERTF((int)offsetof(struct quota_body, qb_usage) == 48, "found %lld\n",
4459                  (long long)(int)offsetof(struct quota_body, qb_usage));
4460         LASSERTF((int)sizeof(((struct quota_body *)0)->qb_usage) == 8, "found %lld\n",
4461                  (long long)(int)sizeof(((struct quota_body *)0)->qb_usage));
4462         LASSERTF((int)offsetof(struct quota_body, qb_slv_ver) == 56, "found %lld\n",
4463                  (long long)(int)offsetof(struct quota_body, qb_slv_ver));
4464         LASSERTF((int)sizeof(((struct quota_body *)0)->qb_slv_ver) == 8, "found %lld\n",
4465                  (long long)(int)sizeof(((struct quota_body *)0)->qb_slv_ver));
4466         LASSERTF((int)offsetof(struct quota_body, qb_lockh) == 64, "found %lld\n",
4467                  (long long)(int)offsetof(struct quota_body, qb_lockh));
4468         LASSERTF((int)sizeof(((struct quota_body *)0)->qb_lockh) == 8, "found %lld\n",
4469                  (long long)(int)sizeof(((struct quota_body *)0)->qb_lockh));
4470         LASSERTF((int)offsetof(struct quota_body, qb_glb_lockh) == 72, "found %lld\n",
4471                  (long long)(int)offsetof(struct quota_body, qb_glb_lockh));
4472         LASSERTF((int)sizeof(((struct quota_body *)0)->qb_glb_lockh) == 8, "found %lld\n",
4473                  (long long)(int)sizeof(((struct quota_body *)0)->qb_glb_lockh));
4474         LASSERTF((int)offsetof(struct quota_body, qb_padding1[4]) == 112, "found %lld\n",
4475                  (long long)(int)offsetof(struct quota_body, qb_padding1[4]));
4476         LASSERTF((int)sizeof(((struct quota_body *)0)->qb_padding1[4]) == 8, "found %lld\n",
4477                  (long long)(int)sizeof(((struct quota_body *)0)->qb_padding1[4]));
4478
4479         /* Checks for struct mgs_target_info */
4480         LASSERTF((int)sizeof(struct mgs_target_info) == 4544, "found %lld\n",
4481                  (long long)(int)sizeof(struct mgs_target_info));
4482         LASSERTF((int)offsetof(struct mgs_target_info, mti_lustre_ver) == 0, "found %lld\n",
4483                  (long long)(int)offsetof(struct mgs_target_info, mti_lustre_ver));
4484         LASSERTF((int)sizeof(((struct mgs_target_info *)0)->mti_lustre_ver) == 4, "found %lld\n",
4485                  (long long)(int)sizeof(((struct mgs_target_info *)0)->mti_lustre_ver));
4486         LASSERTF((int)offsetof(struct mgs_target_info, mti_stripe_index) == 4, "found %lld\n",
4487                  (long long)(int)offsetof(struct mgs_target_info, mti_stripe_index));
4488         LASSERTF((int)sizeof(((struct mgs_target_info *)0)->mti_stripe_index) == 4, "found %lld\n",
4489                  (long long)(int)sizeof(((struct mgs_target_info *)0)->mti_stripe_index));
4490         LASSERTF((int)offsetof(struct mgs_target_info, mti_config_ver) == 8, "found %lld\n",
4491                  (long long)(int)offsetof(struct mgs_target_info, mti_config_ver));
4492         LASSERTF((int)sizeof(((struct mgs_target_info *)0)->mti_config_ver) == 4, "found %lld\n",
4493                  (long long)(int)sizeof(((struct mgs_target_info *)0)->mti_config_ver));
4494         LASSERTF((int)offsetof(struct mgs_target_info, mti_flags) == 12, "found %lld\n",
4495                  (long long)(int)offsetof(struct mgs_target_info, mti_flags));
4496         LASSERTF((int)sizeof(((struct mgs_target_info *)0)->mti_flags) == 4, "found %lld\n",
4497                  (long long)(int)sizeof(((struct mgs_target_info *)0)->mti_flags));
4498         LASSERTF((int)offsetof(struct mgs_target_info, mti_nid_count) == 16, "found %lld\n",
4499                  (long long)(int)offsetof(struct mgs_target_info, mti_nid_count));
4500         LASSERTF((int)sizeof(((struct mgs_target_info *)0)->mti_nid_count) == 4, "found %lld\n",
4501                  (long long)(int)sizeof(((struct mgs_target_info *)0)->mti_nid_count));
4502         LASSERTF((int)offsetof(struct mgs_target_info, mti_instance) == 20, "found %lld\n",
4503                  (long long)(int)offsetof(struct mgs_target_info, mti_instance));
4504         LASSERTF((int)sizeof(((struct mgs_target_info *)0)->mti_instance) == 4, "found %lld\n",
4505                  (long long)(int)sizeof(((struct mgs_target_info *)0)->mti_instance));
4506         LASSERTF((int)offsetof(struct mgs_target_info, mti_fsname) == 24, "found %lld\n",
4507                  (long long)(int)offsetof(struct mgs_target_info, mti_fsname));
4508         LASSERTF((int)sizeof(((struct mgs_target_info *)0)->mti_fsname) == 64, "found %lld\n",
4509                  (long long)(int)sizeof(((struct mgs_target_info *)0)->mti_fsname));
4510         LASSERTF((int)offsetof(struct mgs_target_info, mti_svname) == 88, "found %lld\n",
4511                  (long long)(int)offsetof(struct mgs_target_info, mti_svname));
4512         LASSERTF((int)sizeof(((struct mgs_target_info *)0)->mti_svname) == 64, "found %lld\n",
4513                  (long long)(int)sizeof(((struct mgs_target_info *)0)->mti_svname));
4514         LASSERTF((int)offsetof(struct mgs_target_info, mti_uuid) == 152, "found %lld\n",
4515                  (long long)(int)offsetof(struct mgs_target_info, mti_uuid));
4516         LASSERTF((int)sizeof(((struct mgs_target_info *)0)->mti_uuid) == 40, "found %lld\n",
4517                  (long long)(int)sizeof(((struct mgs_target_info *)0)->mti_uuid));
4518         LASSERTF((int)offsetof(struct mgs_target_info, mti_nids) == 192, "found %lld\n",
4519                  (long long)(int)offsetof(struct mgs_target_info, mti_nids));
4520         LASSERTF((int)sizeof(((struct mgs_target_info *)0)->mti_nids) == 256, "found %lld\n",
4521                  (long long)(int)sizeof(((struct mgs_target_info *)0)->mti_nids));
4522         LASSERTF((int)offsetof(struct mgs_target_info, mti_params) == 448, "found %lld\n",
4523                  (long long)(int)offsetof(struct mgs_target_info, mti_params));
4524         LASSERTF((int)sizeof(((struct mgs_target_info *)0)->mti_params) == 4096, "found %lld\n",
4525                  (long long)(int)sizeof(((struct mgs_target_info *)0)->mti_params));
4526
4527         /* Checks for struct mgs_nidtbl_entry */
4528         LASSERTF((int)sizeof(struct mgs_nidtbl_entry) == 24, "found %lld\n",
4529                  (long long)(int)sizeof(struct mgs_nidtbl_entry));
4530         LASSERTF((int)offsetof(struct mgs_nidtbl_entry, mne_version) == 0, "found %lld\n",
4531                  (long long)(int)offsetof(struct mgs_nidtbl_entry, mne_version));
4532         LASSERTF((int)sizeof(((struct mgs_nidtbl_entry *)0)->mne_version) == 8, "found %lld\n",
4533                  (long long)(int)sizeof(((struct mgs_nidtbl_entry *)0)->mne_version));
4534         LASSERTF((int)offsetof(struct mgs_nidtbl_entry, mne_instance) == 8, "found %lld\n",
4535                  (long long)(int)offsetof(struct mgs_nidtbl_entry, mne_instance));
4536         LASSERTF((int)sizeof(((struct mgs_nidtbl_entry *)0)->mne_instance) == 4, "found %lld\n",
4537                  (long long)(int)sizeof(((struct mgs_nidtbl_entry *)0)->mne_instance));
4538         LASSERTF((int)offsetof(struct mgs_nidtbl_entry, mne_index) == 12, "found %lld\n",
4539                  (long long)(int)offsetof(struct mgs_nidtbl_entry, mne_index));
4540         LASSERTF((int)sizeof(((struct mgs_nidtbl_entry *)0)->mne_index) == 4, "found %lld\n",
4541                  (long long)(int)sizeof(((struct mgs_nidtbl_entry *)0)->mne_index));
4542         LASSERTF((int)offsetof(struct mgs_nidtbl_entry, mne_length) == 16, "found %lld\n",
4543                  (long long)(int)offsetof(struct mgs_nidtbl_entry, mne_length));
4544         LASSERTF((int)sizeof(((struct mgs_nidtbl_entry *)0)->mne_length) == 4, "found %lld\n",
4545                  (long long)(int)sizeof(((struct mgs_nidtbl_entry *)0)->mne_length));
4546         LASSERTF((int)offsetof(struct mgs_nidtbl_entry, mne_type) == 20, "found %lld\n",
4547                  (long long)(int)offsetof(struct mgs_nidtbl_entry, mne_type));
4548         LASSERTF((int)sizeof(((struct mgs_nidtbl_entry *)0)->mne_type) == 1, "found %lld\n",
4549                  (long long)(int)sizeof(((struct mgs_nidtbl_entry *)0)->mne_type));
4550         LASSERTF((int)offsetof(struct mgs_nidtbl_entry, mne_nid_type) == 21, "found %lld\n",
4551                  (long long)(int)offsetof(struct mgs_nidtbl_entry, mne_nid_type));
4552         LASSERTF((int)sizeof(((struct mgs_nidtbl_entry *)0)->mne_nid_type) == 1, "found %lld\n",
4553                  (long long)(int)sizeof(((struct mgs_nidtbl_entry *)0)->mne_nid_type));
4554         LASSERTF((int)offsetof(struct mgs_nidtbl_entry, mne_nid_size) == 22, "found %lld\n",
4555                  (long long)(int)offsetof(struct mgs_nidtbl_entry, mne_nid_size));
4556         LASSERTF((int)sizeof(((struct mgs_nidtbl_entry *)0)->mne_nid_size) == 1, "found %lld\n",
4557                  (long long)(int)sizeof(((struct mgs_nidtbl_entry *)0)->mne_nid_size));
4558         LASSERTF((int)offsetof(struct mgs_nidtbl_entry, mne_nid_count) == 23, "found %lld\n",
4559                  (long long)(int)offsetof(struct mgs_nidtbl_entry, mne_nid_count));
4560         LASSERTF((int)sizeof(((struct mgs_nidtbl_entry *)0)->mne_nid_count) == 1, "found %lld\n",
4561                  (long long)(int)sizeof(((struct mgs_nidtbl_entry *)0)->mne_nid_count));
4562         LASSERTF((int)offsetof(struct mgs_nidtbl_entry, u.nids[0]) == 24, "found %lld\n",
4563                  (long long)(int)offsetof(struct mgs_nidtbl_entry, u.nids[0]));
4564         LASSERTF((int)sizeof(((struct mgs_nidtbl_entry *)0)->u.nids[0]) == 8, "found %lld\n",
4565                  (long long)(int)sizeof(((struct mgs_nidtbl_entry *)0)->u.nids[0]));
4566
4567         /* Checks for struct mgs_config_body */
4568         LASSERTF((int)sizeof(struct mgs_config_body) == 80, "found %lld\n",
4569                  (long long)(int)sizeof(struct mgs_config_body));
4570         LASSERTF((int)offsetof(struct mgs_config_body, mcb_name) == 0, "found %lld\n",
4571                  (long long)(int)offsetof(struct mgs_config_body, mcb_name));
4572         LASSERTF((int)sizeof(((struct mgs_config_body *)0)->mcb_name) == 64, "found %lld\n",
4573                  (long long)(int)sizeof(((struct mgs_config_body *)0)->mcb_name));
4574         LASSERTF((int)offsetof(struct mgs_config_body, mcb_offset) == 64, "found %lld\n",
4575                  (long long)(int)offsetof(struct mgs_config_body, mcb_offset));
4576         LASSERTF((int)sizeof(((struct mgs_config_body *)0)->mcb_offset) == 8, "found %lld\n",
4577                  (long long)(int)sizeof(((struct mgs_config_body *)0)->mcb_offset));
4578         LASSERTF((int)offsetof(struct mgs_config_body, mcb_type) == 72, "found %lld\n",
4579                  (long long)(int)offsetof(struct mgs_config_body, mcb_type));
4580         LASSERTF((int)sizeof(((struct mgs_config_body *)0)->mcb_type) == 2, "found %lld\n",
4581                  (long long)(int)sizeof(((struct mgs_config_body *)0)->mcb_type));
4582         LASSERTF((int)offsetof(struct mgs_config_body, mcb_nm_cur_pass) == 74, "found %lld\n",
4583                  (long long)(int)offsetof(struct mgs_config_body, mcb_nm_cur_pass));
4584         LASSERTF((int)sizeof(((struct mgs_config_body *)0)->mcb_nm_cur_pass) == 1, "found %lld\n",
4585                  (long long)(int)sizeof(((struct mgs_config_body *)0)->mcb_nm_cur_pass));
4586         LASSERTF((int)offsetof(struct mgs_config_body, mcb_bits) == 75, "found %lld\n",
4587                  (long long)(int)offsetof(struct mgs_config_body, mcb_bits));
4588         LASSERTF((int)sizeof(((struct mgs_config_body *)0)->mcb_bits) == 1, "found %lld\n",
4589                  (long long)(int)sizeof(((struct mgs_config_body *)0)->mcb_bits));
4590         LASSERTF((int)offsetof(struct mgs_config_body, mcb_units) == 76, "found %lld\n",
4591                  (long long)(int)offsetof(struct mgs_config_body, mcb_units));
4592         LASSERTF((int)sizeof(((struct mgs_config_body *)0)->mcb_units) == 4, "found %lld\n",
4593                  (long long)(int)sizeof(((struct mgs_config_body *)0)->mcb_units));
4594         BUILD_BUG_ON(CONFIG_T_CONFIG != 0);
4595         BUILD_BUG_ON(CONFIG_T_SPTLRPC != 1);
4596         BUILD_BUG_ON(CONFIG_T_RECOVER != 2);
4597         BUILD_BUG_ON(CONFIG_T_PARAMS != 3);
4598         BUILD_BUG_ON(CONFIG_T_NODEMAP != 4);
4599         BUILD_BUG_ON(CONFIG_T_BARRIER != 5);
4600
4601         /* Checks for struct mgs_config_res */
4602         LASSERTF((int)sizeof(struct mgs_config_res) == 16, "found %lld\n",
4603                  (long long)(int)sizeof(struct mgs_config_res));
4604         LASSERTF((int)offsetof(struct mgs_config_res, mcr_offset) == 0, "found %lld\n",
4605                  (long long)(int)offsetof(struct mgs_config_res, mcr_offset));
4606         LASSERTF((int)sizeof(((struct mgs_config_res *)0)->mcr_offset) == 8, "found %lld\n",
4607                  (long long)(int)sizeof(((struct mgs_config_res *)0)->mcr_offset));
4608         LASSERTF((int)offsetof(struct mgs_config_res, mcr_size) == 8, "found %lld\n",
4609                  (long long)(int)offsetof(struct mgs_config_res, mcr_size));
4610         LASSERTF((int)sizeof(((struct mgs_config_res *)0)->mcr_size) == 8, "found %lld\n",
4611                  (long long)(int)sizeof(((struct mgs_config_res *)0)->mcr_size));
4612
4613         /* Checks for struct getinfo_fid2path */
4614         LASSERTF((int)sizeof(struct getinfo_fid2path) == 32, "found %lld\n",
4615                  (long long)(int)sizeof(struct getinfo_fid2path));
4616         LASSERTF((int)offsetof(struct getinfo_fid2path, gf_fid) == 0, "found %lld\n",
4617                  (long long)(int)offsetof(struct getinfo_fid2path, gf_fid));
4618         LASSERTF((int)sizeof(((struct getinfo_fid2path *)0)->gf_fid) == 16, "found %lld\n",
4619                  (long long)(int)sizeof(((struct getinfo_fid2path *)0)->gf_fid));
4620         LASSERTF((int)offsetof(struct getinfo_fid2path, gf_recno) == 16, "found %lld\n",
4621                  (long long)(int)offsetof(struct getinfo_fid2path, gf_recno));
4622         LASSERTF((int)sizeof(((struct getinfo_fid2path *)0)->gf_recno) == 8, "found %lld\n",
4623                  (long long)(int)sizeof(((struct getinfo_fid2path *)0)->gf_recno));
4624         LASSERTF((int)offsetof(struct getinfo_fid2path, gf_linkno) == 24, "found %lld\n",
4625                  (long long)(int)offsetof(struct getinfo_fid2path, gf_linkno));
4626         LASSERTF((int)sizeof(((struct getinfo_fid2path *)0)->gf_linkno) == 4, "found %lld\n",
4627                  (long long)(int)sizeof(((struct getinfo_fid2path *)0)->gf_linkno));
4628         LASSERTF((int)offsetof(struct getinfo_fid2path, gf_pathlen) == 28, "found %lld\n",
4629                  (long long)(int)offsetof(struct getinfo_fid2path, gf_pathlen));
4630         LASSERTF((int)sizeof(((struct getinfo_fid2path *)0)->gf_pathlen) == 4, "found %lld\n",
4631                  (long long)(int)sizeof(((struct getinfo_fid2path *)0)->gf_pathlen));
4632         LASSERTF((int)offsetof(struct getinfo_fid2path, gf_u.gf_path[0]) == 32, "found %lld\n",
4633                  (long long)(int)offsetof(struct getinfo_fid2path, gf_u.gf_path[0]));
4634         LASSERTF((int)sizeof(((struct getinfo_fid2path *)0)->gf_u.gf_path[0]) == 1, "found %lld\n",
4635                  (long long)(int)sizeof(((struct getinfo_fid2path *)0)->gf_u.gf_path[0]));
4636
4637         /* Checks for struct fiemap */
4638         LASSERTF((int)sizeof(struct fiemap) == 32, "found %lld\n",
4639                  (long long)(int)sizeof(struct fiemap));
4640         LASSERTF((int)offsetof(struct fiemap, fm_start) == 0, "found %lld\n",
4641                  (long long)(int)offsetof(struct fiemap, fm_start));
4642         LASSERTF((int)sizeof(((struct fiemap *)0)->fm_start) == 8, "found %lld\n",
4643                  (long long)(int)sizeof(((struct fiemap *)0)->fm_start));
4644         LASSERTF((int)offsetof(struct fiemap, fm_length) == 8, "found %lld\n",
4645                  (long long)(int)offsetof(struct fiemap, fm_length));
4646         LASSERTF((int)sizeof(((struct fiemap *)0)->fm_length) == 8, "found %lld\n",
4647                  (long long)(int)sizeof(((struct fiemap *)0)->fm_length));
4648         LASSERTF((int)offsetof(struct fiemap, fm_flags) == 16, "found %lld\n",
4649                  (long long)(int)offsetof(struct fiemap, fm_flags));
4650         LASSERTF((int)sizeof(((struct fiemap *)0)->fm_flags) == 4, "found %lld\n",
4651                  (long long)(int)sizeof(((struct fiemap *)0)->fm_flags));
4652         LASSERTF((int)offsetof(struct fiemap, fm_mapped_extents) == 20, "found %lld\n",
4653                  (long long)(int)offsetof(struct fiemap, fm_mapped_extents));
4654         LASSERTF((int)sizeof(((struct fiemap *)0)->fm_mapped_extents) == 4, "found %lld\n",
4655                  (long long)(int)sizeof(((struct fiemap *)0)->fm_mapped_extents));
4656         LASSERTF((int)offsetof(struct fiemap, fm_extent_count) == 24, "found %lld\n",
4657                  (long long)(int)offsetof(struct fiemap, fm_extent_count));
4658         LASSERTF((int)sizeof(((struct fiemap *)0)->fm_extent_count) == 4, "found %lld\n",
4659                  (long long)(int)sizeof(((struct fiemap *)0)->fm_extent_count));
4660         LASSERTF((int)offsetof(struct fiemap, fm_reserved) == 28, "found %lld\n",
4661                  (long long)(int)offsetof(struct fiemap, fm_reserved));
4662         LASSERTF((int)sizeof(((struct fiemap *)0)->fm_reserved) == 4, "found %lld\n",
4663                  (long long)(int)sizeof(((struct fiemap *)0)->fm_reserved));
4664         LASSERTF((int)offsetof(struct fiemap, fm_extents) == 32, "found %lld\n",
4665                  (long long)(int)offsetof(struct fiemap, fm_extents));
4666         LASSERTF((int)sizeof(((struct fiemap *)0)->fm_extents) == 0, "found %lld\n",
4667                  (long long)(int)sizeof(((struct fiemap *)0)->fm_extents));
4668         BUILD_BUG_ON(FIEMAP_FLAG_SYNC != 0x00000001);
4669         BUILD_BUG_ON(FIEMAP_FLAG_XATTR != 0x00000002);
4670         BUILD_BUG_ON(FIEMAP_FLAG_DEVICE_ORDER != 0x40000000);
4671
4672         /* Checks for struct fiemap_extent */
4673         LASSERTF((int)sizeof(struct fiemap_extent) == 56, "found %lld\n",
4674                  (long long)(int)sizeof(struct fiemap_extent));
4675         LASSERTF((int)offsetof(struct fiemap_extent, fe_logical) == 0, "found %lld\n",
4676                  (long long)(int)offsetof(struct fiemap_extent, fe_logical));
4677         LASSERTF((int)sizeof(((struct fiemap_extent *)0)->fe_logical) == 8, "found %lld\n",
4678                  (long long)(int)sizeof(((struct fiemap_extent *)0)->fe_logical));
4679         LASSERTF((int)offsetof(struct fiemap_extent, fe_physical) == 8, "found %lld\n",
4680                  (long long)(int)offsetof(struct fiemap_extent, fe_physical));
4681         LASSERTF((int)sizeof(((struct fiemap_extent *)0)->fe_physical) == 8, "found %lld\n",
4682                  (long long)(int)sizeof(((struct fiemap_extent *)0)->fe_physical));
4683         LASSERTF((int)offsetof(struct fiemap_extent, fe_length) == 16, "found %lld\n",
4684                  (long long)(int)offsetof(struct fiemap_extent, fe_length));
4685         LASSERTF((int)sizeof(((struct fiemap_extent *)0)->fe_length) == 8, "found %lld\n",
4686                  (long long)(int)sizeof(((struct fiemap_extent *)0)->fe_length));
4687         LASSERTF((int)offsetof(struct fiemap_extent, fe_flags) == 40, "found %lld\n",
4688                  (long long)(int)offsetof(struct fiemap_extent, fe_flags));
4689         LASSERTF((int)sizeof(((struct fiemap_extent *)0)->fe_flags) == 4, "found %lld\n",
4690                  (long long)(int)sizeof(((struct fiemap_extent *)0)->fe_flags));
4691         LASSERTF((int)offsetof(struct fiemap_extent, fe_reserved[0]) == 44, "found %lld\n",
4692                  (long long)(int)offsetof(struct fiemap_extent, fe_reserved[0]));
4693         LASSERTF((int)sizeof(((struct fiemap_extent *)0)->fe_reserved[0]) == 4, "found %lld\n",
4694                  (long long)(int)sizeof(((struct fiemap_extent *)0)->fe_reserved[0]));
4695         BUILD_BUG_ON(FIEMAP_EXTENT_LAST != 0x00000001);
4696         BUILD_BUG_ON(FIEMAP_EXTENT_UNKNOWN != 0x00000002);
4697         BUILD_BUG_ON(FIEMAP_EXTENT_DELALLOC != 0x00000004);
4698         BUILD_BUG_ON(FIEMAP_EXTENT_ENCODED != 0x00000008);
4699         BUILD_BUG_ON(FIEMAP_EXTENT_DATA_ENCRYPTED != 0x00000080);
4700         BUILD_BUG_ON(FIEMAP_EXTENT_NOT_ALIGNED != 0x00000100);
4701         BUILD_BUG_ON(FIEMAP_EXTENT_DATA_INLINE != 0x00000200);
4702         BUILD_BUG_ON(FIEMAP_EXTENT_DATA_TAIL != 0x00000400);
4703         BUILD_BUG_ON(FIEMAP_EXTENT_UNWRITTEN != 0x00000800);
4704         BUILD_BUG_ON(FIEMAP_EXTENT_MERGED != 0x00001000);
4705         BUILD_BUG_ON(FIEMAP_EXTENT_SHARED != 0x00002000);
4706         BUILD_BUG_ON(FIEMAP_EXTENT_NO_DIRECT != 0x40000000);
4707         BUILD_BUG_ON(FIEMAP_EXTENT_NET != 0x80000000);
4708
4709 #ifdef CONFIG_FS_POSIX_ACL
4710         /* Checks for type posix_acl_xattr_entry */
4711         LASSERTF((int)sizeof(posix_acl_xattr_entry) == 8, "found %lld\n",
4712                  (long long)(int)sizeof(posix_acl_xattr_entry));
4713         LASSERTF((int)offsetof(posix_acl_xattr_entry, e_tag) == 0, "found %lld\n",
4714                  (long long)(int)offsetof(posix_acl_xattr_entry, e_tag));
4715         LASSERTF((int)sizeof(((posix_acl_xattr_entry *)0)->e_tag) == 2, "found %lld\n",
4716                  (long long)(int)sizeof(((posix_acl_xattr_entry *)0)->e_tag));
4717         LASSERTF((int)offsetof(posix_acl_xattr_entry, e_perm) == 2, "found %lld\n",
4718                  (long long)(int)offsetof(posix_acl_xattr_entry, e_perm));
4719         LASSERTF((int)sizeof(((posix_acl_xattr_entry *)0)->e_perm) == 2, "found %lld\n",
4720                  (long long)(int)sizeof(((posix_acl_xattr_entry *)0)->e_perm));
4721         LASSERTF((int)offsetof(posix_acl_xattr_entry, e_id) == 4, "found %lld\n",
4722                  (long long)(int)offsetof(posix_acl_xattr_entry, e_id));
4723         LASSERTF((int)sizeof(((posix_acl_xattr_entry *)0)->e_id) == 4, "found %lld\n",
4724                  (long long)(int)sizeof(((posix_acl_xattr_entry *)0)->e_id));
4725 #endif /* CONFIG_FS_POSIX_ACL */
4726
4727 #ifdef CONFIG_FS_POSIX_ACL
4728         /* Checks for type posix_acl_xattr_header */
4729         LASSERTF((int)sizeof(posix_acl_xattr_header) == 4, "found %lld\n",
4730                  (long long)(int)sizeof(posix_acl_xattr_header));
4731         LASSERTF((int)offsetof(posix_acl_xattr_header, a_version) == 0, "found %lld\n",
4732                  (long long)(int)offsetof(posix_acl_xattr_header, a_version));
4733         LASSERTF((int)sizeof(((posix_acl_xattr_header *)0)->a_version) == 4, "found %lld\n",
4734                  (long long)(int)sizeof(((posix_acl_xattr_header *)0)->a_version));
4735 #ifndef HAVE_STRUCT_POSIX_ACL_XATTR
4736         LASSERTF((int)offsetof(posix_acl_xattr_header, a_entries) == 4, "found %lld\n",
4737                  (long long)(int)offsetof(posix_acl_xattr_header, a_entries));
4738         LASSERTF((int)sizeof(((posix_acl_xattr_header *)0)->a_entries) == 0, "found %lld\n",
4739                  (long long)(int)sizeof(((posix_acl_xattr_header *)0)->a_entries));
4740 #endif /* HAVE_STRUCT_POSIX_ACL_XATTR */
4741 #endif /* CONFIG_FS_POSIX_ACL */
4742
4743         /* Checks for struct link_ea_header */
4744         LASSERTF((int)sizeof(struct link_ea_header) == 24, "found %lld\n",
4745                  (long long)(int)sizeof(struct link_ea_header));
4746         LASSERTF((int)offsetof(struct link_ea_header, leh_magic) == 0, "found %lld\n",
4747                  (long long)(int)offsetof(struct link_ea_header, leh_magic));
4748         LASSERTF((int)sizeof(((struct link_ea_header *)0)->leh_magic) == 4, "found %lld\n",
4749                  (long long)(int)sizeof(((struct link_ea_header *)0)->leh_magic));
4750         LASSERTF((int)offsetof(struct link_ea_header, leh_reccount) == 4, "found %lld\n",
4751                  (long long)(int)offsetof(struct link_ea_header, leh_reccount));
4752         LASSERTF((int)sizeof(((struct link_ea_header *)0)->leh_reccount) == 4, "found %lld\n",
4753                  (long long)(int)sizeof(((struct link_ea_header *)0)->leh_reccount));
4754         LASSERTF((int)offsetof(struct link_ea_header, leh_len) == 8, "found %lld\n",
4755                  (long long)(int)offsetof(struct link_ea_header, leh_len));
4756         LASSERTF((int)sizeof(((struct link_ea_header *)0)->leh_len) == 8, "found %lld\n",
4757                  (long long)(int)sizeof(((struct link_ea_header *)0)->leh_len));
4758         LASSERTF((int)offsetof(struct link_ea_header, leh_overflow_time) == 16, "found %lld\n",
4759                  (long long)(int)offsetof(struct link_ea_header, leh_overflow_time));
4760         LASSERTF((int)sizeof(((struct link_ea_header *)0)->leh_overflow_time) == 4, "found %lld\n",
4761                  (long long)(int)sizeof(((struct link_ea_header *)0)->leh_overflow_time));
4762         LASSERTF((int)offsetof(struct link_ea_header, leh_padding) == 20, "found %lld\n",
4763                  (long long)(int)offsetof(struct link_ea_header, leh_padding));
4764         LASSERTF((int)sizeof(((struct link_ea_header *)0)->leh_padding) == 4, "found %lld\n",
4765                  (long long)(int)sizeof(((struct link_ea_header *)0)->leh_padding));
4766         BUILD_BUG_ON(LINK_EA_MAGIC != 0x11EAF1DFUL);
4767
4768         /* Checks for struct link_ea_entry */
4769         LASSERTF((int)sizeof(struct link_ea_entry) == 18, "found %lld\n",
4770                  (long long)(int)sizeof(struct link_ea_entry));
4771         LASSERTF((int)offsetof(struct link_ea_entry, lee_reclen) == 0, "found %lld\n",
4772                  (long long)(int)offsetof(struct link_ea_entry, lee_reclen));
4773         LASSERTF((int)sizeof(((struct link_ea_entry *)0)->lee_reclen) == 2, "found %lld\n",
4774                  (long long)(int)sizeof(((struct link_ea_entry *)0)->lee_reclen));
4775         LASSERTF((int)offsetof(struct link_ea_entry, lee_parent_fid) == 2, "found %lld\n",
4776                  (long long)(int)offsetof(struct link_ea_entry, lee_parent_fid));
4777         LASSERTF((int)sizeof(((struct link_ea_entry *)0)->lee_parent_fid) == 16, "found %lld\n",
4778                  (long long)(int)sizeof(((struct link_ea_entry *)0)->lee_parent_fid));
4779         LASSERTF((int)offsetof(struct link_ea_entry, lee_name) == 18, "found %lld\n",
4780                  (long long)(int)offsetof(struct link_ea_entry, lee_name));
4781         LASSERTF((int)sizeof(((struct link_ea_entry *)0)->lee_name) == 0, "found %lld\n",
4782                  (long long)(int)sizeof(((struct link_ea_entry *)0)->lee_name));
4783
4784         /* Checks for struct layout_intent */
4785         LASSERTF((int)sizeof(struct layout_intent) == 24, "found %lld\n",
4786                  (long long)(int)sizeof(struct layout_intent));
4787         LASSERTF((int)offsetof(struct layout_intent, li_opc) == 0, "found %lld\n",
4788                  (long long)(int)offsetof(struct layout_intent, li_opc));
4789         LASSERTF((int)sizeof(((struct layout_intent *)0)->li_opc) == 4, "found %lld\n",
4790                  (long long)(int)sizeof(((struct layout_intent *)0)->li_opc));
4791         LASSERTF((int)offsetof(struct layout_intent, li_flags) == 4, "found %lld\n",
4792                  (long long)(int)offsetof(struct layout_intent, li_flags));
4793         LASSERTF((int)sizeof(((struct layout_intent *)0)->li_flags) == 4, "found %lld\n",
4794                  (long long)(int)sizeof(((struct layout_intent *)0)->li_flags));
4795         LASSERTF((int)offsetof(struct layout_intent, li_extent) == 8, "found %lld\n",
4796                  (long long)(int)offsetof(struct layout_intent, li_extent));
4797         LASSERTF((int)sizeof(((struct layout_intent *)0)->li_extent) == 16, "found %lld\n",
4798                  (long long)(int)sizeof(((struct layout_intent *)0)->li_extent));
4799         LASSERTF(LAYOUT_INTENT_ACCESS == 0, "found %lld\n",
4800                  (long long)LAYOUT_INTENT_ACCESS);
4801         LASSERTF(LAYOUT_INTENT_READ == 1, "found %lld\n",
4802                  (long long)LAYOUT_INTENT_READ);
4803         LASSERTF(LAYOUT_INTENT_WRITE == 2, "found %lld\n",
4804                  (long long)LAYOUT_INTENT_WRITE);
4805         LASSERTF(LAYOUT_INTENT_GLIMPSE == 3, "found %lld\n",
4806                  (long long)LAYOUT_INTENT_GLIMPSE);
4807         LASSERTF(LAYOUT_INTENT_TRUNC == 4, "found %lld\n",
4808                  (long long)LAYOUT_INTENT_TRUNC);
4809         LASSERTF(LAYOUT_INTENT_RELEASE == 5, "found %lld\n",
4810                  (long long)LAYOUT_INTENT_RELEASE);
4811         LASSERTF(LAYOUT_INTENT_RESTORE == 6, "found %lld\n",
4812                  (long long)LAYOUT_INTENT_RESTORE);
4813
4814         /* Checks for struct hsm_action_item */
4815         LASSERTF((int)sizeof(struct hsm_action_item) == 72, "found %lld\n",
4816                  (long long)(int)sizeof(struct hsm_action_item));
4817         LASSERTF((int)offsetof(struct hsm_action_item, hai_len) == 0, "found %lld\n",
4818                  (long long)(int)offsetof(struct hsm_action_item, hai_len));
4819         LASSERTF((int)sizeof(((struct hsm_action_item *)0)->hai_len) == 4, "found %lld\n",
4820                  (long long)(int)sizeof(((struct hsm_action_item *)0)->hai_len));
4821         LASSERTF((int)offsetof(struct hsm_action_item, hai_action) == 4, "found %lld\n",
4822                  (long long)(int)offsetof(struct hsm_action_item, hai_action));
4823         LASSERTF((int)sizeof(((struct hsm_action_item *)0)->hai_action) == 4, "found %lld\n",
4824                  (long long)(int)sizeof(((struct hsm_action_item *)0)->hai_action));
4825         LASSERTF((int)offsetof(struct hsm_action_item, hai_fid) == 8, "found %lld\n",
4826                  (long long)(int)offsetof(struct hsm_action_item, hai_fid));
4827         LASSERTF((int)sizeof(((struct hsm_action_item *)0)->hai_fid) == 16, "found %lld\n",
4828                  (long long)(int)sizeof(((struct hsm_action_item *)0)->hai_fid));
4829         LASSERTF((int)offsetof(struct hsm_action_item, hai_dfid) == 24, "found %lld\n",
4830                  (long long)(int)offsetof(struct hsm_action_item, hai_dfid));
4831         LASSERTF((int)sizeof(((struct hsm_action_item *)0)->hai_dfid) == 16, "found %lld\n",
4832                  (long long)(int)sizeof(((struct hsm_action_item *)0)->hai_dfid));
4833         LASSERTF((int)offsetof(struct hsm_action_item, hai_extent) == 40, "found %lld\n",
4834                  (long long)(int)offsetof(struct hsm_action_item, hai_extent));
4835         LASSERTF((int)sizeof(((struct hsm_action_item *)0)->hai_extent) == 16, "found %lld\n",
4836                  (long long)(int)sizeof(((struct hsm_action_item *)0)->hai_extent));
4837         LASSERTF((int)offsetof(struct hsm_action_item, hai_cookie) == 56, "found %lld\n",
4838                  (long long)(int)offsetof(struct hsm_action_item, hai_cookie));
4839         LASSERTF((int)sizeof(((struct hsm_action_item *)0)->hai_cookie) == 8, "found %lld\n",
4840                  (long long)(int)sizeof(((struct hsm_action_item *)0)->hai_cookie));
4841         LASSERTF((int)offsetof(struct hsm_action_item, hai_gid) == 64, "found %lld\n",
4842                  (long long)(int)offsetof(struct hsm_action_item, hai_gid));
4843         LASSERTF((int)sizeof(((struct hsm_action_item *)0)->hai_gid) == 8, "found %lld\n",
4844                  (long long)(int)sizeof(((struct hsm_action_item *)0)->hai_gid));
4845         LASSERTF((int)offsetof(struct hsm_action_item, hai_data) == 72, "found %lld\n",
4846                  (long long)(int)offsetof(struct hsm_action_item, hai_data));
4847         LASSERTF((int)sizeof(((struct hsm_action_item *)0)->hai_data) == 0, "found %lld\n",
4848                  (long long)(int)sizeof(((struct hsm_action_item *)0)->hai_data));
4849
4850         /* Checks for struct hsm_action_list */
4851         LASSERTF((int)sizeof(struct hsm_action_list) == 32, "found %lld\n",
4852                  (long long)(int)sizeof(struct hsm_action_list));
4853         LASSERTF((int)offsetof(struct hsm_action_list, hal_version) == 0, "found %lld\n",
4854                  (long long)(int)offsetof(struct hsm_action_list, hal_version));
4855         LASSERTF((int)sizeof(((struct hsm_action_list *)0)->hal_version) == 4, "found %lld\n",
4856                  (long long)(int)sizeof(((struct hsm_action_list *)0)->hal_version));
4857         LASSERTF((int)offsetof(struct hsm_action_list, hal_count) == 4, "found %lld\n",
4858                  (long long)(int)offsetof(struct hsm_action_list, hal_count));
4859         LASSERTF((int)sizeof(((struct hsm_action_list *)0)->hal_count) == 4, "found %lld\n",
4860                  (long long)(int)sizeof(((struct hsm_action_list *)0)->hal_count));
4861         LASSERTF((int)offsetof(struct hsm_action_list, hal_compound_id) == 8, "found %lld\n",
4862                  (long long)(int)offsetof(struct hsm_action_list, hal_compound_id));
4863         LASSERTF((int)sizeof(((struct hsm_action_list *)0)->hal_compound_id) == 8, "found %lld\n",
4864                  (long long)(int)sizeof(((struct hsm_action_list *)0)->hal_compound_id));
4865         LASSERTF((int)offsetof(struct hsm_action_list, hal_flags) == 16, "found %lld\n",
4866                  (long long)(int)offsetof(struct hsm_action_list, hal_flags));
4867         LASSERTF((int)sizeof(((struct hsm_action_list *)0)->hal_flags) == 8, "found %lld\n",
4868                  (long long)(int)sizeof(((struct hsm_action_list *)0)->hal_flags));
4869         LASSERTF((int)offsetof(struct hsm_action_list, hal_archive_id) == 24, "found %lld\n",
4870                  (long long)(int)offsetof(struct hsm_action_list, hal_archive_id));
4871         LASSERTF((int)sizeof(((struct hsm_action_list *)0)->hal_archive_id) == 4, "found %lld\n",
4872                  (long long)(int)sizeof(((struct hsm_action_list *)0)->hal_archive_id));
4873         LASSERTF((int)offsetof(struct hsm_action_list, padding1) == 28, "found %lld\n",
4874                  (long long)(int)offsetof(struct hsm_action_list, padding1));
4875         LASSERTF((int)sizeof(((struct hsm_action_list *)0)->padding1) == 4, "found %lld\n",
4876                  (long long)(int)sizeof(((struct hsm_action_list *)0)->padding1));
4877         LASSERTF((int)offsetof(struct hsm_action_list, hal_fsname) == 32, "found %lld\n",
4878                  (long long)(int)offsetof(struct hsm_action_list, hal_fsname));
4879         LASSERTF((int)sizeof(((struct hsm_action_list *)0)->hal_fsname) == 0, "found %lld\n",
4880                  (long long)(int)sizeof(((struct hsm_action_list *)0)->hal_fsname));
4881
4882         /* Checks for struct hsm_progress */
4883         LASSERTF((int)sizeof(struct hsm_progress) == 48, "found %lld\n",
4884                  (long long)(int)sizeof(struct hsm_progress));
4885         LASSERTF((int)offsetof(struct hsm_progress, hp_fid) == 0, "found %lld\n",
4886                  (long long)(int)offsetof(struct hsm_progress, hp_fid));
4887         LASSERTF((int)sizeof(((struct hsm_progress *)0)->hp_fid) == 16, "found %lld\n",
4888                  (long long)(int)sizeof(((struct hsm_progress *)0)->hp_fid));
4889         LASSERTF((int)offsetof(struct hsm_progress, hp_cookie) == 16, "found %lld\n",
4890                  (long long)(int)offsetof(struct hsm_progress, hp_cookie));
4891         LASSERTF((int)sizeof(((struct hsm_progress *)0)->hp_cookie) == 8, "found %lld\n",
4892                  (long long)(int)sizeof(((struct hsm_progress *)0)->hp_cookie));
4893         LASSERTF((int)offsetof(struct hsm_progress, hp_extent) == 24, "found %lld\n",
4894                  (long long)(int)offsetof(struct hsm_progress, hp_extent));
4895         LASSERTF((int)sizeof(((struct hsm_progress *)0)->hp_extent) == 16, "found %lld\n",
4896                  (long long)(int)sizeof(((struct hsm_progress *)0)->hp_extent));
4897         LASSERTF((int)offsetof(struct hsm_progress, hp_flags) == 40, "found %lld\n",
4898                  (long long)(int)offsetof(struct hsm_progress, hp_flags));
4899         LASSERTF((int)sizeof(((struct hsm_progress *)0)->hp_flags) == 2, "found %lld\n",
4900                  (long long)(int)sizeof(((struct hsm_progress *)0)->hp_flags));
4901         LASSERTF((int)offsetof(struct hsm_progress, hp_errval) == 42, "found %lld\n",
4902                  (long long)(int)offsetof(struct hsm_progress, hp_errval));
4903         LASSERTF((int)sizeof(((struct hsm_progress *)0)->hp_errval) == 2, "found %lld\n",
4904                  (long long)(int)sizeof(((struct hsm_progress *)0)->hp_errval));
4905         LASSERTF((int)offsetof(struct hsm_progress, padding) == 44, "found %lld\n",
4906                  (long long)(int)offsetof(struct hsm_progress, padding));
4907         LASSERTF((int)sizeof(((struct hsm_progress *)0)->padding) == 4, "found %lld\n",
4908                  (long long)(int)sizeof(((struct hsm_progress *)0)->padding));
4909         LASSERTF(HP_FLAG_COMPLETED == 0x01, "found 0x%.8x\n",
4910                 HP_FLAG_COMPLETED);
4911         LASSERTF(HP_FLAG_RETRY == 0x02, "found 0x%.8x\n",
4912                 HP_FLAG_RETRY);
4913
4914         LASSERTF((int)offsetof(struct hsm_copy, hc_data_version) == 0, "found %lld\n",
4915                  (long long)(int)offsetof(struct hsm_copy, hc_data_version));
4916         LASSERTF((int)sizeof(((struct hsm_copy *)0)->hc_data_version) == 8, "found %lld\n",
4917                  (long long)(int)sizeof(((struct hsm_copy *)0)->hc_data_version));
4918         LASSERTF((int)offsetof(struct hsm_copy, hc_flags) == 8, "found %lld\n",
4919                  (long long)(int)offsetof(struct hsm_copy, hc_flags));
4920         LASSERTF((int)sizeof(((struct hsm_copy *)0)->hc_flags) == 2, "found %lld\n",
4921                  (long long)(int)sizeof(((struct hsm_copy *)0)->hc_flags));
4922         LASSERTF((int)offsetof(struct hsm_copy, hc_errval) == 10, "found %lld\n",
4923                  (long long)(int)offsetof(struct hsm_copy, hc_errval));
4924         LASSERTF((int)sizeof(((struct hsm_copy *)0)->hc_errval) == 2, "found %lld\n",
4925                  (long long)(int)sizeof(((struct hsm_copy *)0)->hc_errval));
4926         LASSERTF((int)offsetof(struct hsm_copy, padding) == 12, "found %lld\n",
4927                  (long long)(int)offsetof(struct hsm_copy, padding));
4928         LASSERTF((int)sizeof(((struct hsm_copy *)0)->padding) == 4, "found %lld\n",
4929                  (long long)(int)sizeof(((struct hsm_copy *)0)->padding));
4930         LASSERTF((int)offsetof(struct hsm_copy, hc_hai) == 16, "found %lld\n",
4931                  (long long)(int)offsetof(struct hsm_copy, hc_hai));
4932         LASSERTF((int)sizeof(((struct hsm_copy *)0)->hc_hai) == 72, "found %lld\n",
4933                  (long long)(int)sizeof(((struct hsm_copy *)0)->hc_hai));
4934
4935         /* Checks for struct hsm_progress_kernel */
4936         LASSERTF((int)sizeof(struct hsm_progress_kernel) == 64, "found %lld\n",
4937                  (long long)(int)sizeof(struct hsm_progress_kernel));
4938         LASSERTF((int)offsetof(struct hsm_progress_kernel, hpk_fid) == 0, "found %lld\n",
4939                  (long long)(int)offsetof(struct hsm_progress_kernel, hpk_fid));
4940         LASSERTF((int)sizeof(((struct hsm_progress_kernel *)0)->hpk_fid) == 16, "found %lld\n",
4941                  (long long)(int)sizeof(((struct hsm_progress_kernel *)0)->hpk_fid));
4942         LASSERTF((int)offsetof(struct hsm_progress_kernel, hpk_cookie) == 16, "found %lld\n",
4943                  (long long)(int)offsetof(struct hsm_progress_kernel, hpk_cookie));
4944         LASSERTF((int)sizeof(((struct hsm_progress_kernel *)0)->hpk_cookie) == 8, "found %lld\n",
4945                  (long long)(int)sizeof(((struct hsm_progress_kernel *)0)->hpk_cookie));
4946         LASSERTF((int)offsetof(struct hsm_progress_kernel, hpk_extent) == 24, "found %lld\n",
4947                  (long long)(int)offsetof(struct hsm_progress_kernel, hpk_extent));
4948         LASSERTF((int)sizeof(((struct hsm_progress_kernel *)0)->hpk_extent) == 16, "found %lld\n",
4949                  (long long)(int)sizeof(((struct hsm_progress_kernel *)0)->hpk_extent));
4950         LASSERTF((int)offsetof(struct hsm_progress_kernel, hpk_flags) == 40, "found %lld\n",
4951                  (long long)(int)offsetof(struct hsm_progress_kernel, hpk_flags));
4952         LASSERTF((int)sizeof(((struct hsm_progress_kernel *)0)->hpk_flags) == 2, "found %lld\n",
4953                  (long long)(int)sizeof(((struct hsm_progress_kernel *)0)->hpk_flags));
4954         LASSERTF((int)offsetof(struct hsm_progress_kernel, hpk_errval) == 42, "found %lld\n",
4955                  (long long)(int)offsetof(struct hsm_progress_kernel, hpk_errval));
4956         LASSERTF((int)sizeof(((struct hsm_progress_kernel *)0)->hpk_errval) == 2, "found %lld\n",
4957                  (long long)(int)sizeof(((struct hsm_progress_kernel *)0)->hpk_errval));
4958         LASSERTF((int)offsetof(struct hsm_progress_kernel, hpk_padding1) == 44, "found %lld\n",
4959                  (long long)(int)offsetof(struct hsm_progress_kernel, hpk_padding1));
4960         LASSERTF((int)sizeof(((struct hsm_progress_kernel *)0)->hpk_padding1) == 4, "found %lld\n",
4961                  (long long)(int)sizeof(((struct hsm_progress_kernel *)0)->hpk_padding1));
4962         LASSERTF((int)offsetof(struct hsm_progress_kernel, hpk_data_version) == 48, "found %lld\n",
4963                  (long long)(int)offsetof(struct hsm_progress_kernel, hpk_data_version));
4964         LASSERTF((int)sizeof(((struct hsm_progress_kernel *)0)->hpk_data_version) == 8, "found %lld\n",
4965                  (long long)(int)sizeof(((struct hsm_progress_kernel *)0)->hpk_data_version));
4966         LASSERTF((int)offsetof(struct hsm_progress_kernel, hpk_padding2) == 56, "found %lld\n",
4967                  (long long)(int)offsetof(struct hsm_progress_kernel, hpk_padding2));
4968         LASSERTF((int)sizeof(((struct hsm_progress_kernel *)0)->hpk_padding2) == 8, "found %lld\n",
4969                  (long long)(int)sizeof(((struct hsm_progress_kernel *)0)->hpk_padding2));
4970
4971         /* Checks for struct hsm_user_item */
4972         LASSERTF((int)sizeof(struct hsm_user_item) == 32, "found %lld\n",
4973                  (long long)(int)sizeof(struct hsm_user_item));
4974         LASSERTF((int)offsetof(struct hsm_user_item, hui_fid) == 0, "found %lld\n",
4975                  (long long)(int)offsetof(struct hsm_user_item, hui_fid));
4976         LASSERTF((int)sizeof(((struct hsm_user_item *)0)->hui_fid) == 16, "found %lld\n",
4977                  (long long)(int)sizeof(((struct hsm_user_item *)0)->hui_fid));
4978         LASSERTF((int)offsetof(struct hsm_user_item, hui_extent) == 16, "found %lld\n",
4979                  (long long)(int)offsetof(struct hsm_user_item, hui_extent));
4980         LASSERTF((int)sizeof(((struct hsm_user_item *)0)->hui_extent) == 16, "found %lld\n",
4981                  (long long)(int)sizeof(((struct hsm_user_item *)0)->hui_extent));
4982
4983         /* Checks for struct hsm_user_state */
4984         LASSERTF((int)sizeof(struct hsm_user_state) == 32, "found %lld\n",
4985                  (long long)(int)sizeof(struct hsm_user_state));
4986         LASSERTF((int)offsetof(struct hsm_user_state, hus_states) == 0, "found %lld\n",
4987                  (long long)(int)offsetof(struct hsm_user_state, hus_states));
4988         LASSERTF((int)sizeof(((struct hsm_user_state *)0)->hus_states) == 4, "found %lld\n",
4989                  (long long)(int)sizeof(((struct hsm_user_state *)0)->hus_states));
4990         LASSERTF((int)offsetof(struct hsm_user_state, hus_archive_id) == 4, "found %lld\n",
4991                  (long long)(int)offsetof(struct hsm_user_state, hus_archive_id));
4992         LASSERTF((int)sizeof(((struct hsm_user_state *)0)->hus_archive_id) == 4, "found %lld\n",
4993                  (long long)(int)sizeof(((struct hsm_user_state *)0)->hus_archive_id));
4994         LASSERTF((int)offsetof(struct hsm_user_state, hus_in_progress_state) == 8, "found %lld\n",
4995                  (long long)(int)offsetof(struct hsm_user_state, hus_in_progress_state));
4996         LASSERTF((int)sizeof(((struct hsm_user_state *)0)->hus_in_progress_state) == 4, "found %lld\n",
4997                  (long long)(int)sizeof(((struct hsm_user_state *)0)->hus_in_progress_state));
4998         LASSERTF((int)offsetof(struct hsm_user_state, hus_in_progress_action) == 12, "found %lld\n",
4999                  (long long)(int)offsetof(struct hsm_user_state, hus_in_progress_action));
5000         LASSERTF((int)sizeof(((struct hsm_user_state *)0)->hus_in_progress_action) == 4, "found %lld\n",
5001                  (long long)(int)sizeof(((struct hsm_user_state *)0)->hus_in_progress_action));
5002         LASSERTF((int)offsetof(struct hsm_user_state, hus_in_progress_location) == 16, "found %lld\n",
5003                  (long long)(int)offsetof(struct hsm_user_state, hus_in_progress_location));
5004         LASSERTF((int)sizeof(((struct hsm_user_state *)0)->hus_in_progress_location) == 16, "found %lld\n",
5005                  (long long)(int)sizeof(((struct hsm_user_state *)0)->hus_in_progress_location));
5006
5007         /* Checks for struct hsm_state_set */
5008         LASSERTF((int)sizeof(struct hsm_state_set) == 24, "found %lld\n",
5009                  (long long)(int)sizeof(struct hsm_state_set));
5010         LASSERTF((int)offsetof(struct hsm_state_set, hss_valid) == 0, "found %lld\n",
5011                  (long long)(int)offsetof(struct hsm_state_set, hss_valid));
5012         LASSERTF((int)sizeof(((struct hsm_state_set *)0)->hss_valid) == 4, "found %lld\n",
5013                  (long long)(int)sizeof(((struct hsm_state_set *)0)->hss_valid));
5014         LASSERTF((int)offsetof(struct hsm_state_set, hss_archive_id) == 4, "found %lld\n",
5015                  (long long)(int)offsetof(struct hsm_state_set, hss_archive_id));
5016         LASSERTF((int)sizeof(((struct hsm_state_set *)0)->hss_archive_id) == 4, "found %lld\n",
5017                  (long long)(int)sizeof(((struct hsm_state_set *)0)->hss_archive_id));
5018         LASSERTF((int)offsetof(struct hsm_state_set, hss_setmask) == 8, "found %lld\n",
5019                  (long long)(int)offsetof(struct hsm_state_set, hss_setmask));
5020         LASSERTF((int)sizeof(((struct hsm_state_set *)0)->hss_setmask) == 8, "found %lld\n",
5021                  (long long)(int)sizeof(((struct hsm_state_set *)0)->hss_setmask));
5022         LASSERTF((int)offsetof(struct hsm_state_set, hss_clearmask) == 16, "found %lld\n",
5023                  (long long)(int)offsetof(struct hsm_state_set, hss_clearmask));
5024         LASSERTF((int)sizeof(((struct hsm_state_set *)0)->hss_clearmask) == 8, "found %lld\n",
5025                  (long long)(int)sizeof(((struct hsm_state_set *)0)->hss_clearmask));
5026         BUILD_BUG_ON(HSS_SETMASK != 1);
5027         BUILD_BUG_ON(HSS_CLEARMASK != 2);
5028         BUILD_BUG_ON(HSS_ARCHIVE_ID != 4);
5029
5030         /* Checks for struct hsm_current_action */
5031         LASSERTF((int)sizeof(struct hsm_current_action) == 24, "found %lld\n",
5032                  (long long)(int)sizeof(struct hsm_current_action));
5033         LASSERTF((int)offsetof(struct hsm_current_action, hca_state) == 0, "found %lld\n",
5034                  (long long)(int)offsetof(struct hsm_current_action, hca_state));
5035         LASSERTF((int)sizeof(((struct hsm_current_action *)0)->hca_state) == 4, "found %lld\n",
5036                  (long long)(int)sizeof(((struct hsm_current_action *)0)->hca_state));
5037         LASSERTF((int)offsetof(struct hsm_current_action, hca_action) == 4, "found %lld\n",
5038                  (long long)(int)offsetof(struct hsm_current_action, hca_action));
5039         LASSERTF((int)sizeof(((struct hsm_current_action *)0)->hca_action) == 4, "found %lld\n",
5040                  (long long)(int)sizeof(((struct hsm_current_action *)0)->hca_action));
5041         LASSERTF((int)offsetof(struct hsm_current_action, hca_location) == 8, "found %lld\n",
5042                  (long long)(int)offsetof(struct hsm_current_action, hca_location));
5043         LASSERTF((int)sizeof(((struct hsm_current_action *)0)->hca_location) == 16, "found %lld\n",
5044                  (long long)(int)sizeof(((struct hsm_current_action *)0)->hca_location));
5045         BUILD_BUG_ON(HPS_NONE != 0);
5046         BUILD_BUG_ON(HPS_WAITING != 1);
5047         BUILD_BUG_ON(HPS_RUNNING != 2);
5048         BUILD_BUG_ON(HPS_DONE != 3);
5049         BUILD_BUG_ON(HUA_NONE != 1);
5050         BUILD_BUG_ON(HUA_ARCHIVE != 10);
5051         BUILD_BUG_ON(HUA_RESTORE != 11);
5052         BUILD_BUG_ON(HUA_RELEASE != 12);
5053         BUILD_BUG_ON(HUA_REMOVE != 13);
5054         BUILD_BUG_ON(HUA_CANCEL != 14);
5055
5056         /* Checks for struct hsm_request */
5057         LASSERTF((int)sizeof(struct hsm_request) == 24, "found %lld\n",
5058                  (long long)(int)sizeof(struct hsm_request));
5059         LASSERTF((int)offsetof(struct hsm_request, hr_action) == 0, "found %lld\n",
5060                  (long long)(int)offsetof(struct hsm_request, hr_action));
5061         LASSERTF((int)sizeof(((struct hsm_request *)0)->hr_action) == 4, "found %lld\n",
5062                  (long long)(int)sizeof(((struct hsm_request *)0)->hr_action));
5063         LASSERTF((int)offsetof(struct hsm_request, hr_archive_id) == 4, "found %lld\n",
5064                  (long long)(int)offsetof(struct hsm_request, hr_archive_id));
5065         LASSERTF((int)sizeof(((struct hsm_request *)0)->hr_archive_id) == 4, "found %lld\n",
5066                  (long long)(int)sizeof(((struct hsm_request *)0)->hr_archive_id));
5067         LASSERTF((int)offsetof(struct hsm_request, hr_flags) == 8, "found %lld\n",
5068                  (long long)(int)offsetof(struct hsm_request, hr_flags));
5069         LASSERTF((int)sizeof(((struct hsm_request *)0)->hr_flags) == 8, "found %lld\n",
5070                  (long long)(int)sizeof(((struct hsm_request *)0)->hr_flags));
5071         LASSERTF((int)offsetof(struct hsm_request, hr_itemcount) == 16, "found %lld\n",
5072                  (long long)(int)offsetof(struct hsm_request, hr_itemcount));
5073         LASSERTF((int)sizeof(((struct hsm_request *)0)->hr_itemcount) == 4, "found %lld\n",
5074                  (long long)(int)sizeof(((struct hsm_request *)0)->hr_itemcount));
5075         LASSERTF((int)offsetof(struct hsm_request, hr_data_len) == 20, "found %lld\n",
5076                  (long long)(int)offsetof(struct hsm_request, hr_data_len));
5077         LASSERTF((int)sizeof(((struct hsm_request *)0)->hr_data_len) == 4, "found %lld\n",
5078                  (long long)(int)sizeof(((struct hsm_request *)0)->hr_data_len));
5079         LASSERTF(HSM_FORCE_ACTION == 0x00000001UL, "found 0x%.8xUL\n",
5080                 (unsigned)HSM_FORCE_ACTION);
5081         LASSERTF(HSM_GHOST_COPY == 0x00000002UL, "found 0x%.8xUL\n",
5082                 (unsigned)HSM_GHOST_COPY);
5083
5084         /* Checks for struct hsm_user_request */
5085         LASSERTF((int)sizeof(struct hsm_user_request) == 24, "found %lld\n",
5086                  (long long)(int)sizeof(struct hsm_user_request));
5087         LASSERTF((int)offsetof(struct hsm_user_request, hur_request) == 0, "found %lld\n",
5088                  (long long)(int)offsetof(struct hsm_user_request, hur_request));
5089         LASSERTF((int)sizeof(((struct hsm_user_request *)0)->hur_request) == 24, "found %lld\n",
5090                  (long long)(int)sizeof(((struct hsm_user_request *)0)->hur_request));
5091         LASSERTF((int)offsetof(struct hsm_user_request, hur_user_item) == 24, "found %lld\n",
5092                  (long long)(int)offsetof(struct hsm_user_request, hur_user_item));
5093         LASSERTF((int)sizeof(((struct hsm_user_request *)0)->hur_user_item) == 0, "found %lld\n",
5094                  (long long)(int)sizeof(((struct hsm_user_request *)0)->hur_user_item));
5095
5096         /* Checks for struct hsm_user_import */
5097         LASSERTF((int)sizeof(struct hsm_user_import) == 48, "found %lld\n",
5098                  (long long)(int)sizeof(struct hsm_user_import));
5099         LASSERTF((int)offsetof(struct hsm_user_import, hui_size) == 0, "found %lld\n",
5100                  (long long)(int)offsetof(struct hsm_user_import, hui_size));
5101         LASSERTF((int)sizeof(((struct hsm_user_import *)0)->hui_size) == 8, "found %lld\n",
5102                  (long long)(int)sizeof(((struct hsm_user_import *)0)->hui_size));
5103         LASSERTF((int)offsetof(struct hsm_user_import, hui_uid) == 32, "found %lld\n",
5104                  (long long)(int)offsetof(struct hsm_user_import, hui_uid));
5105         LASSERTF((int)sizeof(((struct hsm_user_import *)0)->hui_uid) == 4, "found %lld\n",
5106                  (long long)(int)sizeof(((struct hsm_user_import *)0)->hui_uid));
5107         LASSERTF((int)offsetof(struct hsm_user_import, hui_gid) == 36, "found %lld\n",
5108                  (long long)(int)offsetof(struct hsm_user_import, hui_gid));
5109         LASSERTF((int)sizeof(((struct hsm_user_import *)0)->hui_gid) == 4, "found %lld\n",
5110                  (long long)(int)sizeof(((struct hsm_user_import *)0)->hui_gid));
5111         LASSERTF((int)offsetof(struct hsm_user_import, hui_mode) == 40, "found %lld\n",
5112                  (long long)(int)offsetof(struct hsm_user_import, hui_mode));
5113         LASSERTF((int)sizeof(((struct hsm_user_import *)0)->hui_mode) == 4, "found %lld\n",
5114                  (long long)(int)sizeof(((struct hsm_user_import *)0)->hui_mode));
5115         LASSERTF((int)offsetof(struct hsm_user_import, hui_atime) == 8, "found %lld\n",
5116                  (long long)(int)offsetof(struct hsm_user_import, hui_atime));
5117         LASSERTF((int)sizeof(((struct hsm_user_import *)0)->hui_atime) == 8, "found %lld\n",
5118                  (long long)(int)sizeof(((struct hsm_user_import *)0)->hui_atime));
5119         LASSERTF((int)offsetof(struct hsm_user_import, hui_atime_ns) == 24, "found %lld\n",
5120                  (long long)(int)offsetof(struct hsm_user_import, hui_atime_ns));
5121         LASSERTF((int)sizeof(((struct hsm_user_import *)0)->hui_atime_ns) == 4, "found %lld\n",
5122                  (long long)(int)sizeof(((struct hsm_user_import *)0)->hui_atime_ns));
5123         LASSERTF((int)offsetof(struct hsm_user_import, hui_mtime) == 16, "found %lld\n",
5124                  (long long)(int)offsetof(struct hsm_user_import, hui_mtime));
5125         LASSERTF((int)sizeof(((struct hsm_user_import *)0)->hui_mtime) == 8, "found %lld\n",
5126                  (long long)(int)sizeof(((struct hsm_user_import *)0)->hui_mtime));
5127         LASSERTF((int)offsetof(struct hsm_user_import, hui_mtime_ns) == 28, "found %lld\n",
5128                  (long long)(int)offsetof(struct hsm_user_import, hui_mtime_ns));
5129         LASSERTF((int)sizeof(((struct hsm_user_import *)0)->hui_mtime_ns) == 4, "found %lld\n",
5130                  (long long)(int)sizeof(((struct hsm_user_import *)0)->hui_mtime_ns));
5131         LASSERTF((int)offsetof(struct hsm_user_import, hui_archive_id) == 44, "found %lld\n",
5132                  (long long)(int)offsetof(struct hsm_user_import, hui_archive_id));
5133         LASSERTF((int)sizeof(((struct hsm_user_import *)0)->hui_archive_id) == 4, "found %lld\n",
5134                  (long long)(int)sizeof(((struct hsm_user_import *)0)->hui_archive_id));
5135
5136         /* Checks for struct object_update_param */
5137         LASSERTF((int)sizeof(struct object_update_param) == 8, "found %lld\n",
5138                  (long long)(int)sizeof(struct object_update_param));
5139         LASSERTF((int)offsetof(struct object_update_param, oup_len) == 0, "found %lld\n",
5140                  (long long)(int)offsetof(struct object_update_param, oup_len));
5141         LASSERTF((int)sizeof(((struct object_update_param *)0)->oup_len) == 2, "found %lld\n",
5142                  (long long)(int)sizeof(((struct object_update_param *)0)->oup_len));
5143         LASSERTF((int)offsetof(struct object_update_param, oup_padding) == 2, "found %lld\n",
5144                  (long long)(int)offsetof(struct object_update_param, oup_padding));
5145         LASSERTF((int)sizeof(((struct object_update_param *)0)->oup_padding) == 2, "found %lld\n",
5146                  (long long)(int)sizeof(((struct object_update_param *)0)->oup_padding));
5147         LASSERTF((int)offsetof(struct object_update_param, oup_padding2) == 4, "found %lld\n",
5148                  (long long)(int)offsetof(struct object_update_param, oup_padding2));
5149         LASSERTF((int)sizeof(((struct object_update_param *)0)->oup_padding2) == 4, "found %lld\n",
5150                  (long long)(int)sizeof(((struct object_update_param *)0)->oup_padding2));
5151         LASSERTF((int)offsetof(struct object_update_param, oup_buf) == 8, "found %lld\n",
5152                  (long long)(int)offsetof(struct object_update_param, oup_buf));
5153         LASSERTF((int)sizeof(((struct object_update_param *)0)->oup_buf) == 0, "found %lld\n",
5154                  (long long)(int)sizeof(((struct object_update_param *)0)->oup_buf));
5155
5156         /* Checks for struct object_update */
5157         LASSERTF((int)sizeof(struct object_update) == 40, "found %lld\n",
5158                  (long long)(int)sizeof(struct object_update));
5159         LASSERTF((int)offsetof(struct object_update, ou_type) == 0, "found %lld\n",
5160                  (long long)(int)offsetof(struct object_update, ou_type));
5161         LASSERTF((int)sizeof(((struct object_update *)0)->ou_type) == 2, "found %lld\n",
5162                  (long long)(int)sizeof(((struct object_update *)0)->ou_type));
5163         LASSERTF((int)offsetof(struct object_update, ou_params_count) == 2, "found %lld\n",
5164                  (long long)(int)offsetof(struct object_update, ou_params_count));
5165         LASSERTF((int)sizeof(((struct object_update *)0)->ou_params_count) == 2, "found %lld\n",
5166                  (long long)(int)sizeof(((struct object_update *)0)->ou_params_count));
5167         LASSERTF((int)offsetof(struct object_update, ou_result_size) == 4, "found %lld\n",
5168                  (long long)(int)offsetof(struct object_update, ou_result_size));
5169         LASSERTF((int)sizeof(((struct object_update *)0)->ou_result_size) == 4, "found %lld\n",
5170                  (long long)(int)sizeof(((struct object_update *)0)->ou_result_size));
5171         LASSERTF((int)offsetof(struct object_update, ou_flags) == 8, "found %lld\n",
5172                  (long long)(int)offsetof(struct object_update, ou_flags));
5173         LASSERTF((int)sizeof(((struct object_update *)0)->ou_flags) == 4, "found %lld\n",
5174                  (long long)(int)sizeof(((struct object_update *)0)->ou_flags));
5175         LASSERTF((int)offsetof(struct object_update, ou_padding1) == 12, "found %lld\n",
5176                  (long long)(int)offsetof(struct object_update, ou_padding1));
5177         LASSERTF((int)sizeof(((struct object_update *)0)->ou_padding1) == 4, "found %lld\n",
5178                  (long long)(int)sizeof(((struct object_update *)0)->ou_padding1));
5179         LASSERTF((int)offsetof(struct object_update, ou_batchid) == 16, "found %lld\n",
5180                  (long long)(int)offsetof(struct object_update, ou_batchid));
5181         LASSERTF((int)sizeof(((struct object_update *)0)->ou_batchid) == 8, "found %lld\n",
5182                  (long long)(int)sizeof(((struct object_update *)0)->ou_batchid));
5183         LASSERTF((int)offsetof(struct object_update, ou_fid) == 24, "found %lld\n",
5184                  (long long)(int)offsetof(struct object_update, ou_fid));
5185         LASSERTF((int)sizeof(((struct object_update *)0)->ou_fid) == 16, "found %lld\n",
5186                  (long long)(int)sizeof(((struct object_update *)0)->ou_fid));
5187         LASSERTF((int)offsetof(struct object_update, ou_params) == 40, "found %lld\n",
5188                  (long long)(int)offsetof(struct object_update, ou_params));
5189         LASSERTF((int)sizeof(((struct object_update *)0)->ou_params) == 0, "found %lld\n",
5190                  (long long)(int)sizeof(((struct object_update *)0)->ou_params));
5191         BUILD_BUG_ON(UPDATE_FL_OST != 0x00000001);
5192         BUILD_BUG_ON(UPDATE_FL_SYNC != 0x00000002);
5193         BUILD_BUG_ON(UPDATE_FL_COMMITTED != 0x00000004);
5194         BUILD_BUG_ON(UPDATE_FL_NOLOG != 0x00000008);
5195
5196         /* Checks for struct object_update_request */
5197         LASSERTF((int)sizeof(struct object_update_request) == 8, "found %lld\n",
5198                  (long long)(int)sizeof(struct object_update_request));
5199         LASSERTF((int)offsetof(struct object_update_request, ourq_magic) == 0, "found %lld\n",
5200                  (long long)(int)offsetof(struct object_update_request, ourq_magic));
5201         LASSERTF((int)sizeof(((struct object_update_request *)0)->ourq_magic) == 4, "found %lld\n",
5202                  (long long)(int)sizeof(((struct object_update_request *)0)->ourq_magic));
5203         LASSERTF((int)offsetof(struct object_update_request, ourq_count) == 4, "found %lld\n",
5204                  (long long)(int)offsetof(struct object_update_request, ourq_count));
5205         LASSERTF((int)sizeof(((struct object_update_request *)0)->ourq_count) == 2, "found %lld\n",
5206                  (long long)(int)sizeof(((struct object_update_request *)0)->ourq_count));
5207         LASSERTF((int)offsetof(struct object_update_request, ourq_padding) == 6, "found %lld\n",
5208                  (long long)(int)offsetof(struct object_update_request, ourq_padding));
5209         LASSERTF((int)sizeof(((struct object_update_request *)0)->ourq_padding) == 2, "found %lld\n",
5210                  (long long)(int)sizeof(((struct object_update_request *)0)->ourq_padding));
5211         LASSERTF((int)offsetof(struct object_update_request, ourq_updates) == 8, "found %lld\n",
5212                  (long long)(int)offsetof(struct object_update_request, ourq_updates));
5213         LASSERTF((int)sizeof(((struct object_update_request *)0)->ourq_updates) == 0, "found %lld\n",
5214                  (long long)(int)sizeof(((struct object_update_request *)0)->ourq_updates));
5215         BUILD_BUG_ON(UPDATE_REQUEST_MAGIC != 0xBDDE0002);
5216
5217         /* Checks for struct object_update_result */
5218         LASSERTF((int)sizeof(struct object_update_result) == 8, "found %lld\n",
5219                  (long long)(int)sizeof(struct object_update_result));
5220         LASSERTF((int)offsetof(struct object_update_result, our_rc) == 0, "found %lld\n",
5221                  (long long)(int)offsetof(struct object_update_result, our_rc));
5222         LASSERTF((int)sizeof(((struct object_update_result *)0)->our_rc) == 4, "found %lld\n",
5223                  (long long)(int)sizeof(((struct object_update_result *)0)->our_rc));
5224         LASSERTF((int)offsetof(struct object_update_result, our_datalen) == 4, "found %lld\n",
5225                  (long long)(int)offsetof(struct object_update_result, our_datalen));
5226         LASSERTF((int)sizeof(((struct object_update_result *)0)->our_datalen) == 2, "found %lld\n",
5227                  (long long)(int)sizeof(((struct object_update_result *)0)->our_datalen));
5228         LASSERTF((int)offsetof(struct object_update_result, our_padding) == 6, "found %lld\n",
5229                  (long long)(int)offsetof(struct object_update_result, our_padding));
5230         LASSERTF((int)sizeof(((struct object_update_result *)0)->our_padding) == 2, "found %lld\n",
5231                  (long long)(int)sizeof(((struct object_update_result *)0)->our_padding));
5232         LASSERTF((int)offsetof(struct object_update_result, our_data) == 8, "found %lld\n",
5233                  (long long)(int)offsetof(struct object_update_result, our_data));
5234         LASSERTF((int)sizeof(((struct object_update_result *)0)->our_data) == 0, "found %lld\n",
5235                  (long long)(int)sizeof(((struct object_update_result *)0)->our_data));
5236
5237         /* Checks for struct object_update_reply */
5238         LASSERTF((int)sizeof(struct object_update_reply) == 8, "found %lld\n",
5239                  (long long)(int)sizeof(struct object_update_reply));
5240         LASSERTF((int)offsetof(struct object_update_reply, ourp_magic) == 0, "found %lld\n",
5241                  (long long)(int)offsetof(struct object_update_reply, ourp_magic));
5242         LASSERTF((int)sizeof(((struct object_update_reply *)0)->ourp_magic) == 4, "found %lld\n",
5243                  (long long)(int)sizeof(((struct object_update_reply *)0)->ourp_magic));
5244         LASSERTF((int)offsetof(struct object_update_reply, ourp_count) == 4, "found %lld\n",
5245                  (long long)(int)offsetof(struct object_update_reply, ourp_count));
5246         LASSERTF((int)sizeof(((struct object_update_reply *)0)->ourp_count) == 2, "found %lld\n",
5247                  (long long)(int)sizeof(((struct object_update_reply *)0)->ourp_count));
5248         LASSERTF((int)offsetof(struct object_update_reply, ourp_padding) == 6, "found %lld\n",
5249                  (long long)(int)offsetof(struct object_update_reply, ourp_padding));
5250         LASSERTF((int)sizeof(((struct object_update_reply *)0)->ourp_padding) == 2, "found %lld\n",
5251                  (long long)(int)sizeof(((struct object_update_reply *)0)->ourp_padding));
5252         LASSERTF((int)offsetof(struct object_update_reply, ourp_lens) == 8, "found %lld\n",
5253                  (long long)(int)offsetof(struct object_update_reply, ourp_lens));
5254         LASSERTF((int)sizeof(((struct object_update_reply *)0)->ourp_lens) == 0, "found %lld\n",
5255                  (long long)(int)sizeof(((struct object_update_reply *)0)->ourp_lens));
5256         BUILD_BUG_ON(UPDATE_REPLY_MAGIC != 0x00BD0002);
5257
5258         /* Checks for struct out_update_header */
5259         LASSERTF((int)sizeof(struct out_update_header) == 16, "found %lld\n",
5260                  (long long)(int)sizeof(struct out_update_header));
5261         LASSERTF((int)offsetof(struct out_update_header, ouh_magic) == 0, "found %lld\n",
5262                  (long long)(int)offsetof(struct out_update_header, ouh_magic));
5263         LASSERTF((int)sizeof(((struct out_update_header *)0)->ouh_magic) == 4, "found %lld\n",
5264                  (long long)(int)sizeof(((struct out_update_header *)0)->ouh_magic));
5265         LASSERTF((int)offsetof(struct out_update_header, ouh_count) == 4, "found %lld\n",
5266                  (long long)(int)offsetof(struct out_update_header, ouh_count));
5267         LASSERTF((int)sizeof(((struct out_update_header *)0)->ouh_count) == 4, "found %lld\n",
5268                  (long long)(int)sizeof(((struct out_update_header *)0)->ouh_count));
5269         LASSERTF((int)offsetof(struct out_update_header, ouh_inline_length) == 8, "found %lld\n",
5270                  (long long)(int)offsetof(struct out_update_header, ouh_inline_length));
5271         LASSERTF((int)sizeof(((struct out_update_header *)0)->ouh_inline_length) == 4, "found %lld\n",
5272                  (long long)(int)sizeof(((struct out_update_header *)0)->ouh_inline_length));
5273         LASSERTF((int)offsetof(struct out_update_header, ouh_reply_size) == 12, "found %lld\n",
5274                  (long long)(int)offsetof(struct out_update_header, ouh_reply_size));
5275         LASSERTF((int)sizeof(((struct out_update_header *)0)->ouh_reply_size) == 4, "found %lld\n",
5276                  (long long)(int)sizeof(((struct out_update_header *)0)->ouh_reply_size));
5277         LASSERTF((int)offsetof(struct out_update_header, ouh_inline_data) == 16, "found %lld\n",
5278                  (long long)(int)offsetof(struct out_update_header, ouh_inline_data));
5279         LASSERTF((int)sizeof(((struct out_update_header *)0)->ouh_inline_data) == 0, "found %lld\n",
5280                  (long long)(int)sizeof(((struct out_update_header *)0)->ouh_inline_data));
5281         BUILD_BUG_ON(OUT_UPDATE_HEADER_MAGIC != 0xBDDF0001);
5282         BUILD_BUG_ON(OUT_UPDATE_MAX_INLINE_SIZE != 4096);
5283
5284         /* Checks for struct out_update_buffer */
5285         LASSERTF((int)sizeof(struct out_update_buffer) == 8, "found %lld\n",
5286                  (long long)(int)sizeof(struct out_update_buffer));
5287         LASSERTF((int)offsetof(struct out_update_buffer, oub_size) == 0, "found %lld\n",
5288                  (long long)(int)offsetof(struct out_update_buffer, oub_size));
5289         LASSERTF((int)sizeof(((struct out_update_buffer *)0)->oub_size) == 4, "found %lld\n",
5290                  (long long)(int)sizeof(((struct out_update_buffer *)0)->oub_size));
5291         LASSERTF((int)offsetof(struct out_update_buffer, oub_padding) == 4, "found %lld\n",
5292                  (long long)(int)offsetof(struct out_update_buffer, oub_padding));
5293         LASSERTF((int)sizeof(((struct out_update_buffer *)0)->oub_padding) == 4, "found %lld\n",
5294                  (long long)(int)sizeof(((struct out_update_buffer *)0)->oub_padding));
5295
5296         /* Checks for struct nodemap_cluster_rec */
5297         LASSERTF((int)sizeof(struct nodemap_cluster_rec) == 32, "found %lld\n",
5298                  (long long)(int)sizeof(struct nodemap_cluster_rec));
5299         BUILD_BUG_ON(LUSTRE_NODEMAP_NAME_LENGTH != 16);
5300         LASSERTF((int)offsetof(struct nodemap_cluster_rec, ncr_name[16 + 1]) == 17, "found %lld\n",
5301                  (long long)(int)offsetof(struct nodemap_cluster_rec, ncr_name[16 + 1]));
5302         LASSERTF((int)sizeof(((struct nodemap_cluster_rec *)0)->ncr_name[16 + 1]) == 1, "found %lld\n",
5303                  (long long)(int)sizeof(((struct nodemap_cluster_rec *)0)->ncr_name[16 + 1]));
5304         LASSERTF((int)offsetof(struct nodemap_cluster_rec, ncr_flags) == 17, "found %lld\n",
5305                  (long long)(int)offsetof(struct nodemap_cluster_rec, ncr_flags));
5306         LASSERTF((int)sizeof(((struct nodemap_cluster_rec *)0)->ncr_flags) == 1, "found %lld\n",
5307                  (long long)(int)sizeof(((struct nodemap_cluster_rec *)0)->ncr_flags));
5308         LASSERTF((int)offsetof(struct nodemap_cluster_rec, ncr_padding1) == 18, "found %lld\n",
5309                  (long long)(int)offsetof(struct nodemap_cluster_rec, ncr_padding1));
5310         LASSERTF((int)sizeof(((struct nodemap_cluster_rec *)0)->ncr_padding1) == 2, "found %lld\n",
5311                  (long long)(int)sizeof(((struct nodemap_cluster_rec *)0)->ncr_padding1));
5312         LASSERTF((int)offsetof(struct nodemap_cluster_rec, ncr_padding2) == 20, "found %lld\n",
5313                  (long long)(int)offsetof(struct nodemap_cluster_rec, ncr_padding2));
5314         LASSERTF((int)sizeof(((struct nodemap_cluster_rec *)0)->ncr_padding2) == 4, "found %lld\n",
5315                  (long long)(int)sizeof(((struct nodemap_cluster_rec *)0)->ncr_padding2));
5316         LASSERTF((int)offsetof(struct nodemap_cluster_rec, ncr_squash_uid) == 24, "found %lld\n",
5317                  (long long)(int)offsetof(struct nodemap_cluster_rec, ncr_squash_uid));
5318         LASSERTF((int)sizeof(((struct nodemap_cluster_rec *)0)->ncr_squash_uid) == 4, "found %lld\n",
5319                  (long long)(int)sizeof(((struct nodemap_cluster_rec *)0)->ncr_squash_uid));
5320         LASSERTF((int)offsetof(struct nodemap_cluster_rec, ncr_squash_gid) == 28, "found %lld\n",
5321                  (long long)(int)offsetof(struct nodemap_cluster_rec, ncr_squash_gid));
5322         LASSERTF((int)sizeof(((struct nodemap_cluster_rec *)0)->ncr_squash_gid) == 4, "found %lld\n",
5323                  (long long)(int)sizeof(((struct nodemap_cluster_rec *)0)->ncr_squash_gid));
5324
5325         /* Checks for struct nodemap_range_rec */
5326         LASSERTF((int)sizeof(struct nodemap_range_rec) == 32, "found %lld\n",
5327                  (long long)(int)sizeof(struct nodemap_range_rec));
5328         LASSERTF((int)offsetof(struct nodemap_range_rec, nrr_start_nid) == 0, "found %lld\n",
5329                  (long long)(int)offsetof(struct nodemap_range_rec, nrr_start_nid));
5330         LASSERTF((int)sizeof(((struct nodemap_range_rec *)0)->nrr_start_nid) == 8, "found %lld\n",
5331                  (long long)(int)sizeof(((struct nodemap_range_rec *)0)->nrr_start_nid));
5332         LASSERTF((int)offsetof(struct nodemap_range_rec, nrr_end_nid) == 8, "found %lld\n",
5333                  (long long)(int)offsetof(struct nodemap_range_rec, nrr_end_nid));
5334         LASSERTF((int)sizeof(((struct nodemap_range_rec *)0)->nrr_end_nid) == 8, "found %lld\n",
5335                  (long long)(int)sizeof(((struct nodemap_range_rec *)0)->nrr_end_nid));
5336         LASSERTF((int)offsetof(struct nodemap_range_rec, nrr_padding1) == 16, "found %lld\n",
5337                  (long long)(int)offsetof(struct nodemap_range_rec, nrr_padding1));
5338         LASSERTF((int)sizeof(((struct nodemap_range_rec *)0)->nrr_padding1) == 8, "found %lld\n",
5339                  (long long)(int)sizeof(((struct nodemap_range_rec *)0)->nrr_padding1));
5340         LASSERTF((int)offsetof(struct nodemap_range_rec, nrr_padding2) == 24, "found %lld\n",
5341                  (long long)(int)offsetof(struct nodemap_range_rec, nrr_padding2));
5342         LASSERTF((int)sizeof(((struct nodemap_range_rec *)0)->nrr_padding2) == 8, "found %lld\n",
5343                  (long long)(int)sizeof(((struct nodemap_range_rec *)0)->nrr_padding2));
5344
5345         /* Checks for struct nodemap_id_rec */
5346         LASSERTF((int)sizeof(struct nodemap_id_rec) == 32, "found %lld\n",
5347                  (long long)(int)sizeof(struct nodemap_id_rec));
5348         LASSERTF((int)offsetof(struct nodemap_id_rec, nir_id_fs) == 0, "found %lld\n",
5349                  (long long)(int)offsetof(struct nodemap_id_rec, nir_id_fs));
5350         LASSERTF((int)sizeof(((struct nodemap_id_rec *)0)->nir_id_fs) == 4, "found %lld\n",
5351                  (long long)(int)sizeof(((struct nodemap_id_rec *)0)->nir_id_fs));
5352         LASSERTF((int)offsetof(struct nodemap_id_rec, nir_padding1) == 4, "found %lld\n",
5353                  (long long)(int)offsetof(struct nodemap_id_rec, nir_padding1));
5354         LASSERTF((int)sizeof(((struct nodemap_id_rec *)0)->nir_padding1) == 4, "found %lld\n",
5355                  (long long)(int)sizeof(((struct nodemap_id_rec *)0)->nir_padding1));
5356         LASSERTF((int)offsetof(struct nodemap_id_rec, nir_padding2) == 8, "found %lld\n",
5357                  (long long)(int)offsetof(struct nodemap_id_rec, nir_padding2));
5358         LASSERTF((int)sizeof(((struct nodemap_id_rec *)0)->nir_padding2) == 8, "found %lld\n",
5359                  (long long)(int)sizeof(((struct nodemap_id_rec *)0)->nir_padding2));
5360         LASSERTF((int)offsetof(struct nodemap_id_rec, nir_padding3) == 16, "found %lld\n",
5361                  (long long)(int)offsetof(struct nodemap_id_rec, nir_padding3));
5362         LASSERTF((int)sizeof(((struct nodemap_id_rec *)0)->nir_padding3) == 8, "found %lld\n",
5363                  (long long)(int)sizeof(((struct nodemap_id_rec *)0)->nir_padding3));
5364         LASSERTF((int)offsetof(struct nodemap_id_rec, nir_padding4) == 24, "found %lld\n",
5365                  (long long)(int)offsetof(struct nodemap_id_rec, nir_padding4));
5366         LASSERTF((int)sizeof(((struct nodemap_id_rec *)0)->nir_padding4) == 8, "found %lld\n",
5367                  (long long)(int)sizeof(((struct nodemap_id_rec *)0)->nir_padding4));
5368
5369         /* Checks for struct nodemap_global_rec */
5370         LASSERTF((int)sizeof(struct nodemap_global_rec) == 32, "found %lld\n",
5371                  (long long)(int)sizeof(struct nodemap_global_rec));
5372         LASSERTF((int)offsetof(struct nodemap_global_rec, ngr_is_active) == 0, "found %lld\n",
5373                  (long long)(int)offsetof(struct nodemap_global_rec, ngr_is_active));
5374         LASSERTF((int)sizeof(((struct nodemap_global_rec *)0)->ngr_is_active) == 1, "found %lld\n",
5375                  (long long)(int)sizeof(((struct nodemap_global_rec *)0)->ngr_is_active));
5376         LASSERTF((int)offsetof(struct nodemap_global_rec, ngr_padding1) == 1, "found %lld\n",
5377                  (long long)(int)offsetof(struct nodemap_global_rec, ngr_padding1));
5378         LASSERTF((int)sizeof(((struct nodemap_global_rec *)0)->ngr_padding1) == 1, "found %lld\n",
5379                  (long long)(int)sizeof(((struct nodemap_global_rec *)0)->ngr_padding1));
5380         LASSERTF((int)offsetof(struct nodemap_global_rec, ngr_padding2) == 2, "found %lld\n",
5381                  (long long)(int)offsetof(struct nodemap_global_rec, ngr_padding2));
5382         LASSERTF((int)sizeof(((struct nodemap_global_rec *)0)->ngr_padding2) == 2, "found %lld\n",
5383                  (long long)(int)sizeof(((struct nodemap_global_rec *)0)->ngr_padding2));
5384         LASSERTF((int)offsetof(struct nodemap_global_rec, ngr_padding3) == 4, "found %lld\n",
5385                  (long long)(int)offsetof(struct nodemap_global_rec, ngr_padding3));
5386         LASSERTF((int)sizeof(((struct nodemap_global_rec *)0)->ngr_padding3) == 4, "found %lld\n",
5387                  (long long)(int)sizeof(((struct nodemap_global_rec *)0)->ngr_padding3));
5388         LASSERTF((int)offsetof(struct nodemap_global_rec, ngr_padding4) == 8, "found %lld\n",
5389                  (long long)(int)offsetof(struct nodemap_global_rec, ngr_padding4));
5390         LASSERTF((int)sizeof(((struct nodemap_global_rec *)0)->ngr_padding4) == 8, "found %lld\n",
5391                  (long long)(int)sizeof(((struct nodemap_global_rec *)0)->ngr_padding4));
5392         LASSERTF((int)offsetof(struct nodemap_global_rec, ngr_padding5) == 16, "found %lld\n",
5393                  (long long)(int)offsetof(struct nodemap_global_rec, ngr_padding5));
5394         LASSERTF((int)sizeof(((struct nodemap_global_rec *)0)->ngr_padding5) == 8, "found %lld\n",
5395                  (long long)(int)sizeof(((struct nodemap_global_rec *)0)->ngr_padding5));
5396         LASSERTF((int)offsetof(struct nodemap_global_rec, ngr_padding6) == 24, "found %lld\n",
5397                  (long long)(int)offsetof(struct nodemap_global_rec, ngr_padding6));
5398         LASSERTF((int)sizeof(((struct nodemap_global_rec *)0)->ngr_padding6) == 8, "found %lld\n",
5399                  (long long)(int)sizeof(((struct nodemap_global_rec *)0)->ngr_padding6));
5400
5401         /* Checks for union nodemap_rec */
5402         LASSERTF((int)sizeof(union nodemap_rec) == 32, "found %lld\n",
5403                  (long long)(int)sizeof(union nodemap_rec));
5404
5405         /* Checks for struct lfsck_request */
5406         LASSERTF((int)sizeof(struct lfsck_request) == 96, "found %lld\n",
5407                  (long long)(int)sizeof(struct lfsck_request));
5408         LASSERTF((int)offsetof(struct lfsck_request, lr_event) == 0, "found %lld\n",
5409                  (long long)(int)offsetof(struct lfsck_request, lr_event));
5410         LASSERTF((int)sizeof(((struct lfsck_request *)0)->lr_event) == 4, "found %lld\n",
5411                  (long long)(int)sizeof(((struct lfsck_request *)0)->lr_event));
5412         LASSERTF((int)offsetof(struct lfsck_request, lr_index) == 4, "found %lld\n",
5413                  (long long)(int)offsetof(struct lfsck_request, lr_index));
5414         LASSERTF((int)sizeof(((struct lfsck_request *)0)->lr_index) == 4, "found %lld\n",
5415                  (long long)(int)sizeof(((struct lfsck_request *)0)->lr_index));
5416         LASSERTF((int)offsetof(struct lfsck_request, lr_flags) == 8, "found %lld\n",
5417                  (long long)(int)offsetof(struct lfsck_request, lr_flags));
5418         LASSERTF((int)sizeof(((struct lfsck_request *)0)->lr_flags) == 4, "found %lld\n",
5419                  (long long)(int)sizeof(((struct lfsck_request *)0)->lr_flags));
5420         LASSERTF((int)offsetof(struct lfsck_request, lr_valid) == 12, "found %lld\n",
5421                  (long long)(int)offsetof(struct lfsck_request, lr_valid));
5422         LASSERTF((int)sizeof(((struct lfsck_request *)0)->lr_valid) == 4, "found %lld\n",
5423                  (long long)(int)sizeof(((struct lfsck_request *)0)->lr_valid));
5424         LASSERTF((int)offsetof(struct lfsck_request, lr_speed) == 16, "found %lld\n",
5425                  (long long)(int)offsetof(struct lfsck_request, lr_speed));
5426         LASSERTF((int)sizeof(((struct lfsck_request *)0)->lr_speed) == 4, "found %lld\n",
5427                  (long long)(int)sizeof(((struct lfsck_request *)0)->lr_speed));
5428         LASSERTF((int)offsetof(struct lfsck_request, lr_version) == 20, "found %lld\n",
5429                  (long long)(int)offsetof(struct lfsck_request, lr_version));
5430         LASSERTF((int)sizeof(((struct lfsck_request *)0)->lr_version) == 2, "found %lld\n",
5431                  (long long)(int)sizeof(((struct lfsck_request *)0)->lr_version));
5432         LASSERTF((int)offsetof(struct lfsck_request, lr_active) == 22, "found %lld\n",
5433                  (long long)(int)offsetof(struct lfsck_request, lr_active));
5434         LASSERTF((int)sizeof(((struct lfsck_request *)0)->lr_active) == 2, "found %lld\n",
5435                  (long long)(int)sizeof(((struct lfsck_request *)0)->lr_active));
5436         LASSERTF((int)offsetof(struct lfsck_request, lr_param) == 24, "found %lld\n",
5437                  (long long)(int)offsetof(struct lfsck_request, lr_param));
5438         LASSERTF((int)sizeof(((struct lfsck_request *)0)->lr_param) == 2, "found %lld\n",
5439                  (long long)(int)sizeof(((struct lfsck_request *)0)->lr_param));
5440         LASSERTF((int)offsetof(struct lfsck_request, lr_async_windows) == 26, "found %lld\n",
5441                  (long long)(int)offsetof(struct lfsck_request, lr_async_windows));
5442         LASSERTF((int)sizeof(((struct lfsck_request *)0)->lr_async_windows) == 2, "found %lld\n",
5443                  (long long)(int)sizeof(((struct lfsck_request *)0)->lr_async_windows));
5444         LASSERTF((int)offsetof(struct lfsck_request, lr_flags) == 8, "found %lld\n",
5445                  (long long)(int)offsetof(struct lfsck_request, lr_flags));
5446         LASSERTF((int)sizeof(((struct lfsck_request *)0)->lr_flags) == 4, "found %lld\n",
5447                  (long long)(int)sizeof(((struct lfsck_request *)0)->lr_flags));
5448         LASSERTF((int)offsetof(struct lfsck_request, lr_fid) == 32, "found %lld\n",
5449                  (long long)(int)offsetof(struct lfsck_request, lr_fid));
5450         LASSERTF((int)sizeof(((struct lfsck_request *)0)->lr_fid) == 16, "found %lld\n",
5451                  (long long)(int)sizeof(((struct lfsck_request *)0)->lr_fid));
5452         LASSERTF((int)offsetof(struct lfsck_request, lr_fid2) == 48, "found %lld\n",
5453                  (long long)(int)offsetof(struct lfsck_request, lr_fid2));
5454         LASSERTF((int)sizeof(((struct lfsck_request *)0)->lr_fid2) == 16, "found %lld\n",
5455                  (long long)(int)sizeof(((struct lfsck_request *)0)->lr_fid2));
5456         LASSERTF((int)offsetof(struct lfsck_request, lr_comp_id) == 64, "found %lld\n",
5457                  (long long)(int)offsetof(struct lfsck_request, lr_comp_id));
5458         LASSERTF((int)sizeof(((struct lfsck_request *)0)->lr_comp_id) == 4, "found %lld\n",
5459                  (long long)(int)sizeof(((struct lfsck_request *)0)->lr_comp_id));
5460         LASSERTF((int)offsetof(struct lfsck_request, lr_padding_0) == 68, "found %lld\n",
5461                  (long long)(int)offsetof(struct lfsck_request, lr_padding_0));
5462         LASSERTF((int)sizeof(((struct lfsck_request *)0)->lr_padding_0) == 4, "found %lld\n",
5463                  (long long)(int)sizeof(((struct lfsck_request *)0)->lr_padding_0));
5464         LASSERTF((int)offsetof(struct lfsck_request, lr_padding_1) == 72, "found %lld\n",
5465                  (long long)(int)offsetof(struct lfsck_request, lr_padding_1));
5466         LASSERTF((int)sizeof(((struct lfsck_request *)0)->lr_padding_1) == 8, "found %lld\n",
5467                  (long long)(int)sizeof(((struct lfsck_request *)0)->lr_padding_1));
5468         LASSERTF((int)offsetof(struct lfsck_request, lr_padding_2) == 80, "found %lld\n",
5469                  (long long)(int)offsetof(struct lfsck_request, lr_padding_2));
5470         LASSERTF((int)sizeof(((struct lfsck_request *)0)->lr_padding_2) == 8, "found %lld\n",
5471                  (long long)(int)sizeof(((struct lfsck_request *)0)->lr_padding_2));
5472         LASSERTF((int)offsetof(struct lfsck_request, lr_padding_3) == 88, "found %lld\n",
5473                  (long long)(int)offsetof(struct lfsck_request, lr_padding_3));
5474         LASSERTF((int)sizeof(((struct lfsck_request *)0)->lr_padding_3) == 8, "found %lld\n",
5475                  (long long)(int)sizeof(((struct lfsck_request *)0)->lr_padding_3));
5476 #ifdef HAVE_SERVER_SUPPORT
5477         LASSERTF(LFSCK_TYPE_SCRUB == 0x00000000UL, "found 0x%.8xUL\n",
5478                 (unsigned)LFSCK_TYPE_SCRUB);
5479         LASSERTF(LFSCK_TYPE_LAYOUT == 0x00000001UL, "found 0x%.8xUL\n",
5480                 (unsigned)LFSCK_TYPE_LAYOUT);
5481         LASSERTF(LFSCK_TYPE_NAMESPACE == 0x00000004UL, "found 0x%.8xUL\n",
5482                 (unsigned)LFSCK_TYPE_NAMESPACE);
5483 #endif
5484         LASSERTF(LE_LASTID_REBUILDING == 1, "found %lld\n",
5485                  (long long)LE_LASTID_REBUILDING);
5486         LASSERTF(LE_LASTID_REBUILT == 2, "found %lld\n",
5487                  (long long)LE_LASTID_REBUILT);
5488         LASSERTF(LE_PHASE1_DONE == 3, "found %lld\n",
5489                  (long long)LE_PHASE1_DONE);
5490         LASSERTF(LE_PHASE2_DONE == 4, "found %lld\n",
5491                  (long long)LE_PHASE2_DONE);
5492         LASSERTF(LE_START == 5, "found %lld\n",
5493                  (long long)LE_START);
5494         LASSERTF(LE_STOP == 6, "found %lld\n",
5495                  (long long)LE_STOP);
5496         LASSERTF(LE_QUERY == 7, "found %lld\n",
5497                  (long long)LE_QUERY);
5498         LASSERTF(LE_PEER_EXIT == 9, "found %lld\n",
5499                  (long long)LE_PEER_EXIT);
5500         LASSERTF(LE_CONDITIONAL_DESTROY == 10, "found %lld\n",
5501                  (long long)LE_CONDITIONAL_DESTROY);
5502         LASSERTF(LE_PAIRS_VERIFY == 11, "found %lld\n",
5503                  (long long)LE_PAIRS_VERIFY);
5504         LASSERTF(LE_SET_LMV_MASTER == 15, "found %lld\n",
5505                  (long long)LE_SET_LMV_MASTER);
5506         LASSERTF(LE_SET_LMV_SLAVE == 16, "found %lld\n",
5507                  (long long)LE_SET_LMV_SLAVE);
5508         LASSERTF(LEF_TO_OST == 0x00000001UL, "found 0x%.8xUL\n",
5509                 (unsigned)LEF_TO_OST);
5510         LASSERTF(LEF_FROM_OST == 0x00000002UL, "found 0x%.8xUL\n",
5511                 (unsigned)LEF_FROM_OST);
5512         LASSERTF(LEF_SET_LMV_HASH == 0x00000004UL, "found 0x%.8xUL\n",
5513                 (unsigned)LEF_SET_LMV_HASH);
5514         LASSERTF(LEF_SET_LMV_ALL == 0x00000008UL, "found 0x%.8xUL\n",
5515                 (unsigned)LEF_SET_LMV_ALL);
5516         LASSERTF(LEF_RECHECK_NAME_HASH == 0x00000010UL, "found 0x%.8xUL\n",
5517                 (unsigned)LEF_RECHECK_NAME_HASH);
5518         LASSERTF(LEF_QUERY_ALL == 0x00000020UL, "found 0x%.8xUL\n",
5519                 (unsigned)LEF_QUERY_ALL);
5520
5521         /* Checks for struct lfsck_reply */
5522         LASSERTF((int)sizeof(struct lfsck_reply) == 16, "found %lld\n",
5523                  (long long)(int)sizeof(struct lfsck_reply));
5524         LASSERTF((int)offsetof(struct lfsck_reply, lr_status) == 0, "found %lld\n",
5525                  (long long)(int)offsetof(struct lfsck_reply, lr_status));
5526         LASSERTF((int)sizeof(((struct lfsck_reply *)0)->lr_status) == 4, "found %lld\n",
5527                  (long long)(int)sizeof(((struct lfsck_reply *)0)->lr_status));
5528         LASSERTF((int)offsetof(struct lfsck_reply, lr_padding_1) == 4, "found %lld\n",
5529                  (long long)(int)offsetof(struct lfsck_reply, lr_padding_1));
5530         LASSERTF((int)sizeof(((struct lfsck_reply *)0)->lr_padding_1) == 4, "found %lld\n",
5531                  (long long)(int)sizeof(((struct lfsck_reply *)0)->lr_padding_1));
5532         LASSERTF((int)offsetof(struct lfsck_reply, lr_repaired) == 8, "found %lld\n",
5533                  (long long)(int)offsetof(struct lfsck_reply, lr_repaired));
5534         LASSERTF((int)sizeof(((struct lfsck_reply *)0)->lr_repaired) == 8, "found %lld\n",
5535                  (long long)(int)sizeof(((struct lfsck_reply *)0)->lr_repaired));
5536
5537         /* Checks for struct update_params */
5538         LASSERTF((int)sizeof(struct update_params) == 0, "found %lld\n",
5539                  (long long)(int)sizeof(struct update_params));
5540         LASSERTF((int)offsetof(struct update_params, up_params) == 0, "found %lld\n",
5541                  (long long)(int)offsetof(struct update_params, up_params));
5542         LASSERTF((int)sizeof(((struct update_params *)0)->up_params) == 0, "found %lld\n",
5543                  (long long)(int)sizeof(((struct update_params *)0)->up_params));
5544
5545         /* Checks for struct update_op */
5546         LASSERTF((int)sizeof(struct update_op) == 20, "found %lld\n",
5547                  (long long)(int)sizeof(struct update_op));
5548         LASSERTF((int)offsetof(struct update_op, uop_fid) == 0, "found %lld\n",
5549                  (long long)(int)offsetof(struct update_op, uop_fid));
5550         LASSERTF((int)sizeof(((struct update_op *)0)->uop_fid) == 16, "found %lld\n",
5551                  (long long)(int)sizeof(((struct update_op *)0)->uop_fid));
5552         LASSERTF((int)offsetof(struct update_op, uop_type) == 16, "found %lld\n",
5553                  (long long)(int)offsetof(struct update_op, uop_type));
5554         LASSERTF((int)sizeof(((struct update_op *)0)->uop_type) == 2, "found %lld\n",
5555                  (long long)(int)sizeof(((struct update_op *)0)->uop_type));
5556         LASSERTF((int)offsetof(struct update_op, uop_param_count) == 18, "found %lld\n",
5557                  (long long)(int)offsetof(struct update_op, uop_param_count));
5558         LASSERTF((int)sizeof(((struct update_op *)0)->uop_param_count) == 2, "found %lld\n",
5559                  (long long)(int)sizeof(((struct update_op *)0)->uop_param_count));
5560         LASSERTF((int)offsetof(struct update_op, uop_params_off) == 20, "found %lld\n",
5561                  (long long)(int)offsetof(struct update_op, uop_params_off));
5562         LASSERTF((int)sizeof(((struct update_op *)0)->uop_params_off) == 0, "found %lld\n",
5563                  (long long)(int)sizeof(((struct update_op *)0)->uop_params_off));
5564
5565         /* Checks for struct update_ops */
5566         LASSERTF((int)sizeof(struct update_ops) == 0, "found %lld\n",
5567                  (long long)(int)sizeof(struct update_ops));
5568         LASSERTF((int)offsetof(struct update_ops, uops_op) == 0, "found %lld\n",
5569                  (long long)(int)offsetof(struct update_ops, uops_op));
5570         LASSERTF((int)sizeof(((struct update_ops *)0)->uops_op) == 0, "found %lld\n",
5571                  (long long)(int)sizeof(((struct update_ops *)0)->uops_op));
5572
5573         /* Checks for struct update_records */
5574         LASSERTF((int)sizeof(struct update_records) == 32, "found %lld\n",
5575                  (long long)(int)sizeof(struct update_records));
5576         LASSERTF((int)offsetof(struct update_records, ur_master_transno) == 0, "found %lld\n",
5577                  (long long)(int)offsetof(struct update_records, ur_master_transno));
5578         LASSERTF((int)sizeof(((struct update_records *)0)->ur_master_transno) == 8, "found %lld\n",
5579                  (long long)(int)sizeof(((struct update_records *)0)->ur_master_transno));
5580         LASSERTF((int)offsetof(struct update_records, ur_batchid) == 8, "found %lld\n",
5581                  (long long)(int)offsetof(struct update_records, ur_batchid));
5582         LASSERTF((int)sizeof(((struct update_records *)0)->ur_batchid) == 8, "found %lld\n",
5583                  (long long)(int)sizeof(((struct update_records *)0)->ur_batchid));
5584         LASSERTF((int)offsetof(struct update_records, ur_flags) == 16, "found %lld\n",
5585                  (long long)(int)offsetof(struct update_records, ur_flags));
5586         LASSERTF((int)sizeof(((struct update_records *)0)->ur_flags) == 4, "found %lld\n",
5587                  (long long)(int)sizeof(((struct update_records *)0)->ur_flags));
5588         LASSERTF((int)offsetof(struct update_records, ur_index) == 20, "found %lld\n",
5589                  (long long)(int)offsetof(struct update_records, ur_index));
5590         LASSERTF((int)sizeof(((struct update_records *)0)->ur_index) == 4, "found %lld\n",
5591                  (long long)(int)sizeof(((struct update_records *)0)->ur_index));
5592         LASSERTF((int)offsetof(struct update_records, ur_update_count) == 24, "found %lld\n",
5593                  (long long)(int)offsetof(struct update_records, ur_update_count));
5594         LASSERTF((int)sizeof(((struct update_records *)0)->ur_update_count) == 4, "found %lld\n",
5595                  (long long)(int)sizeof(((struct update_records *)0)->ur_update_count));
5596         LASSERTF((int)offsetof(struct update_records, ur_param_count) == 28, "found %lld\n",
5597                  (long long)(int)offsetof(struct update_records, ur_param_count));
5598         LASSERTF((int)sizeof(((struct update_records *)0)->ur_param_count) == 4, "found %lld\n",
5599                  (long long)(int)sizeof(((struct update_records *)0)->ur_param_count));
5600         LASSERTF(UPDATE_RECORD_CONTINUE == 0x00000001UL, "found 0x%.8xUL\n",
5601                 (unsigned)UPDATE_RECORD_CONTINUE);
5602
5603         /* Checks for struct llog_update_record */
5604         LASSERTF((int)sizeof(struct llog_update_record) == 48, "found %lld\n",
5605                  (long long)(int)sizeof(struct llog_update_record));
5606         LASSERTF((int)offsetof(struct llog_update_record, lur_hdr) == 0, "found %lld\n",
5607                  (long long)(int)offsetof(struct llog_update_record, lur_hdr));
5608         LASSERTF((int)sizeof(((struct llog_update_record *)0)->lur_hdr) == 16, "found %lld\n",
5609                  (long long)(int)sizeof(((struct llog_update_record *)0)->lur_hdr));
5610         LASSERTF((int)offsetof(struct llog_update_record, lur_update_rec) == 16, "found %lld\n",
5611                  (long long)(int)offsetof(struct llog_update_record, lur_update_rec));
5612         LASSERTF((int)sizeof(((struct llog_update_record *)0)->lur_update_rec) == 32, "found %lld\n",
5613                  (long long)(int)sizeof(((struct llog_update_record *)0)->lur_update_rec));
5614
5615         /* Checks for struct lustre_cfg */
5616         LASSERTF((int)sizeof(struct lustre_cfg) == 32, "found %lld\n",
5617                  (long long)(int)sizeof(struct lustre_cfg));
5618         LASSERTF((int)offsetof(struct lustre_cfg, lcfg_version) == 0, "found %lld\n",
5619                  (long long)(int)offsetof(struct lustre_cfg, lcfg_version));
5620         LASSERTF((int)sizeof(((struct lustre_cfg *)0)->lcfg_version) == 4, "found %lld\n",
5621                  (long long)(int)sizeof(((struct lustre_cfg *)0)->lcfg_version));
5622         LASSERTF((int)offsetof(struct lustre_cfg, lcfg_command) == 4, "found %lld\n",
5623                  (long long)(int)offsetof(struct lustre_cfg, lcfg_command));
5624         LASSERTF((int)sizeof(((struct lustre_cfg *)0)->lcfg_command) == 4, "found %lld\n",
5625                  (long long)(int)sizeof(((struct lustre_cfg *)0)->lcfg_command));
5626         LASSERTF((int)offsetof(struct lustre_cfg, lcfg_num) == 8, "found %lld\n",
5627                  (long long)(int)offsetof(struct lustre_cfg, lcfg_num));
5628         LASSERTF((int)sizeof(((struct lustre_cfg *)0)->lcfg_num) == 4, "found %lld\n",
5629                  (long long)(int)sizeof(((struct lustre_cfg *)0)->lcfg_num));
5630         LASSERTF((int)offsetof(struct lustre_cfg, lcfg_flags) == 12, "found %lld\n",
5631                  (long long)(int)offsetof(struct lustre_cfg, lcfg_flags));
5632         LASSERTF((int)sizeof(((struct lustre_cfg *)0)->lcfg_flags) == 4, "found %lld\n",
5633                  (long long)(int)sizeof(((struct lustre_cfg *)0)->lcfg_flags));
5634         LASSERTF((int)offsetof(struct lustre_cfg, lcfg_nid) == 16, "found %lld\n",
5635                  (long long)(int)offsetof(struct lustre_cfg, lcfg_nid));
5636         LASSERTF((int)sizeof(((struct lustre_cfg *)0)->lcfg_nid) == 8, "found %lld\n",
5637                  (long long)(int)sizeof(((struct lustre_cfg *)0)->lcfg_nid));
5638         LASSERTF((int)offsetof(struct lustre_cfg, lcfg_nal) == 24, "found %lld\n",
5639                  (long long)(int)offsetof(struct lustre_cfg, lcfg_nal));
5640         LASSERTF((int)sizeof(((struct lustre_cfg *)0)->lcfg_nal) == 4, "found %lld\n",
5641                  (long long)(int)sizeof(((struct lustre_cfg *)0)->lcfg_nal));
5642         LASSERTF((int)offsetof(struct lustre_cfg, lcfg_bufcount) == 28, "found %lld\n",
5643                  (long long)(int)offsetof(struct lustre_cfg, lcfg_bufcount));
5644         LASSERTF((int)sizeof(((struct lustre_cfg *)0)->lcfg_bufcount) == 4, "found %lld\n",
5645                  (long long)(int)sizeof(((struct lustre_cfg *)0)->lcfg_bufcount));
5646         LASSERTF((int)offsetof(struct lustre_cfg, lcfg_buflens[0]) == 32, "found %lld\n",
5647                  (long long)(int)offsetof(struct lustre_cfg, lcfg_buflens[0]));
5648         LASSERTF((int)sizeof(((struct lustre_cfg *)0)->lcfg_buflens[0]) == 4, "found %lld\n",
5649                  (long long)(int)sizeof(((struct lustre_cfg *)0)->lcfg_buflens[0]));
5650         LASSERTF(LCFG_ATTACH == 0x000cf001UL, "found 0x%.8xUL\n",
5651                 (unsigned)LCFG_ATTACH);
5652         LASSERTF(LCFG_DETACH == 0x000cf002UL, "found 0x%.8xUL\n",
5653                 (unsigned)LCFG_DETACH);
5654         LASSERTF(LCFG_SETUP == 0x000cf003UL, "found 0x%.8xUL\n",
5655                 (unsigned)LCFG_SETUP);
5656         LASSERTF(LCFG_CLEANUP == 0x000cf004UL, "found 0x%.8xUL\n",
5657                 (unsigned)LCFG_CLEANUP);
5658         LASSERTF(LCFG_ADD_UUID == 0x000cf005UL, "found 0x%.8xUL\n",
5659                 (unsigned)LCFG_ADD_UUID);
5660         LASSERTF(LCFG_DEL_UUID == 0x000cf006UL, "found 0x%.8xUL\n",
5661                 (unsigned)LCFG_DEL_UUID);
5662         LASSERTF(LCFG_MOUNTOPT == 0x000cf007UL, "found 0x%.8xUL\n",
5663                 (unsigned)LCFG_MOUNTOPT);
5664         LASSERTF(LCFG_DEL_MOUNTOPT == 0x000cf008UL, "found 0x%.8xUL\n",
5665                 (unsigned)LCFG_DEL_MOUNTOPT);
5666         LASSERTF(LCFG_SET_TIMEOUT == 0x000cf009UL, "found 0x%.8xUL\n",
5667                 (unsigned)LCFG_SET_TIMEOUT);
5668         LASSERTF(LCFG_SET_UPCALL == 0x000cf00aUL, "found 0x%.8xUL\n",
5669                 (unsigned)LCFG_SET_UPCALL);
5670         LASSERTF(LCFG_ADD_CONN == 0x000cf00bUL, "found 0x%.8xUL\n",
5671                 (unsigned)LCFG_ADD_CONN);
5672         LASSERTF(LCFG_DEL_CONN == 0x000cf00cUL, "found 0x%.8xUL\n",
5673                 (unsigned)LCFG_DEL_CONN);
5674         LASSERTF(LCFG_LOV_ADD_OBD == 0x000cf00dUL, "found 0x%.8xUL\n",
5675                 (unsigned)LCFG_LOV_ADD_OBD);
5676         LASSERTF(LCFG_LOV_DEL_OBD == 0x000cf00eUL, "found 0x%.8xUL\n",
5677                 (unsigned)LCFG_LOV_DEL_OBD);
5678         LASSERTF(LCFG_PARAM == 0x000cf00fUL, "found 0x%.8xUL\n",
5679                 (unsigned)LCFG_PARAM);
5680         LASSERTF(LCFG_MARKER == 0x000cf010UL, "found 0x%.8xUL\n",
5681                 (unsigned)LCFG_MARKER);
5682         LASSERTF(LCFG_LOG_START == 0x000ce011UL, "found 0x%.8xUL\n",
5683                 (unsigned)LCFG_LOG_START);
5684         LASSERTF(LCFG_LOG_END == 0x000ce012UL, "found 0x%.8xUL\n",
5685                 (unsigned)LCFG_LOG_END);
5686         LASSERTF(LCFG_LOV_ADD_INA == 0x000ce013UL, "found 0x%.8xUL\n",
5687                 (unsigned)LCFG_LOV_ADD_INA);
5688         LASSERTF(LCFG_ADD_MDC == 0x000cf014UL, "found 0x%.8xUL\n",
5689                 (unsigned)LCFG_ADD_MDC);
5690         LASSERTF(LCFG_DEL_MDC == 0x000cf015UL, "found 0x%.8xUL\n",
5691                 (unsigned)LCFG_DEL_MDC);
5692         LASSERTF(LCFG_SPTLRPC_CONF == 0x000ce016UL, "found 0x%.8xUL\n",
5693                 (unsigned)LCFG_SPTLRPC_CONF);
5694         LASSERTF(LCFG_POOL_NEW == 0x000ce020UL, "found 0x%.8xUL\n",
5695                 (unsigned)LCFG_POOL_NEW);
5696         LASSERTF(LCFG_POOL_ADD == 0x000ce021UL, "found 0x%.8xUL\n",
5697                 (unsigned)LCFG_POOL_ADD);
5698         LASSERTF(LCFG_POOL_REM == 0x000ce022UL, "found 0x%.8xUL\n",
5699                 (unsigned)LCFG_POOL_REM);
5700         LASSERTF(LCFG_POOL_DEL == 0x000ce023UL, "found 0x%.8xUL\n",
5701                 (unsigned)LCFG_POOL_DEL);
5702         LASSERTF(LCFG_SET_LDLM_TIMEOUT == 0x000ce030UL, "found 0x%.8xUL\n",
5703                 (unsigned)LCFG_SET_LDLM_TIMEOUT);
5704         LASSERTF(LCFG_PRE_CLEANUP == 0x000cf031UL, "found 0x%.8xUL\n",
5705                 (unsigned)LCFG_PRE_CLEANUP);
5706         LASSERTF(LCFG_SET_PARAM == 0x000ce032UL, "found 0x%.8xUL\n",
5707                 (unsigned)LCFG_SET_PARAM);
5708         LASSERTF(LCFG_NODEMAP_ADD == 0x000ce040UL, "found 0x%.8xUL\n",
5709                 (unsigned)LCFG_NODEMAP_ADD);
5710         LASSERTF(LCFG_NODEMAP_DEL == 0x000ce041UL, "found 0x%.8xUL\n",
5711                 (unsigned)LCFG_NODEMAP_DEL);
5712         LASSERTF(LCFG_NODEMAP_ADD_RANGE == 0x000ce042UL, "found 0x%.8xUL\n",
5713                 (unsigned)LCFG_NODEMAP_ADD_RANGE);
5714         LASSERTF(LCFG_NODEMAP_DEL_RANGE == 0x000ce043UL, "found 0x%.8xUL\n",
5715                 (unsigned)LCFG_NODEMAP_DEL_RANGE);
5716         LASSERTF(LCFG_NODEMAP_ADD_UIDMAP == 0x000ce044UL, "found 0x%.8xUL\n",
5717                 (unsigned)LCFG_NODEMAP_ADD_UIDMAP);
5718         LASSERTF(LCFG_NODEMAP_DEL_UIDMAP == 0x000ce045UL, "found 0x%.8xUL\n",
5719                 (unsigned)LCFG_NODEMAP_DEL_UIDMAP);
5720         LASSERTF(LCFG_NODEMAP_ADD_GIDMAP == 0x000ce046UL, "found 0x%.8xUL\n",
5721                 (unsigned)LCFG_NODEMAP_ADD_GIDMAP);
5722         LASSERTF(LCFG_NODEMAP_DEL_GIDMAP == 0x000ce047UL, "found 0x%.8xUL\n",
5723                 (unsigned)LCFG_NODEMAP_DEL_GIDMAP);
5724         LASSERTF(LCFG_NODEMAP_ACTIVATE == 0x000ce048UL, "found 0x%.8xUL\n",
5725                 (unsigned)LCFG_NODEMAP_ACTIVATE);
5726         LASSERTF(LCFG_NODEMAP_ADMIN == 0x000ce049UL, "found 0x%.8xUL\n",
5727                 (unsigned)LCFG_NODEMAP_ADMIN);
5728         LASSERTF(LCFG_NODEMAP_TRUSTED == 0x000ce050UL, "found 0x%.8xUL\n",
5729                 (unsigned)LCFG_NODEMAP_TRUSTED);
5730         LASSERTF(LCFG_NODEMAP_SQUASH_UID == 0x000ce051UL, "found 0x%.8xUL\n",
5731                 (unsigned)LCFG_NODEMAP_SQUASH_UID);
5732         LASSERTF(LCFG_NODEMAP_SQUASH_GID == 0x000ce052UL, "found 0x%.8xUL\n",
5733                 (unsigned)LCFG_NODEMAP_SQUASH_GID);
5734         LASSERTF(LCFG_NODEMAP_ADD_SHKEY == 0x000ce053UL, "found 0x%.8xUL\n",
5735                 (unsigned)LCFG_NODEMAP_ADD_SHKEY);
5736         LASSERTF(LCFG_NODEMAP_DEL_SHKEY == 0x000ce054UL, "found 0x%.8xUL\n",
5737                 (unsigned)LCFG_NODEMAP_DEL_SHKEY);
5738         LASSERTF(LCFG_NODEMAP_TEST_NID == 0x000ce055UL, "found 0x%.8xUL\n",
5739                 (unsigned)LCFG_NODEMAP_TEST_NID);
5740         LASSERTF(LCFG_NODEMAP_TEST_ID == 0x000ce056UL, "found 0x%.8xUL\n",
5741                 (unsigned)LCFG_NODEMAP_TEST_ID);
5742         LASSERTF(LCFG_NODEMAP_SET_FILESET == 0x000ce057UL, "found 0x%.8xUL\n",
5743                 (unsigned)LCFG_NODEMAP_SET_FILESET);
5744         LASSERTF(LCFG_NODEMAP_DENY_UNKNOWN == 0x000ce058UL, "found 0x%.8xUL\n",
5745                 (unsigned)LCFG_NODEMAP_DENY_UNKNOWN);
5746         LASSERTF(LCFG_NODEMAP_MAP_MODE == 0x000ce059UL, "found 0x%.8xUL\n",
5747                 (unsigned)LCFG_NODEMAP_MAP_MODE);
5748         LASSERTF(LCFG_NODEMAP_AUDIT_MODE == 0x000ce05aUL, "found 0x%.8xUL\n",
5749                 (unsigned)LCFG_NODEMAP_AUDIT_MODE);
5750         LASSERTF(LCFG_NODEMAP_SET_SEPOL == 0x000ce05bUL, "found 0x%.8xUL\n",
5751                 (unsigned)LCFG_NODEMAP_SET_SEPOL);
5752         LASSERTF(PORTALS_CFG_TYPE == 1, "found %lld\n",
5753                  (long long)PORTALS_CFG_TYPE);
5754         LASSERTF(LUSTRE_CFG_TYPE == 123, "found %lld\n",
5755                  (long long)LUSTRE_CFG_TYPE);
5756 }