svn commit: r323887 - head/sys/kern

Stephen Hurd shurd at FreeBSD.org
Thu Sep 21 23:27:36 UTC 2017


Author: shurd
Date: Thu Sep 21 23:27:35 2017
New Revision: 323887
URL: https://svnweb.freebsd.org/changeset/base/323887

Log:
  Fix undeclared identifier error introduced in r323879
  
  It doesn't appear to be safe to use gtask->gt_name.
  
  Reported by:	Mark Johnston, Jenkins
  Reviewed by:	sbruno
  Approved by:	sbruno (mentor)
  Sponsored by:	Limelight Networks
  Differential Revision:	https://reviews.freebsd.org/D12448

Modified:
  head/sys/kern/subr_gtaskqueue.c

Modified: head/sys/kern/subr_gtaskqueue.c
==============================================================================
--- head/sys/kern/subr_gtaskqueue.c	Thu Sep 21 23:22:18 2017	(r323886)
+++ head/sys/kern/subr_gtaskqueue.c	Thu Sep 21 23:27:35 2017	(r323887)
@@ -775,7 +775,7 @@ taskqgroup_attach_cpu_deferred(struct taskqgroup *qgro
 		}
 	if (qid == -1) {
 		mtx_unlock(&qgroup->tqg_lock);
-		printf("%s: qid not found for %s cpu=%d\n", __func__, name, cpu);
+		printf("%s: qid not found for cpu=%d\n", __func__, cpu);
 		return (EINVAL);
 	}
 	qgroup->tqg_queue[qid].tgc_cnt++;


More information about the svn-src-all mailing list