aboutsummaryrefslogtreecommitdiffstats
path: root/mm/vmalloc.c
diff options
context:
space:
mode:
authorGideon Israel Dsouza <gidisrael@gmail.com>2014-04-07 18:37:26 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2014-04-07 19:35:54 -0400
commit3b32123d734cb414e366b35a3b2142a995f9d1a0 (patch)
treefd9790206b59cd053bf72132da9a70ce3d8a21e5 /mm/vmalloc.c
parent615d6e8756c87149f2d4c1b93d471bca002bd849 (diff)
mm: use macros from compiler.h instead of __attribute__((...))
To increase compiler portability there is <linux/compiler.h> which provides convenience macros for various gcc constructs. Eg: __weak for __attribute__((weak)). I've replaced all instances of gcc attributes with the right macro in the memory management (/mm) subsystem. [akpm@linux-foundation.org: while-we're-there consistency tweaks] Signed-off-by: Gideon Israel Dsouza <gidisrael@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/vmalloc.c')
-rw-r--r--mm/vmalloc.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/mm/vmalloc.c b/mm/vmalloc.c
index 0fdf96803c5b..a7b522f4851d 100644
--- a/mm/vmalloc.c
+++ b/mm/vmalloc.c
@@ -27,7 +27,9 @@
27#include <linux/pfn.h> 27#include <linux/pfn.h>
28#include <linux/kmemleak.h> 28#include <linux/kmemleak.h>
29#include <linux/atomic.h> 29#include <linux/atomic.h>
30#include <linux/compiler.h>
30#include <linux/llist.h> 31#include <linux/llist.h>
32
31#include <asm/uaccess.h> 33#include <asm/uaccess.h>
32#include <asm/tlbflush.h> 34#include <asm/tlbflush.h>
33#include <asm/shmparam.h> 35#include <asm/shmparam.h>
@@ -2181,7 +2183,7 @@ EXPORT_SYMBOL(remap_vmalloc_range);
2181 * Implement a stub for vmalloc_sync_all() if the architecture chose not to 2183 * Implement a stub for vmalloc_sync_all() if the architecture chose not to
2182 * have one. 2184 * have one.
2183 */ 2185 */
2184void __attribute__((weak)) vmalloc_sync_all(void) 2186void __weak vmalloc_sync_all(void)
2185{ 2187{
2186} 2188}
2187 2189