svn commit: r339667 - head/sys/dev/cxgbe/iw_cxgbe

Navdeep Parhar np at FreeBSD.org
Tue Oct 23 18:32:56 UTC 2018


Author: np
Date: Tue Oct 23 18:32:55 2018
New Revision: 339667
URL: https://svnweb.freebsd.org/changeset/base/339667

Log:
  cxgbe/iw_cxgbe: save the ep in the driver-private provider_data field.
  
  Submitted By: Lily Wang @ Netapp
  
  MFC after:	1 week

Modified:
  head/sys/dev/cxgbe/iw_cxgbe/cm.c

Modified: head/sys/dev/cxgbe/iw_cxgbe/cm.c
==============================================================================
--- head/sys/dev/cxgbe/iw_cxgbe/cm.c	Tue Oct 23 18:31:39 2018	(r339666)
+++ head/sys/dev/cxgbe/iw_cxgbe/cm.c	Tue Oct 23 18:32:55 2018	(r339667)
@@ -2540,6 +2540,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-head mailing list