Whamcloud - gitweb
Branch HEAD
[fs/lustre-release.git] / lustre / include / darwin / obd_support.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (C) 2001, 2002 Cluster File Systems, Inc.
5  *
6  *   This file is part of Lustre, http://www.lustre.org.
7  *
8  *   Lustre is free software; you can redistribute it and/or
9  *   modify it under the terms of version 2 of the GNU General Public
10  *   License as published by the Free Software Foundation.
11  *
12  *   Lustre is distributed in the hope that it will be useful,
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *   GNU General Public License for more details.
16  *
17  *   You should have received a copy of the GNU General Public License
18  *   along with Lustre; if not, write to the Free Software
19  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  */
22
23 #ifndef _DARWIN_OBD_SUPPORT
24 #define _DARWIN_OBD_SUPPORT
25
26 #ifndef _OBD_SUPPORT
27 #error Do not #include this file directly. #include <obd_support.h> instead
28 #endif
29
30 #include <darwin/lustre_compat.h>
31
32 #define CRCPOLY_LE 0xedb88320
33 /**
34  * crc32_le() - Calculate bitwise little-endian Ethernet AUTODIN II CRC32
35  * @crc - seed value for computation.  ~0 for Ethernet, sometimes 0 for
36  *        other uses, or the previous crc32 value if computing incrementally.
37  * @p   - pointer to buffer over which CRC is run
38  * @len - length of buffer @p
39  */
40 static inline __u32 crc32_le(__u32 crc, unsigned char const *p, size_t len)
41 {
42         int i;
43         while (len--) {
44                 crc ^= *p++;
45                 for (i = 0; i < 8; i++)
46                 crc = (crc >> 1) ^ ((crc & 1) ? CRCPOLY_LE : 0);
47         }
48         return crc;
49 }
50
51 #define OBD_SLEEP_ON(wq)        sleep_on(wq)
52
53 /* for obd_class.h */
54 # ifndef ERR_PTR
55 #  define ERR_PTR(a) ((void *)(a))
56 # endif
57
58 #endif