linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Sasha Levin <Alexander.Levin@microsoft.com>
To: "linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"stable@vger.kernel.org" <stable@vger.kernel.org>
Cc: Alan Stern <stern@rowland.harvard.edu>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Sasha Levin <Alexander.Levin@microsoft.com>
Subject: [PATCH AUTOSEL for 4.9 068/281] USB: ene_usb6250: fix first command execution
Date: Mon, 19 Mar 2018 15:59:09 +0000	[thread overview]
Message-ID: <20180319155742.13731-68-alexander.levin@microsoft.com> (raw)
In-Reply-To: <20180319155742.13731-1-alexander.levin@microsoft.com>

From: Alan Stern <stern@rowland.harvard.edu>

[ Upstream commit 4b309f1c4972c8f09e03ac64fc63510dbf5591a4 ]

In the ene_usb6250 sub-driver for usb-storage, the ene_transport()
routine is supposed to initialize the driver before executing the
current command, if the initialization has not already been performed.
However, a bug in the routine causes it to skip the command after
doing the initialization.  Also, the routine does not return an
appropriate error code if either the initialization or the command
fails.

As a result of the first bug, the first command (a SCSI INQUIRY) is
not carried out.  The results can be seen in the system log, in the
form of a warning message and empty or garbage INQUIRY data:

Apr 18 22:40:08 notebook2 kernel: scsi host6: scsi scan: INQUIRY result too short (5), using 36
Apr 18 22:40:08 notebook2 kernel: scsi 6:0:0:0: Direct-Access                                    PQ: 0 ANSI: 0

This patch fixes both errors.

Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Reported-and-tested-by: Andreas Hartmann <andihartmann@01019freenet.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
---
 drivers/usb/storage/ene_ub6250.c | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/drivers/usb/storage/ene_ub6250.c b/drivers/usb/storage/ene_ub6250.c
index 4340b4925daa..4199fe563c71 100644
--- a/drivers/usb/storage/ene_ub6250.c
+++ b/drivers/usb/storage/ene_ub6250.c
@@ -2295,21 +2295,22 @@ static int ms_scsi_irp(struct us_data *us, struct scsi_cmnd *srb)
 
 static int ene_transport(struct scsi_cmnd *srb, struct us_data *us)
 {
-	int result = 0;
+	int result = USB_STOR_XFER_GOOD;
 	struct ene_ub6250_info *info = (struct ene_ub6250_info *)(us->extra);
 
 	/*US_DEBUG(usb_stor_show_command(us, srb)); */
 	scsi_set_resid(srb, 0);
-	if (unlikely(!(info->SD_Status.Ready || info->MS_Status.Ready))) {
+	if (unlikely(!(info->SD_Status.Ready || info->MS_Status.Ready)))
 		result = ene_init(us);
-	} else {
+	if (result == USB_STOR_XFER_GOOD) {
+		result = USB_STOR_TRANSPORT_ERROR;
 		if (info->SD_Status.Ready)
 			result = sd_scsi_irp(us, srb);
 
 		if (info->MS_Status.Ready)
 			result = ms_scsi_irp(us, srb);
 	}
-	return 0;
+	return result;
 }
 
 static struct scsi_host_template ene_ub6250_host_template;
-- 
2.14.1

  parent reply	other threads:[~2018-03-19 15:59 UTC|newest]

Thread overview: 281+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-03-19 15:57 [PATCH AUTOSEL for 4.9 001/281] qed: Fix overriding of supported autoneg value Sasha Levin
2018-03-19 15:57 ` [PATCH AUTOSEL for 4.9 002/281] cfg80211: make RATE_INFO_BW_20 the default Sasha Levin
2018-03-19 15:57 ` [PATCH AUTOSEL for 4.9 003/281] md/raid5: make use of spin_lock_irq over local_irq_disable + spin_lock Sasha Levin
2018-03-19 15:57 ` [PATCH AUTOSEL for 4.9 004/281] rtc: snvs: fix an incorrect check of return value Sasha Levin
2018-03-19 15:57 ` [PATCH AUTOSEL for 4.9 005/281] x86/asm: Don't use RBP as a temporary register in csum_partial_copy_generic() Sasha Levin
2018-03-19 15:57 ` [PATCH AUTOSEL for 4.9 006/281] x86/mm/kaslr: Use the _ASM_MUL macro for multiplication to work around Clang incompatibility Sasha Levin
2018-03-19 15:57 ` [PATCH AUTOSEL for 4.9 007/281] ovl: persistent inode numbers for upper hardlinks Sasha Levin
2018-03-19 15:57 ` [PATCH AUTOSEL for 4.9 008/281] NFSv4.1: RECLAIM_COMPLETE must handle NFS4ERR_CONN_NOT_BOUND_TO_SESSION Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 009/281] x86/boot: Declare error() as noreturn Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 010/281] IB/srpt: Fix abort handling Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 011/281] IB/srpt: Avoid that aborting a command triggers a kernel warning Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 012/281] af_key: Fix slab-out-of-bounds in pfkey_compile_policy Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 013/281] mac80211: bail out from prep_connection() if a reconfig is ongoing Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 014/281] bna: Avoid reading past end of buffer Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 015/281] qlge: " Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 016/281] ubi: fastmap: Fix slab corruption Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 017/281] ipmi_ssif: unlock on allocation failure Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 018/281] net: cdc_ncm: Fix TX zero padding Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 019/281] net: ethernet: ti: cpsw: adjust cpsw fifos depth for fullduplex flow control Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 020/281] lockd: fix lockd shutdown race Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 021/281] drivers/misc/vmw_vmci/vmci_queue_pair.c: fix a couple integer overflow tests Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 022/281] pidns: disable pid allocation if pid_ns_prepare_proc() is failed in alloc_pid() Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 023/281] s390: move _text symbol to address higher than zero Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 024/281] net/mlx4_en: Avoid adding steering rules with invalid ring Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 025/281] qed: Correct doorbell configuration for !4Kb pages Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 026/281] NFSv4.1: Work around a Linux server bug Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 027/281] CIFS: silence lockdep splat in cifs_relock_file() Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 028/281] perf/callchain: Force USER_DS when invoking perf_callchain_user() Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 029/281] blk-mq: NVMe 512B/4K+T10 DIF/DIX format returns I/O error on dd with split op Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 030/281] net: qca_spi: Fix alignment issues in rx path Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 031/281] netxen_nic: set rcode to the return status from the call to netxen_issue_cmd Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 032/281] mdio: mux: Correct mdio_mux_init error path issues Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 033/281] Input: elan_i2c - check if device is there before really probing Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 034/281] Input: elantech - force relative mode on a certain module Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 035/281] scsi: sg: don't return bogus Sg_requests Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 036/281] KVM: PPC: Book3S PR: Check copy_to/from_user return values Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 037/281] irqchip/mbigen: Fix the clear register offset calculation Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 038/281] vmxnet3: ensure that adapter is in proper state during force_close Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 039/281] mm, vmstat: Remove spurious WARN() during zoneinfo print Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 040/281] SMB2: Fix share type handling Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 041/281] bus: brcmstb_gisb: Use register offsets with writes too Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 042/281] bus: brcmstb_gisb: correct support for 64-bit address output Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 043/281] PowerCap: Fix an error code in powercap_register_zone() Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 044/281] iio: pressure: zpa2326: report interrupted case as failure Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 045/281] ARM: dts: imx53-qsrb: Pulldown PMIC IRQ pin Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 046/281] staging: wlan-ng: prism2mgmt.c: fixed a double endian conversion before calling hfa384x_drvr_setconfig16, also fixes relative sparse warning Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 047/281] clk: renesas: rcar-gen2: Fix PLL0 on R-Car V2H and E2 Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 048/281] x86/tsc: Provide 'tsc=unstable' boot parameter Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 049/281] powerpc/modules: If mprofile-kernel is enabled add it to vermagic Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 050/281] ARM: dts: imx6qdl-wandboard: Fix audio channel swap Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 051/281] i2c: mux: reg: put away the parent i2c adapter on probe failure Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 052/281] arm64: perf: Ignore exclude_hv when kernel is running in HYP Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 053/281] mdio: mux: fix device_node_continue.cocci warnings Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 054/281] ipv6: avoid dad-failures for addresses with NODAD Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 055/281] async_tx: Fix DMA_PREP_FENCE usage in do_async_gen_syndrome() Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 056/281] KVM: arm: Restore banked registers and physical timer access on hyp_panic() Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 057/281] KVM: arm64: Restore host " Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 058/281] usb: dwc3: keystone: check return value Sasha Levin
2018-03-19 15:58 ` [PATCH AUTOSEL for 4.9 059/281] btrfs: fix incorrect error return ret being passed to mapping_set_error Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 060/281] ata: libahci: properly propagate return value of platform_get_irq() Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 061/281] ipmr: vrf: Find VIFs using the actual device Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 062/281] uio: fix incorrect memory leak cleanup Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 063/281] neighbour: update neigh timestamps iff update is effective Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 064/281] arp: honour gratuitous ARP _replies_ Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 065/281] ARM: dts: rockchip: fix rk322x i2s1 pinctrl error Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 066/281] usb: chipidea: properly handle host or gadget initialization failure Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 067/281] [media] pxa_camera: fix module remove codepath for v4l2 clock Sasha Levin
2018-03-19 15:59 ` Sasha Levin [this message]
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 069/281] net: x25: fix one potential use-after-free issue Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 070/281] USB: ene_usb6250: fix SCSI residue overwriting Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 071/281] serial: 8250: omap: Disable DMA for console UART Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 072/281] serial: sh-sci: Fix race condition causing garbage during shutdown Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 073/281] net/wan/fsl_ucc_hdlc: fix unitialized variable warnings Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 074/281] net/wan/fsl_ucc_hdlc: fix incorrect memory allocation Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 075/281] fsl/qe: add bit description for SYNL register for GUMR Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 076/281] sh_eth: Use platform device for printing before register_netdev() Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 077/281] mlxsw: spectrum: Avoid possible NULL pointer dereference Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 078/281] scsi: csiostor: fix use after free in csio_hw_use_fwconfig() Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 079/281] powerpc/mm: Fix virt_addr_valid() etc. on 64-bit hash Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 080/281] ath5k: fix memory leak on buf on failed eeprom read Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 081/281] selftests/powerpc: Fix TM resched DSCR test with some compilers Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 082/281] xfrm: fix state migration copy replay sequence numbers Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 083/281] ASoC: simple-card: fix mic jack initialization Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 084/281] iio: hi8435: avoid garbage event at first enable Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 085/281] iio: hi8435: cleanup reset gpio Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 086/281] iio: light: rpr0521 poweroff for probe fails Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 087/281] ext4: handle the rest of ext4_mb_load_buddy() ENOMEM errors Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 088/281] md-cluster: fix potential lock issue in add_new_disk Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 089/281] ARM: davinci: da8xx: Create DSP device only when assigned memory Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 090/281] ray_cs: Avoid reading past end of buffer Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 091/281] net/wan/fsl_ucc_hdlc: fix muram allocation error Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 092/281] leds: pca955x: Correct I2C Functionality Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 093/281] perf/core: Fix error handling in perf_event_alloc() Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 094/281] sched/numa: Use down_read_trylock() for the mmap_sem Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 095/281] gpio: crystalcove: Do not write regular gpio registers for virtual GPIOs Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 096/281] net/mlx5: Tolerate irq_set_affinity_hint() failures Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 097/281] selinux: do not check open permission on sockets Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 098/281] block: fix an error code in add_partition() Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 099/281] mlx5: fix bug reading rss_hash_type from CQE Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 100/281] net: ieee802154: fix net_device reference release too early Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 101/281] libceph: NULL deref on crush_decode() error path Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 102/281] perf report: Fix off-by-one for non-activation frames Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 103/281] netfilter: ctnetlink: fix incorrect nf_ct_put during hash resize Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 104/281] pNFS/flexfiles: missing error code in ff_layout_alloc_lseg() Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 105/281] ASoC: rsnd: SSI PIO adjust to 24bit mode Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 106/281] scsi: bnx2fc: fix race condition in bnx2fc_get_host_stats() Sasha Levin
2018-03-19 15:59 ` [PATCH AUTOSEL for 4.9 107/281] fix race in drivers/char/random.c:get_reg() Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 108/281] ext4: fix off-by-one on max nr_pages in ext4_find_unwritten_pgoff() Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 109/281] ARM64: PCI: Fix struct acpi_pci_root_ops allocation failure path Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 110/281] tcp: better validation of received ack sequences Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 111/281] net: move somaxconn init from sysctl code Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 112/281] Input: elan_i2c - clear INT before resetting controller Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 113/281] bonding: Don't update slave->link until ready to commit Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 114/281] cpuhotplug: Link lock stacks for hotplug callbacks Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 115/281] PCI/msi: fix the pci_alloc_irq_vectors_affinity stub Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 116/281] KVM: X86: Fix preempt the preemption timer cancel Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 117/281] KVM: nVMX: Fix handling of lmsw instruction Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 118/281] net: llc: add lock_sock in llc_ui_bind to avoid a race condition Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 119/281] kprobes/x86: Fix to set RWX bits correctly before releasing trampoline Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 120/281] drm/msm: Take the mutex before calling msm_gem_new_impl Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 121/281] i40iw: Fix sequence number for the first partial FPDU Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 122/281] i40iw: Correct Q1/XF object count equation Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 123/281] ARM: dts: ls1021a: add "fsl,ls1021a-esdhc" compatible string to esdhc node Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 124/281] thermal: power_allocator: fix one race condition issue for thermal_instances list Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 125/281] perf probe: Add warning message if there is unexpected event name Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 126/281] l2tp: fix missing print session offset info Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 127/281] rds; Reset rs->rs_bound_addr in rds_add_bound() failure path Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 128/281] ACPI / video: Default lcd_only to true on Win8-ready and newer machines Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 129/281] net/mlx4_en: Change default QoS settings Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 130/281] VFS: close race between getcwd() and d_move() Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 131/281] PM / devfreq: Fix potential NULL pointer dereference in governor_store Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 132/281] hwmon: (ina2xx) Make calibration register value fixed Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 133/281] media: videobuf2-core: don't go out of the buffer range Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 134/281] ASoC: Intel: Skylake: Disable clock gating during firmware and library download Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 135/281] ASoC: Intel: cht_bsw_rt5645: Analog Mic support Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 136/281] scsi: libiscsi: Allow sd_shutdown on bad transport Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 137/281] scsi: mpt3sas: Proper handling of set/clear of "ATA command pending" flag Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 138/281] irqchip/gic-v3: Fix the driver probe() fail due to disabled GICC entry Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 139/281] ACPI: EC: Fix debugfs_create_*() usage Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 140/281] mac80211: Fix setting TX power on monitor interfaces Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 141/281] vfb: fix video mode and line_length being set when loaded Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 142/281] ACPICA: Recognize the Windows 10 version 1607 and 1703 OSI strings Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 143/281] gpio: label descriptors using the device name Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 144/281] IB/rdmavt: Allocate CQ memory on the correct node Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 145/281] blk-mq: fix race between updating nr_hw_queues and switching io sched Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 146/281] backlight: tdo24m: Fix the SPI CS between transfers Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 147/281] pinctrl: baytrail: Enable glitch filter for GPIOs used as interrupts Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 148/281] ASoC: Intel: sst: Fix the return value of 'sst_send_byte_stream_mrfld()' Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 149/281] rt2x00: do not pause queue unconditionally on error path Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 150/281] wl1251: check return from call to wl1251_acx_arp_ip_filter Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 151/281] xfs: include inobt buffers in ifree tx log reservation Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 152/281] hdlcdrv: Fix divide by zero in hdlcdrv_ioctl Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 153/281] x86/efi: Disable runtime services on kexec kernel if booted with efi=old_map Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 154/281] netfilter: conntrack: don't call iter for non-confirmed conntracks Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 155/281] HID: i2c: Call acpi_device_fix_up_power for ACPI-enumerated devices Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 156/281] ovl: filter trusted xattr for non-admin Sasha Levin
2018-03-19 16:00 ` [PATCH AUTOSEL for 4.9 157/281] powerpc/[booke|4xx]: Don't clobber TCR[WP] when setting TCR[DIE] Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 158/281] dmaengine: imx-sdma: Handle return value of clk_prepare_enable Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 159/281] backlight: Report error on failure Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 160/281] arm64: futex: Fix undefined behaviour with FUTEX_OP_OPARG_SHIFT usage Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 161/281] net/mlx5: avoid build warning for uniprocessor Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 162/281] cxgb4: FW upgrade fixes Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 163/281] cxgb4: Fix netdev_features flag Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 164/281] rtc: m41t80: fix SQW dividers override when setting a date Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 165/281] i40evf: fix merge error in older patch Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 166/281] rtc: opal: Handle disabled TPO in opal_get_tpo_time() Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 167/281] rtc: interface: Validate alarm-time before handling rollover Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 168/281] SUNRPC: ensure correct error is reported by xs_tcp_setup_socket() Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 169/281] net: freescale: fix potential null pointer dereference Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 170/281] scsi: qla2xxx: Fix extraneous ref on sp's after adapter break Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 171/281] clk: at91: fix clk-generated parenting Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 172/281] drm/sun4i: Ignore the generic connectors for components Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 173/281] dt-bindings: display: sun4i: Add allwinner,tcon-channel property Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 174/281] mtd: nand: gpmi: Fix gpmi_nand_init() error path Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 175/281] mtd: nand: check ecc->total sanity in nand_scan_tail Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 176/281] KVM: SVM: do not zero out segment attributes if segment is unusable or not present Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 177/281] clk: scpi: fix return type of __scpi_dvfs_round_rate Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 178/281] clk: Fix __set_clk_rates error print-string Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 179/281] powerpc/spufs: Fix coredump of SPU contexts Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 180/281] drm/amdkfd: NULL dereference involving create_process() Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 181/281] ath10k: add BMI parameters to fix calibration from DT/pre-cal Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 182/281] perf trace: Add mmap alias for s390 Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 183/281] qlcnic: Fix a sleep-in-atomic bug in qlcnic_82xx_hw_write_wx_2M and qlcnic_82xx_hw_read_wx_2M Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 184/281] arm64: kernel: restrict /dev/mem read() calls to linear region Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 185/281] mISDN: Fix a sleep-in-atomic bug Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 186/281] net: phy: micrel: Restore led_mode and clk_sel on resume Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 187/281] RDMA/iw_cxgb4: Avoid touch after free error in ARP failure handlers Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 188/281] RDMA/hfi1: fix array termination by appending NULL to attr array Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 189/281] drm/omap: fix tiled buffer stride calculations Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 190/281] powerpc/8xx: fix mpc8xx_get_irq() return on no irq Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 191/281] cxgb4: fix incorrect cim_la output for T6 Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 192/281] Fix serial console on SNI RM400 machines Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 193/281] bio-integrity: Do not allocate integrity context for bio w/o data Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 194/281] ip6_tunnel: fix traffic class routing for tunnels Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 195/281] skbuff: return -EMSGSIZE in skb_to_sgvec to prevent overflow Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 196/281] macsec: check return value of skb_to_sgvec always Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 197/281] sit: reload iphdr in ipip6_rcv Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 198/281] net/mlx4: Fix the check in attaching steering rules Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 199/281] net/mlx4: Check if Granular QoS per VF has been enabled before updating QP qos_vport Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 200/281] perf header: Set proper module name when build-id event found Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 201/281] perf report: Ensure the perf DSO mapping matches what libdw sees Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 202/281] iwlwifi: mvm: fix firmware debug restart recording Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 203/281] watchdog: f71808e_wdt: Add F71868 support Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 204/281] iwlwifi: mvm: Fix command queue number on d0i3 flow Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 205/281] iwlwifi: tt: move ucode_loaded check under mutex Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 206/281] iwlwifi: pcie: only use d0i3 in suspend/resume if system_pm is set to d0i3 Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 207/281] iwlwifi: fix min API version for 7265D, 3168, 8000 and 8265 Sasha Levin
2018-03-19 16:01 ` [PATCH AUTOSEL for 4.9 208/281] tags: honor COMPILED_SOURCE with apart output directory Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 209/281] ARM: dts: qcom: ipq4019: fix i2c_0 node Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 210/281] e1000e: fix race condition around skb_tstamp_tx() Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 211/281] igb: fix race condition with PTP_TX_IN_PROGRESS bits Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 212/281] cxl: Unlock on error in probe Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 213/281] [media] cx25840: fix unchecked return values Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 214/281] [media] mceusb: sporadic RX truncation corruption fix Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 215/281] net: phy: avoid genphy_aneg_done() for PHYs without clause 22 support Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 216/281] ARM: imx: Add MXC_CPU_IMX6ULL and cpu_is_imx6ull Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 217/281] nvme-pci: fix multiple ctrl removal scheduling Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 218/281] nvme: fix hang in remove path Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 219/281] KVM: nVMX: Update vmcs12->guest_linear_address on nested VM-exit Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 220/281] e1000e: Undo e1000e_pm_freeze if __e1000_shutdown fails Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 221/281] perf/core: Correct event creation with PERF_FORMAT_GROUP Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 222/281] sched/deadline: Use the revised wakeup rule for suspending constrained dl tasks Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 223/281] MIPS: mm: fixed mappings: correct initialisation Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 224/281] MIPS: mm: adjust PKMAP location Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 225/281] MIPS: kprobes: flush_insn_slot should flush only if probe initialised Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 226/281] ARM: dts: armadillo800eva: Split LCD mux and gpio Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 227/281] Fix loop device flush before configure v3 Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 228/281] net: emac: fix reset timeout with AR8035 phy Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 229/281] perf tools: Decompress kernel module when reading DSO data Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 230/281] perf tests: Decompress kernel module before objdump Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 231/281] skbuff: only inherit relevant tx_flags Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 232/281] xen: avoid type warning in xchg_xen_ulong Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 233/281] X.509: Fix error code in x509_cert_parse() Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 234/281] pinctrl: meson-gxbb: remove non-existing pin GPIOX_22 Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 235/281] coresight: Fix reference count for software sources Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 236/281] coresight: tmc: Configure DMA mask appropriately Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 237/281] stmmac: fix ptp header for GMAC3 hw timestamp Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 238/281] geneve: add missing rx stats accounting Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 239/281] crypto: omap-sham - buffer handling fixes for hashing later Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 240/281] crypto: omap-sham - fix closing of hash with separate finalize call Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 241/281] bnx2x: Allow vfs to disable txvlan offload Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 242/281] sctp: fix recursive locking warning in sctp_do_peeloff Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 243/281] net: fec: Add a fec_enet_clear_ethtool_stats() stub for CONFIG_M5272 Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 244/281] sparc64: ldc abort during vds iso boot Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 245/281] iio: magnetometer: st_magn_spi: fix spi_device_id table Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 246/281] net: ena: fix rare uncompleted admin command false alarm Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 247/281] net: ena: fix race condition between submit and completion admin command Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 248/281] net: ena: add missing return when ena_com_get_io_handlers() fails Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 249/281] net: ena: add missing unmap bars on device removal Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 250/281] net: ena: disable admin msix while working in polling mode Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 251/281] clk: meson: meson8b: add compatibles for Meson8 and Meson8m2 Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 252/281] Bluetooth: Send HCI Set Event Mask Page 2 command only when needed Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 253/281] cpuidle: dt: Add missing 'of_node_put()' Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 254/281] ACPICA: OSL: Add support to exclude stdarg.h Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 255/281] ACPICA: Events: Add runtime stub support for event APIs Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 256/281] ACPICA: Disassembler: Abort on an invalid/unknown AML opcode Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 257/281] s390/dasd: fix hanging safe offline Sasha Levin
2018-03-19 16:02 ` [PATCH AUTOSEL for 4.9 258/281] vxlan: dont migrate permanent fdb entries during learn Sasha Levin
2018-03-19 16:03 ` [PATCH AUTOSEL for 4.9 259/281] hsr: fix incorrect warning Sasha Levin
2018-03-19 16:03 ` [PATCH AUTOSEL for 4.9 260/281] selftests: kselftest_harness: Fix compile warning Sasha Levin
2018-03-19 16:03 ` [PATCH AUTOSEL for 4.9 261/281] drm/vc4: Fix resource leak in 'vc4_get_hang_state_ioctl()' in error handling path Sasha Levin
2018-03-19 16:03 ` [PATCH AUTOSEL for 4.9 262/281] xfs: fix up agi unlinked list reservations Sasha Levin
2018-03-19 16:03 ` [PATCH AUTOSEL for 4.9 263/281] bcache: stop writeback thread after detaching Sasha Levin
2018-03-19 16:03 ` [PATCH AUTOSEL for 4.9 264/281] bcache: segregate flash only volume write streams Sasha Levin
2018-03-19 16:03 ` [PATCH AUTOSEL for 4.9 265/281] scsi: libsas: fix memory leak in sas_smp_get_phy_events() Sasha Levin
2018-03-19 16:03 ` [PATCH AUTOSEL for 4.9 266/281] scsi: libsas: fix error when getting phy events Sasha Levin
2018-03-19 16:03 ` [PATCH AUTOSEL for 4.9 267/281] scsi: libsas: initialize sas_phy status according to response of DISCOVER Sasha Levin
2018-03-19 16:03 ` [PATCH AUTOSEL for 4.9 268/281] blk-mq: fix kernel oops in blk_mq_tag_idle() Sasha Levin
2018-03-19 16:03 ` [PATCH AUTOSEL for 4.9 269/281] tty: n_gsm: Allow ADM response in addition to UA for control dlci Sasha Levin
2018-03-19 16:03 ` [PATCH AUTOSEL for 4.9 270/281] EDAC, mv64x60: Fix an error handling path Sasha Levin
2018-03-19 16:03 ` [PATCH AUTOSEL for 4.9 271/281] cxgb4vf: Fix SGE FL buffer initialization logic for 64K pages Sasha Levin
2018-03-19 16:03 ` [PATCH AUTOSEL for 4.9 272/281] clk: fix reentrancy of clk_enable() on UP systems Sasha Levin
2018-03-19 16:03 ` [PATCH AUTOSEL for 4.9 273/281] sdhci: Advertise 2.0v supply on SDIO host controller Sasha Levin
2018-03-19 16:03 ` [PATCH AUTOSEL for 4.9 274/281] Input: goodix - disable IRQs while suspended Sasha Levin
2018-03-19 16:03 ` [PATCH AUTOSEL for 4.9 275/281] mtd: mtd_oobtest: Handle bitflips during reads Sasha Levin
2018-03-19 16:03 ` [PATCH AUTOSEL for 4.9 276/281] perf tools: Fix copyfile_offset update of output offset Sasha Levin
2018-03-19 16:03 ` [PATCH AUTOSEL for 4.9 277/281] signal/parisc: Document a conflict with SI_USER with SIGFPE Sasha Levin
2018-03-19 16:03 ` [PATCH AUTOSEL for 4.9 278/281] signal/metag: " Sasha Levin
2018-03-19 16:03 ` [PATCH AUTOSEL for 4.9 279/281] signal/powerpc: Document conflicts with SI_USER and SIGFPE and SIGTRAP Sasha Levin
2018-03-19 16:03 ` [PATCH AUTOSEL for 4.9 280/281] signal/arm: Document conflicts with SI_USER and SIGFPE Sasha Levin
2018-03-19 16:03 ` [PATCH AUTOSEL for 4.9 281/281] xfs: account finobt blocks properly in perag reservation Sasha Levin

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=20180319155742.13731-68-alexander.levin@microsoft.com \
    --to=alexander.levin@microsoft.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=stern@rowland.harvard.edu \
    /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).