1*d6b92ffaSHans Petter Selasky /*
2*d6b92ffaSHans Petter Selasky * This software is available to you under a choice of one of two
3*d6b92ffaSHans Petter Selasky * licenses. You may choose to be licensed under the terms of the GNU
4*d6b92ffaSHans Petter Selasky * General Public License (GPL) Version 2, available from the file
5*d6b92ffaSHans Petter Selasky * COPYING in the main directory of this source tree, or the
6*d6b92ffaSHans Petter Selasky * OpenIB.org BSD license below:
7*d6b92ffaSHans Petter Selasky *
8*d6b92ffaSHans Petter Selasky * Redistribution and use in source and binary forms, with or
9*d6b92ffaSHans Petter Selasky * without modification, are permitted provided that the following
10*d6b92ffaSHans Petter Selasky * conditions are met:
11*d6b92ffaSHans Petter Selasky *
12*d6b92ffaSHans Petter Selasky * - Redistributions of source code must retain the above
13*d6b92ffaSHans Petter Selasky * copyright notice, this list of conditions and the following
14*d6b92ffaSHans Petter Selasky * disclaimer.
15*d6b92ffaSHans Petter Selasky *
16*d6b92ffaSHans Petter Selasky * - Redistributions in binary form must reproduce the above
17*d6b92ffaSHans Petter Selasky * copyright notice, this list of conditions and the following
18*d6b92ffaSHans Petter Selasky * disclaimer in the documentation and/or other materials
19*d6b92ffaSHans Petter Selasky * provided with the distribution.
20*d6b92ffaSHans Petter Selasky *
21*d6b92ffaSHans Petter Selasky * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22*d6b92ffaSHans Petter Selasky * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23*d6b92ffaSHans Petter Selasky * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24*d6b92ffaSHans Petter Selasky * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
25*d6b92ffaSHans Petter Selasky * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
26*d6b92ffaSHans Petter Selasky * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
27*d6b92ffaSHans Petter Selasky * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
28*d6b92ffaSHans Petter Selasky * SOFTWARE.
29*d6b92ffaSHans Petter Selasky */
30*d6b92ffaSHans Petter Selasky
31*d6b92ffaSHans Petter Selasky #ifndef INFINIBAND_ARCH_H
32*d6b92ffaSHans Petter Selasky #define INFINIBAND_ARCH_H
33*d6b92ffaSHans Petter Selasky
34*d6b92ffaSHans Petter Selasky #include <stdint.h>
35*d6b92ffaSHans Petter Selasky #include <infiniband/endian.h>
36*d6b92ffaSHans Petter Selasky
37*d6b92ffaSHans Petter Selasky #warning "This header is obsolete."
38*d6b92ffaSHans Petter Selasky
39*d6b92ffaSHans Petter Selasky #ifndef ntohll
40*d6b92ffaSHans Petter Selasky #undef htonll
41*d6b92ffaSHans Petter Selasky #undef ntohll
42*d6b92ffaSHans Petter Selasky /* Users should use the glibc functions directly, not these wrappers */
htonll(uint64_t x)43*d6b92ffaSHans Petter Selasky static inline __attribute__((deprecated)) uint64_t htonll(uint64_t x) { return htobe64(x); }
ntohll(uint64_t x)44*d6b92ffaSHans Petter Selasky static inline __attribute__((deprecated)) uint64_t ntohll(uint64_t x) { return be64toh(x); }
45*d6b92ffaSHans Petter Selasky #define htonll htonll
46*d6b92ffaSHans Petter Selasky #define ntohll ntohll
47*d6b92ffaSHans Petter Selasky #endif
48*d6b92ffaSHans Petter Selasky
49*d6b92ffaSHans Petter Selasky /* Barrier macros are no longer provided by libibverbs */
50*d6b92ffaSHans Petter Selasky
51*d6b92ffaSHans Petter Selasky #endif /* INFINIBAND_ARCH_H */
52