mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-05 07:56:48 +07:00
0ef36bd2b3
On parisc, SHMLBA was defined to 0x00400000 (4MB) to reflect that we need to take care of our caches for shared mappings. But actually, we can map a file at any multiple address of PAGE_SIZE, so let us correct that now with a value of PAGE_SIZE for SHMLBA. Instead we now take care of this cache colouring via the constant SHM_COLOUR while we map shared pages. Signed-off-by: Helge Deller <deller@gmx.de> CC: Jeroen Roovers <jer@gentoo.org> CC: John David Anglin <dave.anglin@bell.net> CC: Carlos O'Donell <carlos@systemhalted.org> Cc: stable@kernel.org [3.13+]
8 lines
224 B
C
8 lines
224 B
C
#ifndef _ASMPARISC_SHMPARAM_H
|
|
#define _ASMPARISC_SHMPARAM_H
|
|
|
|
#define SHMLBA PAGE_SIZE /* attach addr a multiple of this */
|
|
#define SHM_COLOUR 0x00400000 /* shared mappings colouring */
|
|
|
|
#endif /* _ASMPARISC_SHMPARAM_H */
|