Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 26 Apr 2021 08:13:36 GMT
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 8859f73a0309 - stable/13 - linuxkpi: some style, wrap too long lines
Message-ID:  <202104260813.13Q8DanI009293@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by kib:

URL: https://cgit.FreeBSD.org/src/commit/?id=8859f73a030960ffee51dfb64ec292c2eaac421b

commit 8859f73a030960ffee51dfb64ec292c2eaac421b
Author:     Konstantin Belousov <konstantinb@nvidia.com>
AuthorDate: 2021-03-11 06:08:51 +0000
Commit:     Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2021-04-26 07:08:10 +0000

    linuxkpi: some style, wrap too long lines
    
    (cherry picked from commit 4ce1f6162e9eb576ac40f24b8538f55e83ef5eb4)
---
 sys/compat/linuxkpi/common/src/linux_current.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/sys/compat/linuxkpi/common/src/linux_current.c b/sys/compat/linuxkpi/common/src/linux_current.c
index 611d10df3383..081eab8edab1 100644
--- a/sys/compat/linuxkpi/common/src/linux_current.c
+++ b/sys/compat/linuxkpi/common/src/linux_current.c
@@ -236,7 +236,8 @@ linux_current_init(void *arg __unused)
 	linuxkpi_thread_dtor_tag = EVENTHANDLER_REGISTER(thread_dtor,
 	    linuxkpi_thread_dtor, NULL, EVENTHANDLER_PRI_ANY);
 }
-SYSINIT(linux_current, SI_SUB_EVENTHANDLER, SI_ORDER_SECOND, linux_current_init, NULL);
+SYSINIT(linux_current, SI_SUB_EVENTHANDLER, SI_ORDER_SECOND,
+    linux_current_init, NULL);
 
 static void
 linux_current_uninit(void *arg __unused)
@@ -260,4 +261,5 @@ linux_current_uninit(void *arg __unused)
 	EVENTHANDLER_DEREGISTER(thread_dtor, linuxkpi_thread_dtor_tag);
 	lkpi_alloc_current = linux_alloc_current_noop;
 }
-SYSUNINIT(linux_current, SI_SUB_EVENTHANDLER, SI_ORDER_SECOND, linux_current_uninit, NULL);
+SYSUNINIT(linux_current, SI_SUB_EVENTHANDLER, SI_ORDER_SECOND,
+    linux_current_uninit, NULL);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202104260813.13Q8DanI009293>