stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Luca Olivetti <luca@ventoso.org>
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	linux-kernel@vger.kernel.org
Cc: stable@vger.kernel.org, "Fengguag Wu" <fengguang.wu@intel.com>,
	"Frank Schäfer" <fschaefer.oss@googlemail.com>,
	"Mauro Carvalho Chehab" <mchehab@osg.samsung.com>
Subject: Re: [PATCH 3.18 105/183] [media] af9005: fix kernel panic on init if compiled without IR
Date: Sun, 25 Jan 2015 20:32:59 +0100	[thread overview]
Message-ID: <54C544EB.3000104@ventoso.org> (raw)
In-Reply-To: <20150125180814.764501379@linuxfoundation.org>

El 25/01/15 a les 19:07, Greg Kroah-Hartman ha escrit:
> 3.18-stable review patch.  If anyone has any objections, please let me know.

I don't have any objection apart from the description: IIRC the bug is
triggered only if the kernel is compiled without module support.
In any case I think that symbol_request should return NULL if the
requested symbol is not available, either because the kernel has been
compiled without module support or the required symbol is not provided
by any module (though I think in the latter case it already works this
way, at least it did at the time I wrote the driver).
Or, as I said here
https://lkml.org/lkml/2009/2/4/350
maybe symbol_request isn't the correct approach to provide multiple,
alternative, implementations.

Bye

> 
> ------------------
> 
> From: Frank Schaefer <fschaefer.oss@googlemail.com>
> 
> commit 2279948735609d0d17d7384e776b674619f792ef upstream.
> 
> This patches fixes an ancient bug in the dvb_usb_af9005 driver, which
> has been reported at least in the following threads:
> https://lkml.org/lkml/2009/2/4/350
> https://lkml.org/lkml/2014/9/18/558
> 
> If the driver is compiled in without any IR support (neither
> DVB_USB_AF9005_REMOTE nor custom symbols), the symbol_request calls in
> af9005_usb_module_init() return pointers != NULL although the IR
> symbols are not available.
> 
> This leads to the following oops:
> ...
> [    8.529751] usbcore: registered new interface driver dvb_usb_af9005
> [    8.531584] BUG: unable to handle kernel paging request at 02e00000
> [    8.533385] IP: [<7d9d67c6>] af9005_usb_module_init+0x6b/0x9d
> [    8.535613] *pde = 00000000
> [    8.536416] Oops: 0000 [#1] PREEMPT PREEMPT DEBUG_PAGEALLOCDEBUG_PAGEALLOC
> [    8.537863] CPU: 0 PID: 1 Comm: swapper Not tainted 3.15.0-rc6-00151-ga5c075c #1
> [    8.539827] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.7.5-20140531_083030-gandalf 04/01/2014
> [    8.541519] task: 89c9a670 ti: 89c9c000 task.ti: 89c9c000
> [    8.541519] EIP: 0060:[<7d9d67c6>] EFLAGS: 00010206 CPU: 0
> [    8.541519] EIP is at af9005_usb_module_init+0x6b/0x9d
> [    8.541519] EAX: 02e00000 EBX: 00000000 ECX: 00000006 EDX: 00000000
> [    8.541519] ESI: 00000000 EDI: 7da33ec8 EBP: 89c9df30 ESP: 89c9df2c
> [    8.541519]  DS: 007b ES: 007b FS: 0000 GS: 00e0 SS: 0068
> [    8.541519] CR0: 8005003b CR2: 02e00000 CR3: 05a54000 CR4: 00000690
> [    8.541519] Stack:
> [    8.541519]  7d9d675b 89c9df90 7d992a49 7d7d5914 89c9df4c 7be3a800 7d08c58c 8a4c3968
> [    8.541519]  89c9df80 7be3a966 00000192 00000006 00000006 7d7d3ff4 8a4c397a 00000200
> [    8.541519]  7d6b1280 8a4c3979 00000006 000009a6 7da32db8 b13eec81 00000006 000009a6
> [    8.541519] Call Trace:
> [    8.541519]  [<7d9d675b>] ? ttusb2_driver_init+0x16/0x16
> [    8.541519]  [<7d992a49>] do_one_initcall+0x77/0x106
> [    8.541519]  [<7be3a800>] ? parameqn+0x2/0x35
> [    8.541519]  [<7be3a966>] ? parse_args+0x113/0x25c
> [    8.541519]  [<7d992bc2>] kernel_init_freeable+0xea/0x167
> [    8.541519]  [<7cf01070>] kernel_init+0x8/0xb8
> [    8.541519]  [<7cf27ec0>] ret_from_kernel_thread+0x20/0x30
> [    8.541519]  [<7cf01068>] ? rest_init+0x10c/0x10c
> [    8.541519] Code: 08 c2 c7 05 44 ed f9 7d 00 00 e0 02 c7 05 40 ed f9 7d 00 00 e0 02 c7 05 3c ed f9 7d 00 00 e0 02 75 1f b8 00 00 e0 02 85 c0 74 16 <a1> 00 00 e0 02 c7 05 54 84 8e 7d 00 00 e0 02 a3 58 84 8e 7d eb
> [    8.541519] EIP: [<7d9d67c6>] af9005_usb_module_init+0x6b/0x9d SS:ESP 0068:89c9df2c
> [    8.541519] CR2: 0000000002e00000
> [    8.541519] ---[ end trace 768b6faf51370fc7 ]---
> 
> The prefered fix would be to convert the whole IR code to use the kernel IR
> infrastructure (which wasn't available at the time this driver had been created).
> 
> Until anyone who still has this old hardware steps up an does the conversion,
> fix it by not calling the symbol_request calls if the driver is compiled in
> without the default IR symbols (CONFIG_DVB_USB_AF9005_REMOTE).
> Due to the IR related pointers beeing NULL by default, IR support will then be disabled.
> 
> The downside of this solution is, that it will no longer be possible to
> compile custom IR symbols (not using CONFIG_DVB_USB_AF9005_REMOTE) in.
> 
> Please note that this patch has NOT been tested with all possible cases.
> I don't have the hardware and could only verify that it fixes the reported
> bug.
> 
> Reported-by: Fengguag Wu <fengguang.wu@intel.com>
> Signed-off-by: Frank SchÀfer <fschaefer.oss@googlemail.com>
> Acked-by: Luca Olivetti <luca@ventoso.org>
> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> 
> ---
>  drivers/media/usb/dvb-usb/af9005.c |    3 +++
>  1 file changed, 3 insertions(+)
> 
> --- a/drivers/media/usb/dvb-usb/af9005.c
> +++ b/drivers/media/usb/dvb-usb/af9005.c
> @@ -1081,9 +1081,12 @@ static int __init af9005_usb_module_init
>  		err("usb_register failed. (%d)", result);
>  		return result;
>  	}
> +#if IS_MODULE(CONFIG_DVB_USB_AF9005) || defined(CONFIG_DVB_USB_AF9005_REMOTE)
> +	/* FIXME: convert to todays kernel IR infrastructure */
>  	rc_decode = symbol_request(af9005_rc_decode);
>  	rc_keys = symbol_request(rc_map_af9005_table);
>  	rc_keys_size = symbol_request(rc_map_af9005_table_size);
> +#endif
>  	if (rc_decode == NULL || rc_keys == NULL || rc_keys_size == NULL) {
>  		err("af9005_rc_decode function not found, disabling remote");
>  		af9005_properties.rc.legacy.rc_query = NULL;
> 
> 
> 


  parent reply	other threads:[~2015-01-25 19:32 UTC|newest]

Thread overview: 175+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-01-25 18:05 [PATCH 3.18 000/183] 3.18.4-stable review Greg Kroah-Hartman
2015-01-25 18:05 ` [PATCH 3.18 002/183] net/mlx4: Cache line CQE/EQE stride fixes Greg Kroah-Hartman
2015-01-25 18:05 ` [PATCH 3.18 003/183] netlink: Always copy on mmap TX Greg Kroah-Hartman
2015-01-25 18:05 ` [PATCH 3.18 004/183] netlink: Dont reorder loads/stores before marking mmap netlink frame as available Greg Kroah-Hartman
2015-01-25 18:05 ` [PATCH 3.18 005/183] geneve: Remove socket and offload handlers at destruction Greg Kroah-Hartman
2015-01-25 18:05 ` [PATCH 3.18 006/183] geneve: Fix races between socket add and release Greg Kroah-Hartman
2015-01-25 18:05 ` [PATCH 3.18 007/183] xen-netback: support frontends without feature-rx-notify again Greg Kroah-Hartman
2015-01-25 21:05   ` John
2015-01-25 18:05 ` [PATCH 3.18 008/183] net: drop the packet when fails to do software segmentation or header check Greg Kroah-Hartman
2015-01-25 18:05 ` [PATCH 3.18 009/183] in6: fix conflict with glibc Greg Kroah-Hartman
2015-01-25 18:05 ` [PATCH 3.18 010/183] tg3: tg3_disable_ints using uninitialized mailbox value to disable interrupts Greg Kroah-Hartman
2015-01-25 18:05 ` [PATCH 3.18 012/183] batman-adv: Unify fragment size calculation Greg Kroah-Hartman
2015-01-25 18:05 ` [PATCH 3.18 013/183] batman-adv: avoid NULL dereferences and fix if check Greg Kroah-Hartman
2015-01-25 18:05 ` [PATCH 3.18 014/183] net/mlx4_en: Doorbell is byteswapped in Little Endian archs Greg Kroah-Hartman
2015-01-25 18:05 ` [PATCH 3.18 015/183] tcp6: dont move IP6CB before xfrm6_policy_check() Greg Kroah-Hartman
2015-01-25 18:05 ` [PATCH 3.18 016/183] net: Fix stacked vlan offload features computation Greg Kroah-Hartman
2015-01-25 18:05 ` [PATCH 3.18 017/183] net: Reset secmark when scrubbing packet Greg Kroah-Hartman
2015-01-25 18:05 ` [PATCH 3.18 018/183] net/core: Handle csum for CHECKSUM_COMPLETE VXLAN forwarding Greg Kroah-Hartman
2015-01-25 18:05 ` [PATCH 3.18 019/183] net: Generalize ndo_gso_check to ndo_features_check Greg Kroah-Hartman
2015-01-25 18:05 ` [PATCH 3.18 020/183] net/mlx4_core: Correcly update the mtts offset in the MR re-reg flow Greg Kroah-Hartman
2015-01-25 18:05 ` [PATCH 3.18 021/183] tcp: Do not apply TSO segment limit to non-TSO packets Greg Kroah-Hartman
2015-01-25 18:05 ` [PATCH 3.18 022/183] xen-netback: fixing the propagation of the transmit shaper timeout Greg Kroah-Hartman
2015-01-25 18:05 ` [PATCH 3.18 023/183] alx: fix alx_poll() Greg Kroah-Hartman
2015-01-25 18:05 ` [PATCH 3.18 024/183] team: avoid possible underflow of count_pending value for notify_peers and mcast_rejoin Greg Kroah-Hartman
2015-01-25 18:05 ` [PATCH 3.18 025/183] enic: fix rx skb checksum Greg Kroah-Hartman
2015-01-25 18:05 ` [PATCH 3.18 026/183] drm/vmwgfx: Dont use memory accounting for kernel-side fence objects Greg Kroah-Hartman
2015-01-25 18:05 ` [PATCH 3.18 027/183] drm/vmwgfx: Fix error printout on signals pending Greg Kroah-Hartman
2015-01-25 18:05 ` [PATCH 3.18 028/183] drm/vmwgfx: Fix fence event code Greg Kroah-Hartman
2015-01-25 18:05 ` [PATCH 3.18 029/183] drm/ttm: Avoid memory allocation from shrinker functions Greg Kroah-Hartman
2015-01-25 18:05 ` [PATCH 3.18 030/183] drm/fb_helper: move deferred fb checking into restore mode (v2) Greg Kroah-Hartman
2015-01-25 18:05 ` [PATCH 3.18 031/183] drm/dp: retry AUX transactions 32 times (v1.1) Greg Kroah-Hartman
2015-01-25 18:05 ` [PATCH 3.18 032/183] drm/dp-mst: Remove branches before dropping the reference Greg Kroah-Hartman
2015-01-25 18:05 ` [PATCH 3.18 033/183] drm/radeon: fix typo in CI dpm disable Greg Kroah-Hartman
2015-01-25 18:05 ` [PATCH 3.18 034/183] drm/radeon: work around a hw bug in MGCG on CIK Greg Kroah-Hartman
2015-01-25 18:05 ` [PATCH 3.18 036/183] drm/radeon: KV has three PPLLs (v2) Greg Kroah-Hartman
2015-01-25 18:05 ` [PATCH 3.18 037/183] drm/radeon: fix sad_count check for dce3 Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 038/183] drm/radeon: adjust default bapm settings for KV Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 039/183] drm/radeon: properly filter DP1.2 4k modes on non-DP1.2 hw Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 040/183] drm/i915: Dont complain about stolen conflicts on gen3 Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 041/183] drm/i915: Disallow pin ioctl completely for kms drivers Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 042/183] drm/i915: Only warn the first time we attempt to mmio whilst suspended Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 043/183] drm/i915: resume MST after reading back hw state Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 045/183] drm/nv4c/mc: disable msi Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 051/183] ARC: [nsimosci] move peripherals to match model to FPGA Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 052/183] cxl: Change contexts_lock to a mutex to fix sleep while atomic bug Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 053/183] cxl: Add timeout to process element commands Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 054/183] cxl: Unmap MMIO regions when detaching a context Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 055/183] xhci: Check if slot is already in default state before moving it there Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 057/183] nl80211: check matches array length before acessing it Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 058/183] cfg80211: dont WARN about two consecutive Country IE hint Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 059/183] cfg80211: avoid mem leak on driver hint set Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 060/183] cfg80211: Fix 160 MHz channels with 80+80 and 160 MHz drivers Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 061/183] rtlwifi: rtl8192ce: Set fw_ready flag Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 062/183] rtlwifi: Fix error when accessing unmapped memory in skb Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 063/183] asus-nb-wmi: Add another wapf=4 quirk Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 064/183] hp_accel: Add support for HP ZBook 15 Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 065/183] tick/powerclamp: Remove tick_nohz_idle abuse Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 066/183] uapi/linux/target_core_user.h: fix headers_install.sh badness Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 067/183] tcm_loop: Fix wrong I_T nexus association Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 068/183] IB/iser: Fix possible SQ overflow Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 069/183] genirq: Prevent proc race against freeing of irq descriptors Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 070/183] iscsi-target: Fail connection on short sendmsg writes Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 071/183] iscsi,iser-target: Initiate termination only once Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 072/183] iser-target: Fix flush + disconnect completion handling Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 073/183] iser-target: Parallelize CM connection establishment Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 074/183] iser-target: Fix connected_handler + teardown flow race Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 075/183] iser-target: Handle ADDR_CHANGE event for listener cm_id Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 076/183] iser-target: Fix implicit termination of connections Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 077/183] iser-target: Allocate PI contexts dynamically Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 078/183] iser-target: Fix NULL dereference in SW mode DIF Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 079/183] iscsi,iser-target: Expose supported protection ops according to t10_pi Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 081/183] Revert "[SCSI] mpt2sas: Remove phys on topology change." Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 082/183] Revert "[SCSI] mpt3sas: Remove phys on topology change" Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 083/183] scsi: blacklist RSOC for Microsoft iSCSI target devices Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 084/183] scsi: fix random memory corruption with scsi-mq + T10 PI Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 086/183] clk: samsung: Fix double add of syscore ops after driver rebind Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 087/183] clk: Really fix deadlock with mmap_sem Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 088/183] clk: Dont try to use a struct clk* after it could have been freed Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 089/183] Revert "clk: ppc-corenet: Fix Section mismatch warning" Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 090/183] clk: rockchip: fix rk3288 cpuclk core dividers Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 091/183] clk: rockchip: fix rk3066 pll lock bit location Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 092/183] clk: berlin: bg2q: remove non-exist "smemc" gate clock Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 093/183] clk: at91: keep slow clk enabled to prevent system hang Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 094/183] ARM: dts: berlin: fix io clk and add missing core clk for BG2Q sdhci2 host Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 095/183] bugon.cocci: fix Options at the macro Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 096/183] dm: fix missed error code if .end_io isnt implemented by target_type Greg Kroah-Hartman
2015-01-25 18:06 ` [PATCH 3.18 097/183] parisc: fix out-of-register compiler error in ldcw inline assembler function Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 098/183] serial: fix parisc boot hang Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 099/183] storvsc: ring buffer failures may result in I/O freeze Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 100/183] net: ethernet: cpsw: fix hangs with interrupts Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 102/183] video/logo: prevent use of logos after they have been freed Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 103/183] video/fbdev: fix defios fsync Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 104/183] [media] smiapp-pll: Correct clock debug prints Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 106/183] [media] smiapp: Take mutex during PLL update in sensor initialisation Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 107/183] [media] sound: simplify au0828 quirk table Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 108/183] [media] sound: Update au0828 quirks table Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 109/183] [media] uvcvideo: Fix destruction order in uvc_delete() Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 110/183] [media] img-ir/hw: Always read data to clear buffer Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 111/183] [media] img-ir/hw: Fix potential deadlock stopping timer Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 112/183] [media] vivid: fix CROP_BOUNDS typo for video output Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 113/183] vfio-pci: Fix the check on pci device type in vfio_pci_probe() Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 114/183] locks: fix NULL-deref in generic_delete_lease Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 115/183] powernv: Fix OPAL tracepoint code Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 116/183] mmc: sdhci: Set SDHCI_POWER_ON with external vmmc Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 117/183] arm64: partially revert "ARM: 8167/1: extend the reserved memory for initrd to be page aligned" Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 118/183] iwlwifi: mvm: fix Rx with both chains Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 119/183] i40e: adds FCoE configure option Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 120/183] drivers: net: cpsw: fix multicast flush in dual emac mode Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 121/183] leds: netxbig: fix oops at probe time Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 122/183] ftrace/jprobes/x86: Fix conflict between jprobes and function graph tracing Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 123/183] ftrace: Fix updating of filters for shared global_ops filters Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 124/183] ftrace: Check both notrace and filter for old hash Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 125/183] NFSv4.1: Fix client id trunking on Linux Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 126/183] mei: clean reset bit before reset Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 128/183] uas: Add US_FL_NO_REPORT_OPCODES for JMicron JMS566 with usb-id 0bc2:a013 Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 129/183] uas: Add US_FL_NO_ATA_1X for 2 more Seagate disk enclosures Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 130/183] reset: sunxi: fix spinlock initialization Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 131/183] ARM: dts: berlin: correct BG2Qs SM GPIO location Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 132/183] pinctrl: lantiq: remove bogus of_gpio_chip_add Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 133/183] gpiolib: of: Correct error handling in of_get_named_gpiod_flags Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 134/183] gpio: crystalcove: use handle_nested_irq Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 135/183] gpio: fix memory and reference leaks in gpiochip_add error path Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 136/183] gpio: fix memory leak and sleep-while-atomic Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 137/183] gpio: fix sleep-while-atomic in gpiochip_remove Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 138/183] gpio: sysfs: fix gpio-chip device-attribute leak Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 139/183] gpio: sysfs: fix gpio " Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 140/183] OHCI: add a quirk for ULi M5237 blocking on reset Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 141/183] usb: dwc3: gadget: Fix TRB preparation during SG Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 142/183] usb: dwc3: gadget: Stop TRB preparation after limit is reached Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 143/183] USB: cp210x: fix ID for production CEL MeshConnect USB Stick Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 144/183] USB: cp210x: add IDs for CEL USB sticks and MeshWorks devices Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 145/183] USB: qcserial/option: make AT URCs work for Sierra Wireless MC73xx Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 146/183] USB: keyspan: fix null-deref at probe Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 147/183] usb: gadget: gadgetfs: Free memory allocated by memdup_user() Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 148/183] usb: gadget: udc: atmel: change setting for DMA Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 149/183] usb: gadget: udc: atmel: fix possible IN hang issue Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 150/183] usb: gadget: udc: atmel: fix possible oops when unloading module Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 151/183] USB: console: fix uninitialised ldisc semaphore Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 152/183] USB: console: fix potential use after free Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 153/183] USB: EHCI: fix initialization bug in iso_stream_schedule() Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 154/183] usb: musb: stuff leak of struct usb_hcd Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 155/183] can: kvaser_usb: Dont free packets when tight on URBs Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 156/183] can: kvaser_usb: Reset all URB tx contexts upon channel close Greg Kroah-Hartman
2015-01-25 18:07 ` [PATCH 3.18 157/183] can: kvaser_usb: Dont send a RESET_CHIP for non-existing channels Greg Kroah-Hartman
2015-01-25 18:08 ` [PATCH 3.18 158/183] Input: elantech - support new ICs types for version 4 Greg Kroah-Hartman
2015-01-25 18:08 ` [PATCH 3.18 160/183] Input: I8042 - add Acer Aspire 7738 to the nomux list Greg Kroah-Hartman
2015-01-25 18:08 ` [PATCH 3.18 161/183] ARM: omap2plus_defconfig: use CONFIG_CPUFREQ_DT Greg Kroah-Hartman
2015-01-25 18:08 ` [PATCH 3.18 162/183] ARM: imx6sx: Set PLL2 as parent of QSPI clocks Greg Kroah-Hartman
2015-01-25 18:08 ` [PATCH 3.18 163/183] ARM: dts: imx25: Fix the SPI1 clocks Greg Kroah-Hartman
2015-01-25 18:08 ` [PATCH 3.18 164/183] ARM: dts: imx51-babbage: Fix ULPI PHY reset modelling Greg Kroah-Hartman
2015-01-25 18:08 ` [PATCH 3.18 165/183] ARM: imx6q: drop unnecessary semicolon Greg Kroah-Hartman
2015-01-25 18:08 ` [PATCH 3.18 166/183] ARM: clk-imx6q: fix video divider for rev T0 1.0 Greg Kroah-Hartman
2015-01-25 18:08 ` [PATCH 3.18 167/183] ARM: omap5/dra7xx: Fix frequency typos Greg Kroah-Hartman
2015-01-25 18:08 ` [PATCH 3.18 168/183] ARM: omap5/dra7xx: Enable booting secondary CPU in HYP mode Greg Kroah-Hartman
2015-01-25 18:08 ` [PATCH 3.18 169/183] bus: omap_l3_noc: Add resume hook to restore context Greg Kroah-Hartman
2015-01-25 18:08 ` [PATCH 3.18 170/183] bus: omap_l3_noc: Correct returning IRQ_HANDLED unconditionally in the irq handler Greg Kroah-Hartman
2015-01-25 18:08 ` [PATCH 3.18 171/183] ARM: dts: berlin: add broken-cd and set bus width for eMMC in Marvell DMP DT Greg Kroah-Hartman
2015-01-25 18:08 ` [PATCH 3.18 172/183] ARM: shmobile: sh73a0 legacy: Set .control_parent for all irqpin instances Greg Kroah-Hartman
2015-01-25 18:08 ` [PATCH 3.18 173/183] ARM: dts: dra7-evm: fix qspi device tree partition size Greg Kroah-Hartman
2015-01-25 18:08 ` [PATCH 3.18 174/183] iio: ad799x: Fix ad7991/ad7995/ad7999 config setup Greg Kroah-Hartman
2015-01-25 18:08 ` [PATCH 3.18 175/183] decompress_bunzip2: off by one in get_next_block() Greg Kroah-Hartman
2015-01-25 18:08 ` [PATCH 3.18 176/183] um: Skip futex_atomic_cmpxchg_inatomic() test Greg Kroah-Hartman
2015-01-25 18:08 ` [PATCH 3.18 177/183] x86, um: actually mark system call tables readonly Greg Kroah-Hartman
2015-01-25 18:08 ` [PATCH 3.18 178/183] kbuild: Fix removal of the debian/ directory Greg Kroah-Hartman
2015-01-25 18:08 ` [PATCH 3.18 179/183] LOCKD: Fix a race when initialising nlmsvc_timeout Greg Kroah-Hartman
2015-01-25 18:08 ` [PATCH 3.18 180/183] target: Drop arbitrary maximum I/O size limit Greg Kroah-Hartman
2015-01-25 18:08 ` [PATCH 3.18 181/183] vhost-scsi: Add missing virtio-scsi -> TCM attribute conversion Greg Kroah-Hartman
2015-01-25 18:08 ` [PATCH 3.18 183/183] KVM: nVMX: Disable unrestricted mode if ept=0 Greg Kroah-Hartman
     [not found] ` <20150125180814.764501379@linuxfoundation.org>
2015-01-25 19:32   ` Luca Olivetti [this message]
2015-01-25 22:01     ` [PATCH 3.18 105/183] [media] af9005: fix kernel panic on init if compiled without IR Greg Kroah-Hartman
2015-01-25 22:56       ` Luca Olivetti
2015-01-25 21:40 ` [PATCH 3.18 000/183] 3.18.4-stable review Guenter Roeck
2015-01-25 22:05   ` Greg Kroah-Hartman
2015-01-26 17:42 ` Shuah Khan
2015-01-26 18:35   ` Greg Kroah-Hartman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=54C544EB.3000104@ventoso.org \
    --to=luca@ventoso.org \
    --cc=fengguang.wu@intel.com \
    --cc=fschaefer.oss@googlemail.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mchehab@osg.samsung.com \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).