Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/net Fix breaking character limit. Pointed out by ozaki-r...
details: https://anonhg.NetBSD.org/src/rev/578fe6472114
branches: trunk
changeset: 359265:578fe6472114
user: knakahara <knakahara%NetBSD.org@localhost>
date: Tue Feb 06 03:15:15 2018 +0000
description:
Fix breaking character limit. Pointed out by ozaki-r@n.o, thanks.
diffstat:
sys/net/if_spppsubr.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 146947c037cf -r 578fe6472114 sys/net/if_spppsubr.c
--- a/sys/net/if_spppsubr.c Tue Feb 06 03:06:41 2018 +0000
+++ b/sys/net/if_spppsubr.c Tue Feb 06 03:15:15 2018 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: if_spppsubr.c,v 1.178 2017/12/28 07:06:36 ozaki-r Exp $ */
+/* $NetBSD: if_spppsubr.c,v 1.179 2018/02/06 03:15:15 knakahara Exp $ */
/*
* Synchronous PPP/Cisco link level subroutines.
@@ -41,7 +41,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_spppsubr.c,v 1.178 2017/12/28 07:06:36 ozaki-r Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_spppsubr.c,v 1.179 2018/02/06 03:15:15 knakahara Exp $");
#if defined(_KERNEL_OPT)
#include "opt_inet.h"
@@ -2969,7 +2969,7 @@
sp->pp_rseq[IDX_IPCP] = 0;
callout_init(&sp->ch[IDX_IPCP], CALLOUT_MPSAFE);
- error = workqueue_create(&sp->ipcp.update_addrs_wq, "ipcp_update_addrs",
+ error = workqueue_create(&sp->ipcp.update_addrs_wq, "ipcp_addr",
sppp_update_ip_addrs_work, sp, PRI_SOFTNET, IPL_NET, 0);
if (error)
panic("%s: update_addrs workqueue_create failed (%d)\n",
Home |
Main Index |
Thread Index |
Old Index