svn commit: r291047 - head/sys/ofed/drivers/net/mlx4

Garrett Cooper ngie at FreeBSD.org
Thu Nov 19 01:08:17 UTC 2015


Author: ngie
Date: Thu Nov 19 01:08:16 2015
New Revision: 291047
URL: https://svnweb.freebsd.org/changeset/base/291047

Log:
  Don't leak work if __mlx4_register_vlan(..) fails in
  mlx4_master_immediate_activate_vlan_qos(..)
  
  MFC after: 3 days
  Differential Revision: https://reviews.freebsd.org/D4203
  Submitted by: Miles Olrich <miles.olrich at isilon.com>
  Sponsored by: EMC / Isilon Storage Division

Modified:
  head/sys/ofed/drivers/net/mlx4/cmd.c

Modified: head/sys/ofed/drivers/net/mlx4/cmd.c
==============================================================================
--- head/sys/ofed/drivers/net/mlx4/cmd.c	Thu Nov 19 00:45:36 2015	(r291046)
+++ head/sys/ofed/drivers/net/mlx4/cmd.c	Thu Nov 19 01:08:16 2015	(r291047)
@@ -1784,6 +1784,7 @@ static int mlx4_master_immediate_activat
 				mlx4_warn((&priv->dev),
 					  "No vlan resources slave %d, port %d\n",
 					  slave, port);
+				kfree(work);
 				return err;
 			}
 		} else {


More information about the svn-src-all mailing list