Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 24 Jan 2023 22:14:15 GMT
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: dd0f00db08e0 - stable/13 - kboot: Sort kexec_load alphabetically
Message-ID:  <202301242214.30OMEFKv089571@gitrepo.freebsd.org>

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

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

commit dd0f00db08e08aedab330fcc54fd6994afe17657
Author:     Warner Losh <imp@FreeBSD.org>
AuthorDate: 2023-01-07 20:24:45 +0000
Commit:     Warner Losh <imp@FreeBSD.org>
CommitDate: 2023-01-24 21:49:45 +0000

    kboot: Sort kexec_load alphabetically
    
    Sponsored by:           Netflix
    Differential Revision:  https://reviews.freebsd.org/D37968
    
    (cherry picked from commit a0e4d18091a4fab66c4eb7c5dc731f78a2f9b0a3)
---
 stand/kboot/host_syscalls.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/stand/kboot/host_syscalls.c b/stand/kboot/host_syscalls.c
index 1ffa04948fdf..092ddfd133fd 100644
--- a/stand/kboot/host_syscalls.c
+++ b/stand/kboot/host_syscalls.c
@@ -60,12 +60,6 @@ host_ioctl(int fd, unsigned long request, unsigned long arg)
 	return host_syscall(SYS_ioctl, fd, request, arg);
 }
 
-int
-host_kexec_load(unsigned long entry, unsigned long nsegs, struct host_kexec_segment *segs, unsigned long flags)
-{
-	return host_syscall(SYS_kexec_load, entry, nsegs, segs, flags);
-}
-
 ssize_t
 host_llseek(int fd, int32_t offset_high, int32_t offset_lo, uint64_t *result, int whence)
 {
@@ -80,6 +74,12 @@ host_llseek(int fd, int32_t offset_high, int32_t offset_lo, uint64_t *result, in
 #endif
 }
 
+int
+host_kexec_load(unsigned long entry, unsigned long nsegs, struct host_kexec_segment *segs, unsigned long flags)
+{
+	return host_syscall(SYS_kexec_load, entry, nsegs, segs, flags);
+}
+
 int
 host_mkdir(const char *path, host_mode_t mode)
 {



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