mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 12:11:40 +00:00
e4624435f3
Architecture-specific documentation is being moved into Documentation/arch/ as a way of cleaning up the top-level documentation directory and making the docs hierarchy more closely match the source hierarchy. Move Documentation/arm64 into arch/ (along with the Chinese equvalent translations) and fix up documentation references. Cc: Will Deacon <will@kernel.org> Cc: Alex Shi <alexs@kernel.org> Cc: Hu Haowen <src.res@email.cn> Cc: Paolo Bonzini <pbonzini@redhat.com> Acked-by: Catalin Marinas <catalin.marinas@arm.com> Reviewed-by: Yantengsi <siyanteng@loongson.cn> Signed-off-by: Jonathan Corbet <corbet@lwn.net>
27 lines
670 B
Bash
27 lines
670 B
Bash
#!/bin/sh
|
|
|
|
# Print out the KASAN_SHADOW_OFFSETS required to place the KASAN SHADOW
|
|
# start address at the top of the linear region
|
|
|
|
print_kasan_offset () {
|
|
printf "%02d\t" $1
|
|
printf "0x%08x00000000\n" $(( (0xffffffff & (-1 << ($1 - 1 - 32))) \
|
|
- (1 << (64 - 32 - $2)) ))
|
|
}
|
|
|
|
echo KASAN_SHADOW_SCALE_SHIFT = 3
|
|
printf "VABITS\tKASAN_SHADOW_OFFSET\n"
|
|
print_kasan_offset 48 3
|
|
print_kasan_offset 47 3
|
|
print_kasan_offset 42 3
|
|
print_kasan_offset 39 3
|
|
print_kasan_offset 36 3
|
|
echo
|
|
echo KASAN_SHADOW_SCALE_SHIFT = 4
|
|
printf "VABITS\tKASAN_SHADOW_OFFSET\n"
|
|
print_kasan_offset 48 4
|
|
print_kasan_offset 47 4
|
|
print_kasan_offset 42 4
|
|
print_kasan_offset 39 4
|
|
print_kasan_offset 36 4
|