summaryrefslogtreecommitdiffstats
path: root/src/pal/linux_dpdk/pal_utl.h
blob: 13403e6c3b6f76b00796a3d03ee3e64b117afe0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
 Hanoh Haim
 Cisco Systems, Inc.
*/

/*
Copyright (c) 2015-2015 Cisco Systems, Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#ifndef PAL_UTL_H
#define PAL_UTL_H

#include <stdint.h>
#include <rte_byteorder.h>
#include <rte_memcpy.h>

#define PAL_WORDSWAP(x) rte_bswap16(x)


#define PAL_NTOHL(x)     ( (uint32_t)( rte_bswap32(x) ) )
#define PAL_NTOHS(x)     ( (uint16_t)( rte_bswap16(x) ) )
 
#define PAL_HTONS(x)     (PAL_NTOHS(x))
#define PAL_HTONL(x)     (PAL_NTOHL(x))

#define pal_ntohl64(x) rte_bswap64(x)

#define PAL_NTOHLL(x)     ( rte_bswap64(x) )



#endif