diff options
Diffstat (limited to 'arch/microblaze/include/asm/system.h')
| -rw-r--r-- | arch/microblaze/include/asm/system.h | 14 | 
1 files changed, 14 insertions, 0 deletions
diff --git a/arch/microblaze/include/asm/system.h b/arch/microblaze/include/asm/system.h index 157970688b2..48c4f0335e3 100644 --- a/arch/microblaze/include/asm/system.h +++ b/arch/microblaze/include/asm/system.h @@ -12,6 +12,7 @@  #include <asm/registers.h>  #include <asm/setup.h>  #include <asm/irqflags.h> +#include <asm/cache.h>  #include <asm-generic/cmpxchg.h>  #include <asm-generic/cmpxchg-local.h> @@ -87,10 +88,23 @@ void free_initmem(void);  extern char *klimit;  extern void ret_from_fork(void); +extern void *alloc_maybe_bootmem(size_t size, gfp_t mask); +extern void *zalloc_maybe_bootmem(size_t size, gfp_t mask); +  #ifdef CONFIG_DEBUG_FS  extern struct dentry *of_debugfs_root;  #endif  #define arch_align_stack(x) (x) +/* + * MicroBlaze doesn't handle unaligned accesses in hardware. + * + * Based on this we force the IP header alignment in network drivers. + * We also modify NET_SKB_PAD to be a cacheline in size, thus maintaining + * cacheline alignment of buffers. + */ +#define NET_IP_ALIGN	2 +#define NET_SKB_PAD	L1_CACHE_BYTES +  #endif /* _ASM_MICROBLAZE_SYSTEM_H */  |