X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=drivers%2Fnet%2Fenic%2Fbase%2Frq_enet_desc.h;h=c79c0287bfad7f0a215635e9f5c7210179ded15e;hb=77c2df5e649a8c66d4ea1d356f6b7a9c13153c3e;hp=13e24b43ff144dd5adb83fca1ae47876d1297782;hpb=856d7ba7ed222b0a641fa23139714128bd778109;p=dpdk.git diff --git a/drivers/net/enic/base/rq_enet_desc.h b/drivers/net/enic/base/rq_enet_desc.h index 13e24b43ff..c79c0287bf 100644 --- a/drivers/net/enic/base/rq_enet_desc.h +++ b/drivers/net/enic/base/rq_enet_desc.h @@ -1,45 +1,18 @@ -/* - * Copyright 2008-2010 Cisco Systems, Inc. All rights reserved. +/* SPDX-License-Identifier: BSD-3-Clause + * Copyright 2008-2017 Cisco Systems, Inc. All rights reserved. * Copyright 2007 Nuova Systems, Inc. All rights reserved. - * - * Copyright (c) 2014, Cisco Systems, Inc. - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in - * the documentation and/or other materials provided with the - * distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, - * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER - * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN - * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - * */ #ifndef _RQ_ENET_DESC_H_ #define _RQ_ENET_DESC_H_ +#include + /* Ethernet receive queue descriptor: 16B */ struct rq_enet_desc { - __le64 address; - __le16 length_type; - u8 reserved[6]; + uint64_t address; + uint16_t length_type; + uint8_t reserved[6]; }; enum rq_enet_type_types { @@ -56,20 +29,20 @@ enum rq_enet_type_types { #define RQ_ENET_TYPE_MASK ((1 << RQ_ENET_TYPE_BITS) - 1) static inline void rq_enet_desc_enc(volatile struct rq_enet_desc *desc, - u64 address, u8 type, u16 length) + uint64_t address, uint8_t type, uint16_t length) { - desc->address = cpu_to_le64(address); - desc->length_type = cpu_to_le16((length & RQ_ENET_LEN_MASK) | + desc->address = rte_cpu_to_le_64(address); + desc->length_type = rte_cpu_to_le_16((length & RQ_ENET_LEN_MASK) | ((type & RQ_ENET_TYPE_MASK) << RQ_ENET_LEN_BITS)); } static inline void rq_enet_desc_dec(struct rq_enet_desc *desc, - u64 *address, u8 *type, u16 *length) + uint64_t *address, uint8_t *type, uint16_t *length) { - *address = le64_to_cpu(desc->address); - *length = le16_to_cpu(desc->length_type) & RQ_ENET_LEN_MASK; - *type = (u8)((le16_to_cpu(desc->length_type) >> RQ_ENET_LEN_BITS) & - RQ_ENET_TYPE_MASK); + *address = rte_le_to_cpu_64(desc->address); + *length = rte_le_to_cpu_16(desc->length_type) & RQ_ENET_LEN_MASK; + *type = (uint8_t)((rte_le_to_cpu_16(desc->length_type) >> + RQ_ENET_LEN_BITS) & RQ_ENET_TYPE_MASK); } #endif /* _RQ_ENET_DESC_H_ */