����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 74.208.127.88 / Your IP : 216.73.216.65 Web Server : Apache/2.4.41 (Ubuntu) System : Linux ubuntu 5.4.0-163-generic #180-Ubuntu SMP Tue Sep 5 13:21:23 UTC 2023 x86_64 User : www-data ( 33) PHP Version : 7.4.3-4ubuntu2.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/lib/modules/5.4.0-216-generic/build/arch/powerpc/include/asm/ |
Upload File : |
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_POWERPC_SECTIONS_H #define _ASM_POWERPC_SECTIONS_H #ifdef __KERNEL__ #include <linux/elf.h> #include <linux/uaccess.h> #define arch_is_kernel_initmem_freed arch_is_kernel_initmem_freed #include <asm-generic/sections.h> extern bool init_mem_is_free; static inline int arch_is_kernel_initmem_freed(unsigned long addr) { if (!init_mem_is_free) return 0; return addr >= (unsigned long)__init_begin && addr < (unsigned long)__init_end; } extern char __head_end[]; #ifdef __powerpc64__ extern char __start_interrupts[]; extern char __end_interrupts[]; extern char __prom_init_toc_start[]; extern char __prom_init_toc_end[]; #ifdef CONFIG_PPC_POWERNV extern char start_real_trampolines[]; extern char end_real_trampolines[]; extern char start_virt_trampolines[]; extern char end_virt_trampolines[]; #endif static inline int in_kernel_text(unsigned long addr) { if (addr >= (unsigned long)_stext && addr < (unsigned long)__init_end) return 1; return 0; } static inline unsigned long kernel_toc_addr(void) { /* Defined by the linker, see vmlinux.lds.S */ extern unsigned long __toc_start; /* * The TOC register (r2) points 32kB into the TOC, so that 64kB of * the TOC can be addressed using a single machine instruction. */ return (unsigned long)(&__toc_start) + 0x8000UL; } static inline int overlaps_interrupt_vector_text(unsigned long start, unsigned long end) { unsigned long real_start, real_end; real_start = __start_interrupts - _stext; real_end = __end_interrupts - _stext; return start < (unsigned long)__va(real_end) && (unsigned long)__va(real_start) < end; } static inline int overlaps_kernel_text(unsigned long start, unsigned long end) { return start < (unsigned long)__init_end && (unsigned long)_stext < end; } #ifdef PPC64_ELF_ABI_v1 #define HAVE_DEREFERENCE_FUNCTION_DESCRIPTOR 1 #undef dereference_function_descriptor static inline void *dereference_function_descriptor(void *ptr) { struct ppc64_opd_entry *desc = ptr; void *p; if (!probe_kernel_address(&desc->funcaddr, p)) ptr = p; return ptr; } #undef dereference_kernel_function_descriptor static inline void *dereference_kernel_function_descriptor(void *ptr) { if (ptr < (void *)__start_opd || ptr >= (void *)__end_opd) return ptr; return dereference_function_descriptor(ptr); } #endif /* PPC64_ELF_ABI_v1 */ #endif #endif /* __KERNEL__ */ #endif /* _ASM_POWERPC_SECTIONS_H */