svn commit: r346922 - stable/11/sys/dev/cxgbe/iw_cxgbe
Navdeep Parhar
np at FreeBSD.org
Mon Apr 29 19:47:22 UTC 2019
Author: np
Date: Mon Apr 29 19:47:21 2019
New Revision: 346922
URL: https://svnweb.freebsd.org/changeset/base/346922
Log:
MFC r339667:
cxgbe/iw_cxgbe: save the ep in the driver-private provider_data field.
Submitted By: Lily Wang @ Netapp
Modified:
stable/11/sys/dev/cxgbe/iw_cxgbe/cm.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/sys/dev/cxgbe/iw_cxgbe/cm.c
==============================================================================
--- stable/11/sys/dev/cxgbe/iw_cxgbe/cm.c Mon Apr 29 19:37:16 2019 (r346921)
+++ stable/11/sys/dev/cxgbe/iw_cxgbe/cm.c Mon Apr 29 19:47:21 2019 (r346922)
@@ -2531,6 +2531,7 @@ int c4iw_connect(struct iw_cm_id *cm_id, struct iw_cm_
goto out;
}
ep = alloc_ep(sizeof(*ep), GFP_KERNEL);
+ cm_id->provider_data = ep;
init_timer(&ep->timer);
ep->plen = conn_param->private_data_len;
More information about the svn-src-all
mailing list