X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=lib%2Flibrte_eal%2Fcommon%2Finclude%2Fgeneric%2Frte_prefetch.h;h=725715ff6e341a5d4ffb39680d1f4edb4e1d67d6;hb=75583b0d1efd3fa7f8b8c66dd0e58212150f1d41;hp=217f319bbe8e49d5b512d52fb00c933857519122;hpb=2eefe6f11b8d8b80ee6322562a6ed9311fccc775;p=dpdk.git diff --git a/lib/librte_eal/common/include/generic/rte_prefetch.h b/lib/librte_eal/common/include/generic/rte_prefetch.h index 217f319bbe..725715ff6e 100644 --- a/lib/librte_eal/common/include/generic/rte_prefetch.h +++ b/lib/librte_eal/common/include/generic/rte_prefetch.h @@ -1,7 +1,7 @@ /*- * BSD LICENSE * - * Copyright(c) 2010-2014 Intel Corporation. All rights reserved. + * Copyright(c) 2010-2015 Intel Corporation. All rights reserved. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -51,14 +51,14 @@ * @param p * Address to prefetch */ -static inline void rte_prefetch0(volatile void *p); +static inline void rte_prefetch0(const volatile void *p); /** * Prefetch a cache line into all cache levels except the 0th cache level. * @param p * Address to prefetch */ -static inline void rte_prefetch1(volatile void *p); +static inline void rte_prefetch1(const volatile void *p); /** * Prefetch a cache line into all cache levels except the 0th and 1th cache @@ -66,6 +66,6 @@ static inline void rte_prefetch1(volatile void *p); * @param p * Address to prefetch */ -static inline void rte_prefetch2(volatile void *p); +static inline void rte_prefetch2(const volatile void *p); #endif /* _RTE_PREFETCH_H_ */