dc496974cd
Clarify Intel copyright and update the date to 2020. Fixes:f3202a097f
("net/ice/base: add ACL module") Fixes:a90fae1d07
("net/ice/base: add admin queue structures and commands") Fixes:2d2bdc0267
("net/ice/base: add various headers") Fixes:c9e37832c9
("net/ice/base: rework on bit ops") Fixes:453d087cca
("net/ice/base: add common functions") Fixes:6c1f26be50
("net/ice/base: add control queue information") Fixes:1082f78654
("net/ice/base: support DCB") Fixes:6aa406714a
("net/ice/base: add device IDs for Intel E800 Series NICs") Fixes:bd984f155f
("net/ice/base: support FDIR") Fixes:51d04e4933
("net/ice/base: add flexible pipeline module") Fixes:2d2bdc0267
("net/ice/base: add various headers") Fixes:aa1cd410fa
("net/ice/base: add flow module") Fixes:51c7f09f3f
("net/ice/base: add registers for Intel E800 Series NIC") Fixes:64e9587d56
("net/ice/base: add structures for Rx/Tx queues") Fixes:557fa75bcf
("net/ice/base: add code to work with the NVM") Fixes:b06499a433
("net/ice/base: update Boot Configuration Section read of NVM") Fixes:04b8ec1ea8
("net/ice/base: add protocol structures and defines") Fixes:2a27e0a16d
("net/ice/base: add sideband queue info") Fixes:93e84b1bfc
("net/ice/base: add basic Tx scheduler") Fixes:c7dd159311
("net/ice/base: add virtual switch code") Fixes:a240ff5050
("net/ice/base: add basic structures") Cc: stable@dpdk.org Signed-off-by: Xiaoyun Li <xiaoyun.li@intel.com> Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
23 lines
371 B
C
23 lines
371 B
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright(c) 2001-2020 Intel Corporation
|
|
*/
|
|
|
|
#ifndef _ICE_ALLOC_H_
|
|
#define _ICE_ALLOC_H_
|
|
|
|
/* Memory types */
|
|
enum ice_memset_type {
|
|
ICE_NONDMA_MEM = 0,
|
|
ICE_DMA_MEM
|
|
};
|
|
|
|
/* Memcpy types */
|
|
enum ice_memcpy_type {
|
|
ICE_NONDMA_TO_NONDMA = 0,
|
|
ICE_NONDMA_TO_DMA,
|
|
ICE_DMA_TO_DMA,
|
|
ICE_DMA_TO_NONDMA
|
|
};
|
|
|
|
#endif /* _ICE_ALLOC_H_ */
|