mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-04 10:33:13 +00:00

While the GCC and Clang compilers already define __ASSEMBLER__ automatically when compiling assembly code, __ASSEMBLY__ is a macro that only gets defined by the Makefiles in the kernel. This can be very confusing when switching between userspace and kernelspace coding, or when dealing with uapi headers that rather should use __ASSEMBLER__ instead. So let's standardize on the __ASSEMBLER__ macro that is provided by the compilers now. This is a completely mechanical patch (done with a simple "sed -i" statement). Cc: linux-snps-arc@lists.infradead.org Signed-off-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Vineet Gupta <vgupta@kernel.org>
35 lines
782 B
C
35 lines
782 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
|
|
*/
|
|
|
|
#ifndef _ASM_ARC_PGTABLE_H
|
|
#define _ASM_ARC_PGTABLE_H
|
|
|
|
#include <linux/bits.h>
|
|
|
|
#include <asm/pgtable-levels.h>
|
|
#include <asm/pgtable-bits-arcv2.h>
|
|
#include <asm/page.h>
|
|
#include <asm/mmu.h>
|
|
|
|
/*
|
|
* Number of entries a user land program use.
|
|
* TASK_SIZE is the maximum vaddr that can be used by a userland program.
|
|
*/
|
|
#define USER_PTRS_PER_PGD (TASK_SIZE / PGDIR_SIZE)
|
|
|
|
#ifndef __ASSEMBLER__
|
|
|
|
extern char empty_zero_page[PAGE_SIZE];
|
|
#define ZERO_PAGE(vaddr) (virt_to_page(empty_zero_page))
|
|
|
|
extern pgd_t swapper_pg_dir[] __aligned(PAGE_SIZE);
|
|
|
|
/* to cope with aliasing VIPT cache */
|
|
#define HAVE_ARCH_UNMAPPED_AREA
|
|
|
|
#endif /* __ASSEMBLER__ */
|
|
|
|
#endif
|