[PATCH] staging: rtl8188eu: fix double unlock error in rtw_resume_process()

2016-09-30 Thread Wei Yongjun
d-By: Dan Carpenter Signed-off-by: Wei Yongjun diff --git a/drivers/staging/rtl8188eu/os_dep/usb_intf.c b/drivers/staging/rtl8188eu/os_dep/usb_intf.c index b2bc09e..68e1e6b 100644 --- a/drivers/staging/rtl8188eu/os_dep/usb_intf.c +++ b/drivers/staging/rtl8188eu/os_dep/usb_intf.c @@ -

[PATCH -next] staging: ks7010: convert list_for_each to entry variant

2016-10-18 Thread Wei Yongjun
From: Wei Yongjun convert list_for_each() to list_for_each_entry() where applicable. Signed-off-by: Wei Yongjun --- drivers/staging/ks7010/ks_hostif.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/drivers/staging/ks7010/ks_hostif.c b/drivers/staging/ks7010

[PATCH -next] staging: i4l: pcbit: remove duplicated include from capi.c

2016-10-18 Thread Wei Yongjun
From: Wei Yongjun Remove duplicated include. Signed-off-by: Wei Yongjun --- drivers/staging/i4l/pcbit/capi.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/staging/i4l/pcbit/capi.c b/drivers/staging/i4l/pcbit/capi.c index 91f2994..a6c4e00 100644 --- a/drivers/staging/i4l/pcbit

[PATCH -next] staging: ks7010: remove unused including

2016-10-18 Thread Wei Yongjun
From: Wei Yongjun Remove including that don't need it. Signed-off-by: Wei Yongjun --- drivers/staging/ks7010/ks_wlan.h | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/staging/ks7010/ks_wlan.h b/drivers/staging/ks7010/ks_wlan.h index 5851714..6981170 100644 --- a/drivers/st

[PATCH -next] staging: i4l: pcbit: drv: remove duplicated include from drv.c

2016-10-18 Thread Wei Yongjun
From: Wei Yongjun Remove duplicated include. Signed-off-by: Wei Yongjun --- drivers/staging/i4l/pcbit/drv.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/staging/i4l/pcbit/drv.c b/drivers/staging/i4l/pcbit/drv.c index 87b8522..89b0b5b 100644 --- a/drivers/staging/i4l/pcbit/drv.c

[PATCH -next] staging: ks7010: ks_wlan_net: Use setup_timer instead of init_timer and data fields

2016-10-18 Thread Wei Yongjun
From: Wei Yongjun Use setup_timer function instead of initializing timer with the function and data fields Signed-off-by: Wei Yongjun --- drivers/staging/ks7010/ks_wlan_net.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/drivers/staging/ks7010/ks_wlan_net.c b

Re: [PATCH -next] staging: i4l: pcbit: remove duplicated include from capi.c

2016-10-18 Thread Wei Yongjun
Hi Alexander, On 10/18/2016 11:30 PM, Alexander Alemayhu wrote: > On Tue, Oct 18, 2016 at 02:37:10PM +0000, Wei Yongjun wrote: >> From: Wei Yongjun >> >> Remove duplicated include. >> > How did you discover that? Just curious if you used any tooling. > I found

[PATCH -next] greybus: es2: fix error return code in ap_probe()

2016-10-19 Thread Wei Yongjun
From: Wei Yongjun Fix to return a negative error code from the es2_arpc_in_enable() error handling case instead of 0, as done elsewhere in this function. Fixes: 9d9d3777a9db ("greybus: es2: Add a new bulk in endpoint for APBridgeA RPC") Signed-off-by: Wei Yongjun --- drivers/stagi

[PATCH -next] drm/i915/gvt: fix return value check

2016-10-19 Thread Wei Yongjun
From: Wei Yongjun In case of error, the function i915_gem_object_create() returns ERR_PTR() not NULL. The NULL test in the return value check should be replaced with IS_ERR(). Signed-off-by: Wei Yongjun --- drivers/gpu/drm/i915/gvt/cmd_parser.c | 8 1 file changed, 4 insertions(+), 4

[PATCH -next] drm/mgag200: fix error return code in mgag200fb_create()

2016-08-15 Thread Wei Yongjun
Fix to return error code -ENOMEM from the vmalloc() error handling case instead of 0, as done elsewhere in this function. Fixes: aec9e12953e7 ("drm/mgag200: Fix error handling paths in fbdev driver") Signed-off-by: Wei Yongjun --- drivers/gpu/drm/mgag200/mgag200_fb.c | 4 +++- 1 file

[PATCH -next] dma: mv_xor: fix invalid use of sizeof in orion_ge00_switch_init()

2016-09-15 Thread Wei Yongjun
From: Wei Yongjun sizeof() when applied to a pointer typed expression gives the size of the pointer, not that of the pointed data. Fixes: fe158a17c1e0 ("ARM: orion: simplify orion_ge00_switch_init") Signed-off-by: Wei Yongjun --- arch/arm/plat-orion/common.c | 2 +- 1 file

[PATCH -next v2] ARM: orion: fix invalid use of sizeof in orion_ge00_switch_init()

2016-09-15 Thread Wei Yongjun
From: Wei Yongjun sizeof() when applied to a pointer typed expression gives the size of the pointer, not that of the pointed data. Fixes: fe158a17c1e0 ("ARM: orion: simplify orion_ge00_switch_init") Signed-off-by: Wei Yongjun --- v1 -> v2: fix file module name in subject ---

[PATCH -next] memory: atmel-ebi: fix return value check in at91_ebi_dev_disable()

2016-09-16 Thread Wei Yongjun
From: Wei Yongjun Fix the retrn value check which testing the wrong variable in at91_ebi_dev_disable(). Signed-off-by: Wei Yongjun --- drivers/memory/atmel-ebi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/memory/atmel-ebi.c b/drivers/memory/atmel-ebi.c index

[PATCH -next] memory: atmel-sdramc: use builtin_platform_driver to simplify the code

2016-09-16 Thread Wei Yongjun
From: Wei Yongjun Use the builtin_platform_driver() macro to make the code simpler. Signed-off-by: Wei Yongjun --- drivers/memory/atmel-sdramc.c | 6 +- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/drivers/memory/atmel-sdramc.c b/drivers/memory/atmel-sdramc.c index 12080b0

[PATCH -next] drm/i915: Fix non static symbol warning

2016-09-16 Thread Wei Yongjun
From: Wei Yongjun Fixes the following sparse warning: drivers/gpu/drm/i915/intel_dp.c:1527:5: warning: symbol 'intel_dp_compute_bpp' was not declared. Should it be static? Signed-off-by: Wei Yongjun --- drivers/gpu/drm/i915/intel_dp.c | 4 ++-- 1 file changed, 2 insertions(+), 2

[PATCH -next] ASoC: rt5663: fix sparse warnings

2016-09-16 Thread Wei Yongjun
From: Wei Yongjun Fixes the following sparse warnings: sound/soc/codecs/rt5663.c:1367:14: warning: duplicate const sound/soc/codecs/rt5663.c:1577:5: warning: symbol 'rt5663_button_detect' was not declared. Should it be static? sound/soc/codecs/rt5663.c:2857:24: warnin

[PATCH -next] ASoC: sti: fix missing clk_disable_unprepare() on error in uni_player_start()

2016-09-16 Thread Wei Yongjun
From: Wei Yongjun Fix the missing clk_disable_unprepare() before return from uni_player_start() in the error handling case. Signed-off-by: Wei Yongjun --- sound/soc/sti/uniperif_player.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sound/soc/sti/uniperif_player.c b

[PATCH -next] vme: fake: remove unexpected unlock in fake_master_set()

2016-09-16 Thread Wei Yongjun
From: Wei Yongjun image->lock is unlocked in some error handling path without take the lock, so remove those unexpected unlock. Fixes: 658bcdae9c67 ("vme: Adding Fake VME driver") Signed-off-by: Wei Yongjun --- drivers/vme/bridges/vme_fake.c | 3 --- 1 file changed, 3 deletions(-

[PATCH] drm/omap: fix return value check in dsi_bind()

2016-09-17 Thread Wei Yongjun
From: Wei Yongjun Fix the retrn value check which testing the wrong variable in dsi_bind(). Signed-off-by: Wei Yongjun --- drivers/gpu/drm/omapdrm/dss/dsi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/omapdrm/dss/dsi.c b/drivers/gpu/drm/omapdrm/dss

[PATCH -next] irqchip/irq-jcore-aic: fix non static symbol warning

2016-08-20 Thread Wei Yongjun
Fixes the following sparse warning: drivers/irqchip/irq-jcore-aic.c:47:12: warning: symbol 'aic_irq_of_init' was not declared. Should it be static? Signed-off-by: Wei Yongjun --- drivers/irqchip/irq-jcore-aic.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git

[PATCH -next] drm/i915: Fix non static symbol warning

2016-08-21 Thread Wei Yongjun
From: Wei Yongjun Fixes the following sparse warning: drivers/gpu/drm/i915/intel_hotplug.c:480:6: warning: symbol 'i915_hpd_poll_init_work' was not declared. Should it be static? Also move the '{' to new line. Signed-off-by: Wei Yongjun --- drivers/gpu/drm/i915/intel_

[PATCH -next] ASoC: max98371: Add terminate entry for i2c_device_id tables

2016-08-21 Thread Wei Yongjun
From: Wei Yongjun Make sure i2c_device_id tables are NULL terminated. Signed-off-by: Wei Yongjun --- sound/soc/codecs/max98371.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sound/soc/codecs/max98371.c b/sound/soc/codecs/max98371.c index 3053879..781be9ba 100644 --- a/sound/soc/codecs

[PATCH -next] staging: comedi: dt2811: fix non static symbol warnings

2016-08-23 Thread Wei Yongjun
From: Wei Yongjun Fixes the following sparse warnings: drivers/staging/comedi/drivers/dt2811.c:99:20: warning: symbol 'dt2811_clk_dividers' was not declared. Should it be static? drivers/staging/comedi/drivers/dt2811.c:103:20: warning: symbol 'dt2811_clk_multipliers' was

[PATCH -next] ARM: pxa: remove duplicated include from corgi.c

2016-08-23 Thread Wei Yongjun
Remove duplicated include. Signed-off-by: Wei Yongjun --- arch/arm/mach-pxa/corgi.c | 1 - 1 file changed, 1 deletion(-) diff --git a/arch/arm/mach-pxa/corgi.c b/arch/arm/mach-pxa/corgi.c index 10bfdb1..183cd34 100644 --- a/arch/arm/mach-pxa/corgi.c +++ b/arch/arm/mach-pxa/corgi.c @@ -35,7

[PATCH -next] ARM: pxa: remove duplicated include from spitz.c

2016-08-23 Thread Wei Yongjun
Remove duplicated include. Signed-off-by: Wei Yongjun --- arch/arm/mach-pxa/spitz.c | 1 - 1 file changed, 1 deletion(-) diff --git a/arch/arm/mach-pxa/spitz.c b/arch/arm/mach-pxa/spitz.c index 2c150bf..67d66c7 100644 --- a/arch/arm/mach-pxa/spitz.c +++ b/arch/arm/mach-pxa/spitz.c @@ -31,7

[PATCH -next] f2fs: fix non static symbol warning

2016-08-23 Thread Wei Yongjun
From: Wei Yongjun Fixes the following sparse warning: fs/f2fs/data.c:969:12: warning: symbol 'f2fs_grab_bio' was not declared. Should it be static? Signed-off-by: Wei Yongjun --- fs/f2fs/data.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/f2fs/data.c

[PATCH -next] ASoC: samsung: i2s: Add missing clk_disable_unprepare() on error in samsung_i2s_probe()

2016-08-23 Thread Wei Yongjun
Add the missing clk_disable_unprepare() before return from samsung_i2s_probe() in the error handling case. Signed-off-by: Wei Yongjun --- sound/soc/samsung/i2s.c | 8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/sound/soc/samsung/i2s.c b/sound/soc/samsung/i2s.c index

Re: [PATCH -next] ARM: pxa: remove duplicated include from spitz.c

2016-08-23 Thread Wei Yongjun
Hi Robert, On 08/24/2016 12:24 AM, Robert Jarzmik wrote: > Wei Yongjun writes: > >> Remove duplicated include. > How so duplicated ? Can you elaborate please ? > > Moreover, how do you do think symbol_get() can stay in spitz.c without having > this include ? file linux

[PATCH -next] ASoC: Intel: Skylake: Fix error return code in skl_probe()

2016-08-12 Thread Wei Yongjun
Fix to return error code -ENODEV from the error handling case instead of 0, as done elsewhere in this function. Fixes: 87b2bdf02278 ("ASoC: Intel: Skylake: Initialize NHLT table") Signed-off-by: Wei Yongjun --- sound/soc/intel/skylake/skl.c | 4 +++- 1 file changed, 3 insertions(+),

[tip:perf/core] perf report: Remove duplicated include

2013-03-21 Thread tip-bot for Wei Yongjun
Commit-ID: db3c6bf811581c626471a6aecdf0024575b707d7 Gitweb: http://git.kernel.org/tip/db3c6bf811581c626471a6aecdf0024575b707d7 Author: Wei Yongjun AuthorDate: Wed, 13 Mar 2013 12:24:42 +0800 Committer: Arnaldo Carvalho de Melo CommitDate: Fri, 15 Mar 2013 13:06:08 -0300 perf report

[tip:x86/platform] x86/olpc/xo1/sci: Don't call input_free_device () after input_unregister_device()

2013-04-24 Thread tip-bot for Wei Yongjun
Commit-ID: 3482e664dc7f44e0ffb1fcf1de7af74977748f31 Gitweb: http://git.kernel.org/tip/3482e664dc7f44e0ffb1fcf1de7af74977748f31 Author: Wei Yongjun AuthorDate: Wed, 24 Apr 2013 10:46:24 +0800 Committer: Ingo Molnar CommitDate: Wed, 24 Apr 2013 08:44:47 +0200 x86/olpc/xo1/sci: Don&#

[tip:perf/urgent] perf: Fix error return code

2013-04-14 Thread tip-bot for Wei Yongjun
Commit-ID: c481420248c6730246d2a1b1773d5d7007ae0835 Gitweb: http://git.kernel.org/tip/c481420248c6730246d2a1b1773d5d7007ae0835 Author: Wei Yongjun AuthorDate: Fri, 12 Apr 2013 11:05:54 +0800 Committer: Ingo Molnar CommitDate: Fri, 12 Apr 2013 06:33:56 +0200 perf: Fix error return code

[tip:irq/core] genirq: Make function __irq_do_set_handler() static

2016-09-25 Thread tip-bot for Wei Yongjun
Commit-ID: b8129a1f6aaaca02d92186acf19ceb545b4b489a Gitweb: http://git.kernel.org/tip/b8129a1f6aaaca02d92186acf19ceb545b4b489a Author: Wei Yongjun AuthorDate: Sun, 25 Sep 2016 15:36:39 + Committer: Thomas Gleixner CommitDate: Sun, 25 Sep 2016 16:46:52 -0400 genirq: Make function

[tip:irq/urgent] irqchip/exiu: Fix return value check in exiu_init()

2017-11-14 Thread tip-bot for Wei Yongjun
Commit-ID: 0e54705b0e01dcaf3eb2a496bb66d5f05012056b Gitweb: https://git.kernel.org/tip/0e54705b0e01dcaf3eb2a496bb66d5f05012056b Author: Wei Yongjun AuthorDate: Tue, 14 Nov 2017 06:57:28 + Committer: Thomas Gleixner CommitDate: Tue, 14 Nov 2017 11:27:22 +0100 irqchip/exiu: Fix

[tip:efi/core] efi/libstub/tpm: Make function efi_retrieve_tpm2_eventlog_1_2() static

2018-05-14 Thread tip-bot for Wei Yongjun
Commit-ID: 0add16c13f49bda5455d9418d479d6c89f7ab272 Gitweb: https://git.kernel.org/tip/0add16c13f49bda5455d9418d479d6c89f7ab272 Author: Wei Yongjun AuthorDate: Fri, 4 May 2018 07:59:57 +0200 Committer: Ingo Molnar CommitDate: Mon, 14 May 2018 08:57:48 +0200 efi/libstub/tpm: Make

[tip: x86/core] x86/kprobes: Move 'inline' to the beginning of the kprobe_is_ss() declaration

2021-03-25 Thread tip-bot2 for Wei Yongjun
The following commit has been merged into the x86/core branch of tip: Commit-ID: 2304d14db6595bea5292bece06c4c625b12d8f89 Gitweb: https://git.kernel.org/tip/2304d14db6595bea5292bece06c4c625b12d8f89 Author:Wei Yongjun AuthorDate:Wed, 24 Mar 2021 14:45:02 Committer

[tip: x86/sgx] x86/sgx: Mark sgx_vepc_vm_ops static

2021-04-12 Thread tip-bot2 for Wei Yongjun
The following commit has been merged into the x86/sgx branch of tip: Commit-ID: 523caed9efbb049339706b124185c9358c1b6477 Gitweb: https://git.kernel.org/tip/523caed9efbb049339706b124185c9358c1b6477 Author:Wei Yongjun AuthorDate:Mon, 12 Apr 2021 16:00:23 Committer

[tip: timers/core] clocksource/drivers/ingenic_ost: Fix return value check in ingenic_ost_probe()

2021-04-09 Thread tip-bot2 for Wei Yongjun
The following commit has been merged into the timers/core branch of tip: Commit-ID: 2a65f7e2772613debd03fa2492e76a635aa04545 Gitweb: https://git.kernel.org/tip/2a65f7e2772613debd03fa2492e76a635aa04545 Author:Wei Yongjun AuthorDate:Mon, 08 Mar 2021 12:30:31 Committer

[tip:x86/kaslr] x86, kaslr: Remove unused including

2014-01-14 Thread tip-bot for Wei Yongjun
Commit-ID: 19259943f0954dcd1817f94776376bf51c6a46d5 Gitweb: http://git.kernel.org/tip/19259943f0954dcd1817f94776376bf51c6a46d5 Author: Wei Yongjun AuthorDate: Sat, 7 Dec 2013 21:02:36 +0800 Committer: H. Peter Anvin CommitDate: Tue, 14 Jan 2014 10:45:56 -0800 x86, kaslr: Remove unused

[tip:x86/headers] x86/ce4100: Remove duplicated include from ce4100.c

2016-07-19 Thread tip-bot for Wei Yongjun
Commit-ID: 2384d1d832efc59447b27a283080551caf922086 Gitweb: http://git.kernel.org/tip/2384d1d832efc59447b27a283080551caf922086 Author: Wei Yongjun AuthorDate: Tue, 19 Jul 2016 12:02:11 + Committer: Thomas Gleixner CommitDate: Tue, 19 Jul 2016 16:02:17 +0200 x86/ce4100: Remove

[tip:x86/headers] x86/apic: Remove duplicated include from probe_64.c

2016-07-19 Thread tip-bot for Wei Yongjun
Commit-ID: f6329088b3d9898d6212c410d465d096cdcd3746 Gitweb: http://git.kernel.org/tip/f6329088b3d9898d6212c410d465d096cdcd3746 Author: Wei Yongjun AuthorDate: Tue, 19 Jul 2016 12:02:20 + Committer: Thomas Gleixner CommitDate: Tue, 19 Jul 2016 16:02:31 +0200 x86/apic: Remove

[tip:locking/core] locking/static_keys: Fix non static symbol Sparse warning

2016-07-07 Thread tip-bot for Wei Yongjun
Commit-ID: 885885f6b88d22f81e67ee6a61561e480b27d27a Gitweb: http://git.kernel.org/tip/885885f6b88d22f81e67ee6a61561e480b27d27a Author: Wei Yongjun AuthorDate: Fri, 17 Jun 2016 17:19:40 + Committer: Ingo Molnar CommitDate: Thu, 7 Jul 2016 09:06:46 +0200 locking/static_keys: Fix non

[tip: core/rcu] smp: Make symbol 'csd_bug_count' static

2020-10-08 Thread tip-bot2 for Wei Yongjun
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 2b722160f1a7929f38dfb648c7bbb45f96e65a5b Gitweb: https://git.kernel.org/tip/2b722160f1a7929f38dfb648c7bbb45f96e65a5b Author:Wei Yongjun AuthorDate:Mon, 06 Jul 2020 21:49:41 +08:00 Committer

[tip: core/rcu] scftorture: Make symbol 'scf_torture_rand' static

2020-10-08 Thread tip-bot2 for Wei Yongjun
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 9a52a574676f8d4aa55f69319231ce6c343b00bb Gitweb: https://git.kernel.org/tip/9a52a574676f8d4aa55f69319231ce6c343b00bb Author:Wei Yongjun AuthorDate:Thu, 02 Jul 2020 09:56:50 -07:00 Committer

[tip: core/rcu] locktorture: Make function torture_percpu_rwsem_init() static

2020-10-08 Thread tip-bot2 for Wei Yongjun
The following commit has been merged into the core/rcu branch of tip: Commit-ID: d49bed9abc3454bd123cbe974ecbeae119701b92 Gitweb: https://git.kernel.org/tip/d49bed9abc3454bd123cbe974ecbeae119701b92 Author:Wei Yongjun AuthorDate:Fri, 03 Jul 2020 13:05:27 +08:00 Committer

[tip: locking/kcsan] kcsan: Use GFP_ATOMIC under spin lock

2020-05-08 Thread tip-bot2 for Wei Yongjun
The following commit has been merged into the locking/kcsan branch of tip: Commit-ID: 52785b6ae8eded7ac99d65c92d989b702e5b4376 Gitweb: https://git.kernel.org/tip/52785b6ae8eded7ac99d65c92d989b702e5b4376 Author:Wei Yongjun AuthorDate:Fri, 17 Apr 2020 02:58:37 Committer

[tip:ras/core] RAS: Make local function parse_ras_param() static

2017-05-21 Thread tip-bot for Wei Yongjun
Commit-ID: 5f0744e50db1628d6de770b92278445b3de2779f Gitweb: http://git.kernel.org/tip/5f0744e50db1628d6de770b92278445b3de2779f Author: Wei Yongjun AuthorDate: Fri, 19 May 2017 11:39:12 +0200 Committer: Thomas Gleixner CommitDate: Sun, 21 May 2017 21:55:12 +0200 RAS: Make local

[tip:irq/core] irqchip/mbigen: Fix return value check in mbigen_device_probe()

2017-04-30 Thread tip-bot for Wei Yongjun
Commit-ID: 216646e4d82e847791f0ba66c439dedd36cb119f Gitweb: http://git.kernel.org/tip/216646e4d82e847791f0ba66c439dedd36cb119f Author: Wei Yongjun AuthorDate: Thu, 27 Apr 2017 15:21:13 + Committer: Thomas Gleixner CommitDate: Sun, 30 Apr 2017 11:21:16 +0200 irqchip/mbigen: Fix

[tip:efi/core] efi: Remove unused include of

2016-10-18 Thread tip-bot for Wei Yongjun
Commit-ID: 10714dd37aa7ebb165677b9a793448950ff366ad Gitweb: http://git.kernel.org/tip/10714dd37aa7ebb165677b9a793448950ff366ad Author: Wei Yongjun AuthorDate: Tue, 18 Oct 2016 15:33:12 +0100 Committer: Ingo Molnar CommitDate: Tue, 18 Oct 2016 17:11:16 +0200 efi: Remove unused include

[tip:mm/urgent] mm/numa: Remove duplicated include from mprotect.c

2016-10-19 Thread tip-bot for Wei Yongjun
Commit-ID: 137baabe351e0554d06c6d5c84059fe343e2791e Gitweb: http://git.kernel.org/tip/137baabe351e0554d06c6d5c84059fe343e2791e Author: Wei Yongjun AuthorDate: Mon, 17 Oct 2016 15:47:39 + Committer: Thomas Gleixner CommitDate: Wed, 19 Oct 2016 17:28:48 +0200 mm/numa: Remove

<    3   4   5   6   7   8