stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	stable@vger.kernel.org, Slava Shwartsman <valyushash@gmail.com>,
	Sagi Grimberg <sagig@mellanox.com>,
	Nicholas Bellinger <nab@linux-iscsi.org>
Subject: [PATCH 3.18 075/183] iser-target: Handle ADDR_CHANGE event for listener cm_id
Date: Sun, 25 Jan 2015 10:06:37 -0800	[thread overview]
Message-ID: <20150125180813.434019464@linuxfoundation.org> (raw)
In-Reply-To: <20150125180810.160428929@linuxfoundation.org>

3.18-stable review patch.  If anyone has any objections, please let me know.

------------------

From: Sagi Grimberg <sagig@mellanox.com>

commit ca6c1d82d12d8013fb75ce015900d62b9754623c upstream.

The np listener cm_id will also get ADDR_CHANGE event
upcall (in case it is bound to a specific IP). Handle
it correctly by creating a new cm_id and implicitly
destroy the old one.

Since this is the second event a listener np cm_id may
encounter, we move the np cm_id event handling to a
routine.

Squashed:

iser-target: Move cma_id setup to a function

Reported-by: Slava Shwartsman <valyushash@gmail.com>
Signed-off-by: Sagi Grimberg <sagig@mellanox.com>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

---
 drivers/infiniband/ulp/isert/ib_isert.c |  107 ++++++++++++++++++++++----------
 drivers/infiniband/ulp/isert/ib_isert.h |    1 
 2 files changed, 77 insertions(+), 31 deletions(-)

--- a/drivers/infiniband/ulp/isert/ib_isert.c
+++ b/drivers/infiniband/ulp/isert/ib_isert.c
@@ -58,6 +58,7 @@ static int
 isert_rdma_post_recvl(struct isert_conn *isert_conn);
 static int
 isert_rdma_accept(struct isert_conn *isert_conn);
+struct rdma_cm_id *isert_setup_id(struct isert_np *isert_np);
 
 static void
 isert_qp_event_callback(struct ib_event *e, void *context)
@@ -573,8 +574,8 @@ err:
 static int
 isert_connect_request(struct rdma_cm_id *cma_id, struct rdma_cm_event *event)
 {
-	struct iscsi_np *np = cma_id->context;
-	struct isert_np *isert_np = np->np_context;
+	struct isert_np *isert_np = cma_id->context;
+	struct iscsi_np *np = isert_np->np;
 	struct isert_conn *isert_conn;
 	struct isert_device *device;
 	struct ib_device *ib_dev = cma_id->device;
@@ -851,17 +852,41 @@ isert_conn_terminate(struct isert_conn *
 }
 
 static int
-isert_disconnected_handler(struct rdma_cm_id *cma_id)
+isert_np_cma_handler(struct isert_np *isert_np,
+		     enum rdma_cm_event_type event)
 {
-	struct iscsi_np *np = cma_id->context;
-	struct isert_np *isert_np = np->np_context;
-	struct isert_conn *isert_conn;
+	pr_debug("isert np %p, handling event %d\n", isert_np, event);
 
-	if (isert_np->np_cm_id == cma_id) {
+	switch (event) {
+	case RDMA_CM_EVENT_DEVICE_REMOVAL:
 		isert_np->np_cm_id = NULL;
-		return -1;
+		break;
+	case RDMA_CM_EVENT_ADDR_CHANGE:
+		isert_np->np_cm_id = isert_setup_id(isert_np);
+		if (IS_ERR(isert_np->np_cm_id)) {
+			pr_err("isert np %p setup id failed: %ld\n",
+				 isert_np, PTR_ERR(isert_np->np_cm_id));
+			isert_np->np_cm_id = NULL;
+		}
+		break;
+	default:
+		pr_err("isert np %p Unexpected event %d\n",
+			  isert_np, event);
 	}
 
+	return -1;
+}
+
+static int
+isert_disconnected_handler(struct rdma_cm_id *cma_id,
+			   enum rdma_cm_event_type event)
+{
+	struct isert_np *isert_np = cma_id->context;
+	struct isert_conn *isert_conn;
+
+	if (isert_np->np_cm_id == cma_id)
+		return isert_np_cma_handler(cma_id->context, event);
+
 	isert_conn = cma_id->qp->qp_context;
 
 	mutex_lock(&isert_conn->conn_mutex);
@@ -904,7 +929,7 @@ isert_cma_handler(struct rdma_cm_id *cma
 	case RDMA_CM_EVENT_DISCONNECTED:   /* FALLTHRU */
 	case RDMA_CM_EVENT_DEVICE_REMOVAL: /* FALLTHRU */
 	case RDMA_CM_EVENT_TIMEWAIT_EXIT:  /* FALLTHRU */
-		ret = isert_disconnected_handler(cma_id);
+		ret = isert_disconnected_handler(cma_id, event->event);
 		break;
 	case RDMA_CM_EVENT_REJECTED:       /* FALLTHRU */
 	case RDMA_CM_EVENT_UNREACHABLE:    /* FALLTHRU */
@@ -3065,13 +3090,51 @@ isert_response_queue(struct iscsi_conn *
 	return ret;
 }
 
+struct rdma_cm_id *
+isert_setup_id(struct isert_np *isert_np)
+{
+	struct iscsi_np *np = isert_np->np;
+	struct rdma_cm_id *id;
+	struct sockaddr *sa;
+	int ret;
+
+	sa = (struct sockaddr *)&np->np_sockaddr;
+	pr_debug("ksockaddr: %p, sa: %p\n", &np->np_sockaddr, sa);
+
+	id = rdma_create_id(isert_cma_handler, isert_np,
+			    RDMA_PS_TCP, IB_QPT_RC);
+	if (IS_ERR(id)) {
+		pr_err("rdma_create_id() failed: %ld\n", PTR_ERR(id));
+		ret = PTR_ERR(id);
+		goto out;
+	}
+	pr_debug("id %p context %p\n", id, id->context);
+
+	ret = rdma_bind_addr(id, sa);
+	if (ret) {
+		pr_err("rdma_bind_addr() failed: %d\n", ret);
+		goto out_id;
+	}
+
+	ret = rdma_listen(id, ISERT_RDMA_LISTEN_BACKLOG);
+	if (ret) {
+		pr_err("rdma_listen() failed: %d\n", ret);
+		goto out_id;
+	}
+
+	return id;
+out_id:
+	rdma_destroy_id(id);
+out:
+	return ERR_PTR(ret);
+}
+
 static int
 isert_setup_np(struct iscsi_np *np,
 	       struct __kernel_sockaddr_storage *ksockaddr)
 {
 	struct isert_np *isert_np;
 	struct rdma_cm_id *isert_lid;
-	struct sockaddr *sa;
 	int ret;
 
 	isert_np = kzalloc(sizeof(struct isert_np), GFP_KERNEL);
@@ -3083,9 +3146,8 @@ isert_setup_np(struct iscsi_np *np,
 	mutex_init(&isert_np->np_accept_mutex);
 	INIT_LIST_HEAD(&isert_np->np_accept_list);
 	init_completion(&isert_np->np_login_comp);
+	isert_np->np = np;
 
-	sa = (struct sockaddr *)ksockaddr;
-	pr_debug("ksockaddr: %p, sa: %p\n", ksockaddr, sa);
 	/*
 	 * Setup the np->np_sockaddr from the passed sockaddr setup
 	 * in iscsi_target_configfs.c code..
@@ -3093,37 +3155,20 @@ isert_setup_np(struct iscsi_np *np,
 	memcpy(&np->np_sockaddr, ksockaddr,
 	       sizeof(struct __kernel_sockaddr_storage));
 
-	isert_lid = rdma_create_id(isert_cma_handler, np, RDMA_PS_TCP,
-				IB_QPT_RC);
+	isert_lid = isert_setup_id(isert_np);
 	if (IS_ERR(isert_lid)) {
-		pr_err("rdma_create_id() for isert_listen_handler failed: %ld\n",
-		       PTR_ERR(isert_lid));
 		ret = PTR_ERR(isert_lid);
 		goto out;
 	}
 
-	ret = rdma_bind_addr(isert_lid, sa);
-	if (ret) {
-		pr_err("rdma_bind_addr() for isert_lid failed: %d\n", ret);
-		goto out_lid;
-	}
-
-	ret = rdma_listen(isert_lid, ISERT_RDMA_LISTEN_BACKLOG);
-	if (ret) {
-		pr_err("rdma_listen() for isert_lid failed: %d\n", ret);
-		goto out_lid;
-	}
-
 	isert_np->np_cm_id = isert_lid;
 	np->np_context = isert_np;
-	pr_debug("Setup isert_lid->context: %p\n", isert_lid->context);
 
 	return 0;
 
-out_lid:
-	rdma_destroy_id(isert_lid);
 out:
 	kfree(isert_np);
+
 	return ret;
 }
 
--- a/drivers/infiniband/ulp/isert/ib_isert.h
+++ b/drivers/infiniband/ulp/isert/ib_isert.h
@@ -183,6 +183,7 @@ struct isert_device {
 };
 
 struct isert_np {
+	struct iscsi_np         *np;
 	struct semaphore	np_sem;
 	struct rdma_cm_id	*np_cm_id;
 	struct mutex		np_accept_mutex;



  parent reply	other threads:[~2015-01-25 18:06 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 ` Greg Kroah-Hartman [this message]
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   ` [PATCH 3.18 105/183] [media] af9005: fix kernel panic on init if compiled without IR Luca Olivetti
2015-01-25 22:01     ` 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=20150125180813.434019464@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=nab@linux-iscsi.org \
    --cc=sagig@mellanox.com \
    --cc=stable@vger.kernel.org \
    --cc=valyushash@gmail.com \
    /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).