10000 loader: stop using ../zfs/libzfs.h but instead use libzfs.h
Review Request #1293 — Created Nov. 21, 2018 and submitted
Information | |
---|---|
tsoome | |
illumos-gate | |
10000 | |
|
|
ba7c777... | |
Reviewers | |
general | |
FreeBSD update: https://svnweb.freebsd.org/base?view=revision&revision=336085 Remove LOADER_ZFS_SUPPORT define - we only build with ZFS.
-
-
usr/src/boot/sys/boot/userboot/userboot/main.c (Diff revision 1) Unnecessary
#endif /* USERBOOT_ZFS_SUPPORT */
.
Commit: |
|
||||
---|---|---|---|---|---|
Diff: |
Revision 2 (+24 -164) |
Change Summary:
whitespace nits
Commit: |
|
||||
---|---|---|---|---|---|
Diff: |
Revision 3 (+33 -101) |
-
Format string mismatches.
-
usr/src/boot/sys/boot/i386/loader/main.c (Diff revision 3) Both
bios_basemem
andbios_extmem
are unsigned variables.
Shuld be:printf("BIOS %ukB/%ukB available memory\n", bios_basemem / 1024, bios_extmem / 1024);
-
usr/src/boot/sys/boot/sparc64/loader/main.c (Diff revision 3) index
is unsigned:panic("%s: can't enter dTLB slot %u data " "%#lx va %#lx", __func__, index, data, va);
-