[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] xen/arm: Constify address pointer for cache helpers
commit ddf92ce5351a8e5acd54573129279d125c3420e2 Author: Julien Grall <julien.grall@xxxxxxxxxx> AuthorDate: Tue Apr 22 14:14:16 2014 +0100 Commit: Ian Campbell <ian.campbell@xxxxxxxxxx> CommitDate: Fri May 2 13:14:10 2014 +0100 xen/arm: Constify address pointer for cache helpers The memory pointed by this pointer is not modified in clean_xen_dcache_va_range and clean_and_invalidate_xen_dcache_va_range. Constify it. This will allow us to use theses helpers later in code which use const. Signed-off-by: Julien Grall <julien.grall@xxxxxxxxxx> Acked-by: Ian Campbell <ian.campbell@xxxxxxxxxx> --- xen/include/asm-arm/page.h | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/xen/include/asm-arm/page.h b/xen/include/asm-arm/page.h index 0c0fd37..c38e9c9 100644 --- a/xen/include/asm-arm/page.h +++ b/xen/include/asm-arm/page.h @@ -260,9 +260,9 @@ extern size_t cacheline_bytes; /* Functions for flushing medium-sized areas. * if 'range' is large enough we might want to use model-specific * full-cache flushes. */ -static inline void clean_xen_dcache_va_range(void *p, unsigned long size) +static inline void clean_xen_dcache_va_range(const void *p, unsigned long size) { - void *end; + const void *end; dsb(sy); /* So the CPU issues all writes to the range */ for ( end = p + size; p < end; p += cacheline_bytes ) asm volatile (__clean_xen_dcache_one(0) : : "r" (p)); @@ -270,9 +270,9 @@ static inline void clean_xen_dcache_va_range(void *p, unsigned long size) } static inline void clean_and_invalidate_xen_dcache_va_range - (void *p, unsigned long size) + (const void *p, unsigned long size) { - void *end; + const void *end; dsb(sy); /* So the CPU issues all writes to the range */ for ( end = p + size; p < end; p += cacheline_bytes ) asm volatile (__clean_and_invalidate_xen_dcache_one(0) : : "r" (p)); -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |