diff options
| author | Tejun Heo <tj@kernel.org> | 2010-01-04 19:17:33 -0500 |
|---|---|---|
| committer | Tejun Heo <tj@kernel.org> | 2010-01-04 19:17:33 -0500 |
| commit | 32032df6c2f6c9c6b2ada2ce42322231824f70c2 (patch) | |
| tree | b1ce838a37044bb38dfc128e2116ca35630e629a /include/asm-generic | |
| parent | 22b737f4c75197372d64afc6ed1bccd58c00e549 (diff) | |
| parent | c5974b835a909ff15c3b7e6cf6789b5eb919f419 (diff) | |
Merge branch 'master' into percpu
Conflicts:
arch/powerpc/platforms/pseries/hvCall.S
include/linux/percpu.h
Diffstat (limited to 'include/asm-generic')
| -rw-r--r-- | include/asm-generic/bitops/atomic.h | 10 | ||||
| -rw-r--r-- | include/asm-generic/bug.h | 8 | ||||
| -rw-r--r-- | include/asm-generic/cacheflush.h | 1 | ||||
| -rw-r--r-- | include/asm-generic/fcntl.h | 46 | ||||
| -rw-r--r-- | include/asm-generic/gpio.h | 9 | ||||
| -rw-r--r-- | include/asm-generic/hardirq.h | 2 | ||||
| -rw-r--r-- | include/asm-generic/memory_model.h | 2 | ||||
| -rw-r--r-- | include/asm-generic/mman-common.h | 6 | ||||
| -rw-r--r-- | include/asm-generic/socket.h | 1 | ||||
| -rw-r--r-- | include/asm-generic/unistd.h | 12 | ||||
| -rw-r--r-- | include/asm-generic/vmlinux.lds.h | 8 |
11 files changed, 75 insertions, 30 deletions
diff --git a/include/asm-generic/bitops/atomic.h b/include/asm-generic/bitops/atomic.h index c8946465e63a..ecc44a8e2b44 100644 --- a/include/asm-generic/bitops/atomic.h +++ b/include/asm-generic/bitops/atomic.h | |||
| @@ -15,19 +15,19 @@ | |||
| 15 | # define ATOMIC_HASH_SIZE 4 | 15 | # define ATOMIC_HASH_SIZE 4 |
| 16 | # define ATOMIC_HASH(a) (&(__atomic_hash[ (((unsigned long) a)/L1_CACHE_BYTES) & (ATOMIC_HASH_SIZE-1) ])) | 16 | # define ATOMIC_HASH(a) (&(__atomic_hash[ (((unsigned long) a)/L1_CACHE_BYTES) & (ATOMIC_HASH_SIZE-1) ])) |
| 17 | 17 | ||
| 18 | extern raw_spinlock_t __atomic_hash[ATOMIC_HASH_SIZE] __lock_aligned; | 18 | extern arch_spinlock_t __atomic_hash[ATOMIC_HASH_SIZE] __lock_aligned; |
| 19 | 19 | ||
| 20 | /* Can't use raw_spin_lock_irq because of #include problems, so | 20 | /* Can't use raw_spin_lock_irq because of #include problems, so |
| 21 | * this is the substitute */ | 21 | * this is the substitute */ |
| 22 | #define _atomic_spin_lock_irqsave(l,f) do { \ | 22 | #define _atomic_spin_lock_irqsave(l,f) do { \ |
| 23 | raw_spinlock_t *s = ATOMIC_HASH(l); \ | 23 | arch_spinlock_t *s = ATOMIC_HASH(l); \ |
| 24 | local_irq_save(f); \ | 24 | local_irq_save(f); \ |
| 25 | __raw_spin_lock(s); \ | 25 | arch_spin_lock(s); \ |
| 26 | } while(0) | 26 | } while(0) |
| 27 | 27 | ||
| 28 | #define _atomic_spin_unlock_irqrestore(l,f) do { \ | 28 | #define _atomic_spin_unlock_irqrestore(l,f) do { \ |
| 29 | raw_spinlock_t *s = ATOMIC_HASH(l); \ | 29 | arch_spinlock_t *s = ATOMIC_HASH(l); \ |
| 30 | __raw_spin_unlock(s); \ | 30 | arch_spin_unlock(s); \ |
| 31 | local_irq_restore(f); \ | 31 | local_irq_restore(f); \ |
| 32 | } while(0) | 32 | } while(0) |
| 33 | 33 | ||
diff --git a/include/asm-generic/bug.h b/include/asm-generic/bug.h index 4b6755984d24..18c435d7c082 100644 --- a/include/asm-generic/bug.h +++ b/include/asm-generic/bug.h | |||
| @@ -113,22 +113,22 @@ extern void warn_slowpath_null(const char *file, const int line); | |||
| 113 | #endif | 113 | #endif |
| 114 | 114 | ||
| 115 | #define WARN_ON_ONCE(condition) ({ \ | 115 | #define WARN_ON_ONCE(condition) ({ \ |
| 116 | static int __warned; \ | 116 | static bool __warned; \ |
| 117 | int __ret_warn_once = !!(condition); \ | 117 | int __ret_warn_once = !!(condition); \ |
| 118 | \ | 118 | \ |
| 119 | if (unlikely(__ret_warn_once)) \ | 119 | if (unlikely(__ret_warn_once)) \ |
| 120 | if (WARN_ON(!__warned)) \ | 120 | if (WARN_ON(!__warned)) \ |
| 121 | __warned = 1; \ | 121 | __warned = true; \ |
| 122 | unlikely(__ret_warn_once); \ | 122 | unlikely(__ret_warn_once); \ |
| 123 | }) | 123 | }) |
| 124 | 124 | ||
| 125 | #define WARN_ONCE(condition, format...) ({ \ | 125 | #define WARN_ONCE(condition, format...) ({ \ |
| 126 | static int __warned; \ | 126 | static bool __warned; \ |
| 127 | int __ret_warn_once = !!(condition); \ | 127 | int __ret_warn_once = !!(condition); \ |
| 128 | \ | 128 | \ |
| 129 | if (unlikely(__ret_warn_once)) \ | 129 | if (unlikely(__ret_warn_once)) \ |
| 130 | if (WARN(!__warned, format)) \ | 130 | if (WARN(!__warned, format)) \ |
| 131 | __warned = 1; \ | 131 | __warned = true; \ |
| 132 | unlikely(__ret_warn_once); \ | 132 | unlikely(__ret_warn_once); \ |
| 133 | }) | 133 | }) |
| 134 | 134 | ||
diff --git a/include/asm-generic/cacheflush.h b/include/asm-generic/cacheflush.h index ba4ec39a1131..57b5c3c82e86 100644 --- a/include/asm-generic/cacheflush.h +++ b/include/asm-generic/cacheflush.h | |||
| @@ -13,6 +13,7 @@ | |||
| 13 | #define flush_cache_dup_mm(mm) do { } while (0) | 13 | #define flush_cache_dup_mm(mm) do { } while (0) |
| 14 | #define flush_cache_range(vma, start, end) do { } while (0) | 14 | #define flush_cache_range(vma, start, end) do { } while (0) |
| 15 | #define flush_cache_page(vma, vmaddr, pfn) do { } while (0) | 15 | #define flush_cache_page(vma, vmaddr, pfn) do { } while (0) |
| 16 | #define ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE 0 | ||
| 16 | #define flush_dcache_page(page) do { } while (0) | 17 | #define flush_dcache_page(page) do { } while (0) |
| 17 | #define flush_dcache_mmap_lock(mapping) do { } while (0) | 18 | #define flush_dcache_mmap_lock(mapping) do { } while (0) |
| 18 | #define flush_dcache_mmap_unlock(mapping) do { } while (0) | 19 | #define flush_dcache_mmap_unlock(mapping) do { } while (0) |
diff --git a/include/asm-generic/fcntl.h b/include/asm-generic/fcntl.h index 0c3dd8603927..fcd268ce0674 100644 --- a/include/asm-generic/fcntl.h +++ b/include/asm-generic/fcntl.h | |||
| @@ -3,8 +3,6 @@ | |||
| 3 | 3 | ||
| 4 | #include <linux/types.h> | 4 | #include <linux/types.h> |
| 5 | 5 | ||
| 6 | /* open/fcntl - O_SYNC is only implemented on blocks devices and on files | ||
| 7 | located on an ext2 file system */ | ||
| 8 | #define O_ACCMODE 00000003 | 6 | #define O_ACCMODE 00000003 |
| 9 | #define O_RDONLY 00000000 | 7 | #define O_RDONLY 00000000 |
| 10 | #define O_WRONLY 00000001 | 8 | #define O_WRONLY 00000001 |
| @@ -27,8 +25,8 @@ | |||
| 27 | #ifndef O_NONBLOCK | 25 | #ifndef O_NONBLOCK |
| 28 | #define O_NONBLOCK 00004000 | 26 | #define O_NONBLOCK 00004000 |
| 29 | #endif | 27 | #endif |
| 30 | #ifndef O_SYNC | 28 | #ifndef O_DSYNC |
| 31 | #define O_SYNC 00010000 | 29 | #define O_DSYNC 00010000 /* used to be O_SYNC, see below */ |
| 32 | #endif | 30 | #endif |
| 33 | #ifndef FASYNC | 31 | #ifndef FASYNC |
| 34 | #define FASYNC 00020000 /* fcntl, for BSD compatibility */ | 32 | #define FASYNC 00020000 /* fcntl, for BSD compatibility */ |
| @@ -51,6 +49,25 @@ | |||
| 51 | #ifndef O_CLOEXEC | 49 | #ifndef O_CLOEXEC |
| 52 | #define O_CLOEXEC 02000000 /* set close_on_exec */ | 50 | #define O_CLOEXEC 02000000 /* set close_on_exec */ |
| 53 | #endif | 51 | #endif |
| 52 | |||
| 53 | /* | ||
| 54 | * Before Linux 2.6.33 only O_DSYNC semantics were implemented, but using | ||
| 55 | * the O_SYNC flag. We continue to use the existing numerical value | ||
| 56 | * for O_DSYNC semantics now, but using the correct symbolic name for it. | ||
| 57 | * This new value is used to request true Posix O_SYNC semantics. It is | ||
| 58 | * defined in this strange way to make sure applications compiled against | ||
| 59 | * new headers get at least O_DSYNC semantics on older kernels. | ||
| 60 | * | ||
| 61 | * This has the nice side-effect that we can simply test for O_DSYNC | ||
| 62 | * wherever we do not care if O_DSYNC or O_SYNC is used. | ||
| 63 | * | ||
| 64 | * Note: __O_SYNC must never be used directly. | ||
| 65 | */ | ||
| 66 | #ifndef O_SYNC | ||
| 67 | #define __O_SYNC 04000000 | ||
| 68 | #define O_SYNC (__O_SYNC|O_DSYNC) | ||
| 69 | #endif | ||
| 70 | |||
| 54 | #ifndef O_NDELAY | 71 | #ifndef O_NDELAY |
| 55 | #define O_NDELAY O_NONBLOCK | 72 | #define O_NDELAY O_NONBLOCK |
| 56 | #endif | 73 | #endif |
| @@ -73,14 +90,23 @@ | |||
| 73 | #define F_SETSIG 10 /* for sockets. */ | 90 | #define F_SETSIG 10 /* for sockets. */ |
| 74 | #define F_GETSIG 11 /* for sockets. */ | 91 | #define F_GETSIG 11 /* for sockets. */ |
| 75 | #endif | 92 | #endif |
| 93 | |||
| 94 | #ifndef CONFIG_64BIT | ||
| 95 | #ifndef F_GETLK64 | ||
| 96 | #define F_GETLK64 12 /* using 'struct flock64' */ | ||
| 97 | #define F_SETLK64 13 | ||
| 98 | #define F_SETLKW64 14 | ||
| 99 | #endif | ||
| 100 | #endif | ||
| 101 | |||
| 76 | #ifndef F_SETOWN_EX | 102 | #ifndef F_SETOWN_EX |
| 77 | #define F_SETOWN_EX 12 | 103 | #define F_SETOWN_EX 15 |
| 78 | #define F_GETOWN_EX 13 | 104 | #define F_GETOWN_EX 16 |
| 79 | #endif | 105 | #endif |
| 80 | 106 | ||
| 81 | #define F_OWNER_TID 0 | 107 | #define F_OWNER_TID 0 |
| 82 | #define F_OWNER_PID 1 | 108 | #define F_OWNER_PID 1 |
| 83 | #define F_OWNER_GID 2 | 109 | #define F_OWNER_PGRP 2 |
| 84 | 110 | ||
| 85 | struct f_owner_ex { | 111 | struct f_owner_ex { |
| 86 | int type; | 112 | int type; |
| @@ -139,12 +165,6 @@ struct flock { | |||
| 139 | 165 | ||
| 140 | #ifndef CONFIG_64BIT | 166 | #ifndef CONFIG_64BIT |
| 141 | 167 | ||
| 142 | #ifndef F_GETLK64 | ||
| 143 | #define F_GETLK64 12 /* using 'struct flock64' */ | ||
| 144 | #define F_SETLK64 13 | ||
| 145 | #define F_SETLKW64 14 | ||
| 146 | #endif | ||
| 147 | |||
| 148 | #ifndef HAVE_ARCH_STRUCT_FLOCK64 | 168 | #ifndef HAVE_ARCH_STRUCT_FLOCK64 |
| 149 | #ifndef __ARCH_FLOCK64_PAD | 169 | #ifndef __ARCH_FLOCK64_PAD |
| 150 | #define __ARCH_FLOCK64_PAD | 170 | #define __ARCH_FLOCK64_PAD |
diff --git a/include/asm-generic/gpio.h b/include/asm-generic/gpio.h index 66d6106a2067..485eeb6c4ef3 100644 --- a/include/asm-generic/gpio.h +++ b/include/asm-generic/gpio.h | |||
| @@ -28,6 +28,7 @@ static inline int gpio_is_valid(int number) | |||
| 28 | return ((unsigned)number) < ARCH_NR_GPIOS; | 28 | return ((unsigned)number) < ARCH_NR_GPIOS; |
| 29 | } | 29 | } |
| 30 | 30 | ||
| 31 | struct device; | ||
| 31 | struct seq_file; | 32 | struct seq_file; |
| 32 | struct module; | 33 | struct module; |
| 33 | 34 | ||
| @@ -144,6 +145,7 @@ extern int __gpio_to_irq(unsigned gpio); | |||
| 144 | extern int gpio_export(unsigned gpio, bool direction_may_change); | 145 | extern int gpio_export(unsigned gpio, bool direction_may_change); |
| 145 | extern int gpio_export_link(struct device *dev, const char *name, | 146 | extern int gpio_export_link(struct device *dev, const char *name, |
| 146 | unsigned gpio); | 147 | unsigned gpio); |
| 148 | extern int gpio_sysfs_set_active_low(unsigned gpio, int value); | ||
| 147 | extern void gpio_unexport(unsigned gpio); | 149 | extern void gpio_unexport(unsigned gpio); |
| 148 | 150 | ||
| 149 | #endif /* CONFIG_GPIO_SYSFS */ | 151 | #endif /* CONFIG_GPIO_SYSFS */ |
| @@ -181,6 +183,8 @@ static inline void gpio_set_value_cansleep(unsigned gpio, int value) | |||
| 181 | 183 | ||
| 182 | #ifndef CONFIG_GPIO_SYSFS | 184 | #ifndef CONFIG_GPIO_SYSFS |
| 183 | 185 | ||
| 186 | struct device; | ||
| 187 | |||
| 184 | /* sysfs support is only available with gpiolib, where it's optional */ | 188 | /* sysfs support is only available with gpiolib, where it's optional */ |
| 185 | 189 | ||
| 186 | static inline int gpio_export(unsigned gpio, bool direction_may_change) | 190 | static inline int gpio_export(unsigned gpio, bool direction_may_change) |
| @@ -194,6 +198,11 @@ static inline int gpio_export_link(struct device *dev, const char *name, | |||
| 194 | return -ENOSYS; | 198 | return -ENOSYS; |
| 195 | } | 199 | } |
| 196 | 200 | ||
| 201 | static inline int gpio_sysfs_set_active_low(unsigned gpio, int value) | ||
| 202 | { | ||
| 203 | return -ENOSYS; | ||
| 204 | } | ||
| 205 | |||
| 197 | static inline void gpio_unexport(unsigned gpio) | 206 | static inline void gpio_unexport(unsigned gpio) |
| 198 | { | 207 | { |
| 199 | } | 208 | } |
diff --git a/include/asm-generic/hardirq.h b/include/asm-generic/hardirq.h index 23bb4dad4962..62f59080e5cc 100644 --- a/include/asm-generic/hardirq.h +++ b/include/asm-generic/hardirq.h | |||
| @@ -6,7 +6,7 @@ | |||
| 6 | #include <linux/irq.h> | 6 | #include <linux/irq.h> |
| 7 | 7 | ||
| 8 | typedef struct { | 8 | typedef struct { |
| 9 | unsigned long __softirq_pending; | 9 | unsigned int __softirq_pending; |
| 10 | } ____cacheline_aligned irq_cpustat_t; | 10 | } ____cacheline_aligned irq_cpustat_t; |
| 11 | 11 | ||
| 12 | #include <linux/irq_cpustat.h> /* Standard mappings for irq_cpustat_t above */ | 12 | #include <linux/irq_cpustat.h> /* Standard mappings for irq_cpustat_t above */ |
diff --git a/include/asm-generic/memory_model.h b/include/asm-generic/memory_model.h index 4c8d0afae711..fb2d63f13f4c 100644 --- a/include/asm-generic/memory_model.h +++ b/include/asm-generic/memory_model.h | |||
| @@ -47,7 +47,7 @@ | |||
| 47 | 47 | ||
| 48 | #elif defined(CONFIG_SPARSEMEM_VMEMMAP) | 48 | #elif defined(CONFIG_SPARSEMEM_VMEMMAP) |
| 49 | 49 | ||
| 50 | /* memmap is virtually contigious. */ | 50 | /* memmap is virtually contiguous. */ |
| 51 | #define __pfn_to_page(pfn) (vmemmap + (pfn)) | 51 | #define __pfn_to_page(pfn) (vmemmap + (pfn)) |
| 52 | #define __page_to_pfn(page) (unsigned long)((page) - vmemmap) | 52 | #define __page_to_pfn(page) (unsigned long)((page) - vmemmap) |
| 53 | 53 | ||
diff --git a/include/asm-generic/mman-common.h b/include/asm-generic/mman-common.h index 5ee13b2fd223..3da9e2742fa0 100644 --- a/include/asm-generic/mman-common.h +++ b/include/asm-generic/mman-common.h | |||
| @@ -19,6 +19,11 @@ | |||
| 19 | #define MAP_TYPE 0x0f /* Mask for type of mapping */ | 19 | #define MAP_TYPE 0x0f /* Mask for type of mapping */ |
| 20 | #define MAP_FIXED 0x10 /* Interpret addr exactly */ | 20 | #define MAP_FIXED 0x10 /* Interpret addr exactly */ |
| 21 | #define MAP_ANONYMOUS 0x20 /* don't use a file */ | 21 | #define MAP_ANONYMOUS 0x20 /* don't use a file */ |
| 22 | #ifdef CONFIG_MMAP_ALLOW_UNINITIALIZED | ||
| 23 | # define MAP_UNINITIALIZED 0x4000000 /* For anonymous mmap, memory could be uninitialized */ | ||
| 24 | #else | ||
| 25 | # define MAP_UNINITIALIZED 0x0 /* Don't support this flag */ | ||
| 26 | #endif | ||
| 22 | 27 | ||
| 23 | #define MS_ASYNC 1 /* sync memory asynchronously */ | 28 | #define MS_ASYNC 1 /* sync memory asynchronously */ |
| 24 | #define MS_INVALIDATE 2 /* invalidate the caches */ | 29 | #define MS_INVALIDATE 2 /* invalidate the caches */ |
| @@ -35,6 +40,7 @@ | |||
| 35 | #define MADV_DONTFORK 10 /* don't inherit across fork */ | 40 | #define MADV_DONTFORK 10 /* don't inherit across fork */ |
| 36 | #define MADV_DOFORK 11 /* do inherit across fork */ | 41 | #define MADV_DOFORK 11 /* do inherit across fork */ |
| 37 | #define MADV_HWPOISON 100 /* poison a page for testing */ | 42 | #define MADV_HWPOISON 100 /* poison a page for testing */ |
| 43 | #define MADV_SOFT_OFFLINE 101 /* soft offline page for testing */ | ||
| 38 | 44 | ||
| 39 | #define MADV_MERGEABLE 12 /* KSM may merge identical pages */ | 45 | #define MADV_MERGEABLE 12 /* KSM may merge identical pages */ |
| 40 | #define MADV_UNMERGEABLE 13 /* KSM may not merge identical pages */ | 46 | #define MADV_UNMERGEABLE 13 /* KSM may not merge identical pages */ |
diff --git a/include/asm-generic/socket.h b/include/asm-generic/socket.h index 538991cef6f0..9a6115e7cf63 100644 --- a/include/asm-generic/socket.h +++ b/include/asm-generic/socket.h | |||
| @@ -63,4 +63,5 @@ | |||
| 63 | #define SO_PROTOCOL 38 | 63 | #define SO_PROTOCOL 38 |
| 64 | #define SO_DOMAIN 39 | 64 | #define SO_DOMAIN 39 |
| 65 | 65 | ||
| 66 | #define SO_RXQ_OVFL 40 | ||
| 66 | #endif /* __ASM_GENERIC_SOCKET_H */ | 67 | #endif /* __ASM_GENERIC_SOCKET_H */ |
diff --git a/include/asm-generic/unistd.h b/include/asm-generic/unistd.h index d76b66acea95..6a0b30f78a62 100644 --- a/include/asm-generic/unistd.h +++ b/include/asm-generic/unistd.h | |||
| @@ -622,16 +622,20 @@ __SYSCALL(__NR_move_pages, sys_move_pages) | |||
| 622 | __SYSCALL(__NR_rt_tgsigqueueinfo, sys_rt_tgsigqueueinfo) | 622 | __SYSCALL(__NR_rt_tgsigqueueinfo, sys_rt_tgsigqueueinfo) |
| 623 | #define __NR_perf_event_open 241 | 623 | #define __NR_perf_event_open 241 |
| 624 | __SYSCALL(__NR_perf_event_open, sys_perf_event_open) | 624 | __SYSCALL(__NR_perf_event_open, sys_perf_event_open) |
| 625 | #define __NR_accept4 242 | ||
| 626 | __SYSCALL(__NR_accept4, sys_accept4) | ||
| 627 | #define __NR_recvmmsg 243 | ||
| 628 | __SYSCALL(__NR_recvmmsg, sys_recvmmsg) | ||
| 625 | 629 | ||
| 626 | #undef __NR_syscalls | 630 | #undef __NR_syscalls |
| 627 | #define __NR_syscalls 242 | 631 | #define __NR_syscalls 244 |
| 628 | 632 | ||
| 629 | /* | 633 | /* |
| 630 | * All syscalls below here should go away really, | 634 | * All syscalls below here should go away really, |
| 631 | * these are provided for both review and as a porting | 635 | * these are provided for both review and as a porting |
| 632 | * help for the C library version. | 636 | * help for the C library version. |
| 633 | * | 637 | * |
| 634 | * Last chance: are any of these important enought to | 638 | * Last chance: are any of these important enough to |
| 635 | * enable by default? | 639 | * enable by default? |
| 636 | */ | 640 | */ |
| 637 | #ifdef __ARCH_WANT_SYSCALL_NO_AT | 641 | #ifdef __ARCH_WANT_SYSCALL_NO_AT |
| @@ -802,7 +806,7 @@ __SYSCALL(__NR_fork, sys_ni_syscall) | |||
| 802 | #define __NR_statfs __NR3264_statfs | 806 | #define __NR_statfs __NR3264_statfs |
| 803 | #define __NR_fstatfs __NR3264_fstatfs | 807 | #define __NR_fstatfs __NR3264_fstatfs |
| 804 | #define __NR_truncate __NR3264_truncate | 808 | #define __NR_truncate __NR3264_truncate |
| 805 | #define __NR_ftruncate __NR3264_truncate | 809 | #define __NR_ftruncate __NR3264_ftruncate |
| 806 | #define __NR_lseek __NR3264_lseek | 810 | #define __NR_lseek __NR3264_lseek |
| 807 | #define __NR_sendfile __NR3264_sendfile | 811 | #define __NR_sendfile __NR3264_sendfile |
| 808 | #define __NR_newfstatat __NR3264_fstatat | 812 | #define __NR_newfstatat __NR3264_fstatat |
| @@ -818,7 +822,7 @@ __SYSCALL(__NR_fork, sys_ni_syscall) | |||
| 818 | #define __NR_statfs64 __NR3264_statfs | 822 | #define __NR_statfs64 __NR3264_statfs |
| 819 | #define __NR_fstatfs64 __NR3264_fstatfs | 823 | #define __NR_fstatfs64 __NR3264_fstatfs |
| 820 | #define __NR_truncate64 __NR3264_truncate | 824 | #define __NR_truncate64 __NR3264_truncate |
| 821 | #define __NR_ftruncate64 __NR3264_truncate | 825 | #define __NR_ftruncate64 __NR3264_ftruncate |
| 822 | #define __NR_llseek __NR3264_lseek | 826 | #define __NR_llseek __NR3264_lseek |
| 823 | #define __NR_sendfile64 __NR3264_sendfile | 827 | #define __NR_sendfile64 __NR3264_sendfile |
| 824 | #define __NR_fstatat64 __NR3264_fstatat | 828 | #define __NR_fstatat64 __NR3264_fstatat |
diff --git a/include/asm-generic/vmlinux.lds.h b/include/asm-generic/vmlinux.lds.h index b6e818f4b247..67e652068e0e 100644 --- a/include/asm-generic/vmlinux.lds.h +++ b/include/asm-generic/vmlinux.lds.h | |||
| @@ -52,8 +52,12 @@ | |||
| 52 | #define LOAD_OFFSET 0 | 52 | #define LOAD_OFFSET 0 |
| 53 | #endif | 53 | #endif |
| 54 | 54 | ||
| 55 | #ifndef VMLINUX_SYMBOL | 55 | #ifndef SYMBOL_PREFIX |
| 56 | #define VMLINUX_SYMBOL(_sym_) _sym_ | 56 | #define VMLINUX_SYMBOL(sym) sym |
| 57 | #else | ||
| 58 | #define PASTE2(x,y) x##y | ||
| 59 | #define PASTE(x,y) PASTE2(x,y) | ||
| 60 | #define VMLINUX_SYMBOL(sym) PASTE(SYMBOL_PREFIX, sym) | ||
| 57 | #endif | 61 | #endif |
| 58 | 62 | ||
| 59 | /* Align . to a 8 byte boundary equals to maximum function alignment. */ | 63 | /* Align . to a 8 byte boundary equals to maximum function alignment. */ |
