kernel: generic: Add kernel 4.14 support
[openwrt/staging/chunkeey.git] / target / linux / generic / pending-4.14 / 333-arc-enable-unaligned-access-in-kernel-mode.patch
1 From: Alexey Brodkin <abrodkin@synopsys.com>
2 Subject: arc: enable unaligned access in kernel mode
3
4 This enables misaligned access handling even in kernel mode.
5 Some wireless drivers (ath9k-htc and mt7601u) use misaligned accesses
6 here and there and to cope with that without fixing stuff in the drivers
7 we're just gracefully handling it on ARC.
8
9 Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
10 ---
11 arch/arc/kernel/unaligned.c | 2 +-
12 1 file changed, 1 insertion(+), 1 deletion(-)
13
14 --- a/arch/arc/kernel/unaligned.c
15 +++ b/arch/arc/kernel/unaligned.c
16 @@ -206,7 +206,7 @@ int misaligned_fixup(unsigned long addre
17 char buf[TASK_COMM_LEN];
18
19 /* handle user mode only and only if enabled by sysadmin */
20 - if (!user_mode(regs) || !unaligned_enabled)
21 + if (!unaligned_enabled)
22 return 1;
23
24 if (no_unaligned_warning) {