kboot: Sort kexec_load alphabetically

Sponsored by:		Netflix
Differential Revision:	https://reviews.freebsd.org/D37968
This commit is contained in:
Warner Losh 2023-01-07 13:24:45 -07:00
parent 2f5f17b80c
commit a0e4d18091

View file

@ -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)
{