Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'arc-4.1-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc

Pull ARC fixes from Vineet Gupta.

* tag 'arc-4.1-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc:
ARC: inline cache flush toggle helpers
ARC: With earlycon in use, retire EARLY_PRINTK
ARC: unbork !LLSC build

+3 -16
-13
arch/arc/Kconfig.debug
··· 2 2 3 3 source "lib/Kconfig.debug" 4 4 5 - config EARLY_PRINTK 6 - bool "Early printk" if EMBEDDED 7 - default y 8 - help 9 - Write kernel log output directly into the VGA buffer or to a serial 10 - port. 11 - 12 - This is useful for kernel debugging when your machine crashes very 13 - early before the console code is initialized. For normal operation 14 - it is not recommended because it looks ugly and doesn't cooperate 15 - with klogd/syslogd or the X server. You should normally N here, 16 - unless you want to debug such a crash. 17 - 18 5 config 16KSTACKS 19 6 bool "Use 16Kb for kernel stacks instead of 8Kb" 20 7 help
+1 -1
arch/arc/include/asm/atomic.h
··· 99 99 atomic_ops_unlock(flags); \ 100 100 } 101 101 102 - #define ATOMIC_OP_RETURN(op, c_op) \ 102 + #define ATOMIC_OP_RETURN(op, c_op, asm_op) \ 103 103 static inline int atomic_##op##_return(int i, atomic_t *v) \ 104 104 { \ 105 105 unsigned long flags; \
+2 -2
arch/arc/mm/cache_arc700.c
··· 266 266 * Machine specific helpers for Entire D-Cache or Per Line ops 267 267 */ 268 268 269 - static unsigned int __before_dc_op(const int op) 269 + static inline unsigned int __before_dc_op(const int op) 270 270 { 271 271 unsigned int reg = reg; 272 272 ··· 284 284 return reg; 285 285 } 286 286 287 - static void __after_dc_op(const int op, unsigned int reg) 287 + static inline void __after_dc_op(const int op, unsigned int reg) 288 288 { 289 289 if (op & OP_FLUSH) /* flush / flush-n-inv both wait */ 290 290 while (read_aux_reg(ARC_REG_DC_CTRL) & DC_CTRL_FLUSH_STATUS);