Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/netinet6 Shorten the name of a workqueue instance to fit...



details:   https://anonhg.NetBSD.org/src/rev/9bf09d9bb923
branches:  trunk
changeset: 359268:9bf09d9bb923
user:      ozaki-r <ozaki-r%NetBSD.org@localhost>
date:      Tue Feb 06 03:37:00 2018 +0000

description:
Shorten the name of a workqueue instance to fit to the limit (15)

diffstat:

 sys/netinet6/ip6_flow.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r db57a5a649f3 -r 9bf09d9bb923 sys/netinet6/ip6_flow.c
--- a/sys/netinet6/ip6_flow.c   Tue Feb 06 03:30:18 2018 +0000
+++ b/sys/netinet6/ip6_flow.c   Tue Feb 06 03:37:00 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ip6_flow.c,v 1.39 2018/01/29 08:27:10 maxv Exp $       */
+/*     $NetBSD: ip6_flow.c,v 1.40 2018/02/06 03:37:00 ozaki-r Exp $    */
 
 /*
  * Copyright (c) 2007 The NetBSD Foundation, Inc.
@@ -38,7 +38,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ip6_flow.c,v 1.39 2018/01/29 08:27:10 maxv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ip6_flow.c,v 1.40 2018/02/06 03:37:00 ozaki-r Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_net_mpsafe.h"
@@ -231,7 +231,7 @@
 {
        int ret, error;
 
-       error = workqueue_create(&ip6flow_slowtimo_wq, "ip6flow_slowtimo",
+       error = workqueue_create(&ip6flow_slowtimo_wq, "ip6flow",
            ip6flow_slowtimo_work, NULL, PRI_SOFTNET, IPL_SOFTNET, WQ_MPSAFE);
        if (error != 0)
                panic("%s: workqueue_create failed (%d)\n", __func__, error);



Home | Main Index | Thread Index | Old Index