diff --git a/sys/boot/i386/libi386/bootinfo.c b/sys/boot/i386/libi386/bootinfo.c index 92347e58cb53..ecd69a22a61a 100644 --- a/sys/boot/i386/libi386/bootinfo.c +++ b/sys/boot/i386/libi386/bootinfo.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: bootinfo.c,v 1.11 1998/10/09 07:11:19 msmith Exp $ + * $Id: bootinfo.c,v 1.12 1998/10/09 23:24:55 peter Exp $ */ #include @@ -166,7 +166,7 @@ bi_copyenv(vm_offset_t addr) COPY32(t, a); \ COPY32(strlen(s) + 1, a); \ i386_copyin(s, a, strlen(s) + 1); \ - a += roundup(strlen(s) + 1, sizeof(u_int32_t));\ + a += roundup(strlen(s) + 1, sizeof(u_long));\ } #define MOD_NAME(a, s) MOD_STR(MODINFO_NAME, a, s) @@ -176,7 +176,7 @@ bi_copyenv(vm_offset_t addr) COPY32(t, a); \ COPY32(sizeof(s), a); \ i386_copyin(&s, a, sizeof(s)); \ - a += roundup(sizeof(s), sizeof(u_int32_t)); \ + a += roundup(sizeof(s), sizeof(u_long)); \ } #define MOD_ADDR(a, s) MOD_VAR(MODINFO_ADDR, a, s) @@ -186,7 +186,7 @@ bi_copyenv(vm_offset_t addr) COPY32(MODINFO_METADATA | mm->md_type, a); \ COPY32(mm->md_size, a); \ i386_copyin(mm->md_data, a, mm->md_size); \ - a += roundup(mm->md_size, sizeof(u_int32_t));\ + a += roundup(mm->md_size, sizeof(u_long));\ } #define MOD_END(a) { \ diff --git a/sys/boot/i386/libi386/bootinfo32.c b/sys/boot/i386/libi386/bootinfo32.c index 92347e58cb53..ecd69a22a61a 100644 --- a/sys/boot/i386/libi386/bootinfo32.c +++ b/sys/boot/i386/libi386/bootinfo32.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: bootinfo.c,v 1.11 1998/10/09 07:11:19 msmith Exp $ + * $Id: bootinfo.c,v 1.12 1998/10/09 23:24:55 peter Exp $ */ #include @@ -166,7 +166,7 @@ bi_copyenv(vm_offset_t addr) COPY32(t, a); \ COPY32(strlen(s) + 1, a); \ i386_copyin(s, a, strlen(s) + 1); \ - a += roundup(strlen(s) + 1, sizeof(u_int32_t));\ + a += roundup(strlen(s) + 1, sizeof(u_long));\ } #define MOD_NAME(a, s) MOD_STR(MODINFO_NAME, a, s) @@ -176,7 +176,7 @@ bi_copyenv(vm_offset_t addr) COPY32(t, a); \ COPY32(sizeof(s), a); \ i386_copyin(&s, a, sizeof(s)); \ - a += roundup(sizeof(s), sizeof(u_int32_t)); \ + a += roundup(sizeof(s), sizeof(u_long)); \ } #define MOD_ADDR(a, s) MOD_VAR(MODINFO_ADDR, a, s) @@ -186,7 +186,7 @@ bi_copyenv(vm_offset_t addr) COPY32(MODINFO_METADATA | mm->md_type, a); \ COPY32(mm->md_size, a); \ i386_copyin(mm->md_data, a, mm->md_size); \ - a += roundup(mm->md_size, sizeof(u_int32_t));\ + a += roundup(mm->md_size, sizeof(u_long));\ } #define MOD_END(a) { \ diff --git a/sys/boot/i386/libi386/bootinfo64.c b/sys/boot/i386/libi386/bootinfo64.c index 92347e58cb53..ecd69a22a61a 100644 --- a/sys/boot/i386/libi386/bootinfo64.c +++ b/sys/boot/i386/libi386/bootinfo64.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: bootinfo.c,v 1.11 1998/10/09 07:11:19 msmith Exp $ + * $Id: bootinfo.c,v 1.12 1998/10/09 23:24:55 peter Exp $ */ #include @@ -166,7 +166,7 @@ bi_copyenv(vm_offset_t addr) COPY32(t, a); \ COPY32(strlen(s) + 1, a); \ i386_copyin(s, a, strlen(s) + 1); \ - a += roundup(strlen(s) + 1, sizeof(u_int32_t));\ + a += roundup(strlen(s) + 1, sizeof(u_long));\ } #define MOD_NAME(a, s) MOD_STR(MODINFO_NAME, a, s) @@ -176,7 +176,7 @@ bi_copyenv(vm_offset_t addr) COPY32(t, a); \ COPY32(sizeof(s), a); \ i386_copyin(&s, a, sizeof(s)); \ - a += roundup(sizeof(s), sizeof(u_int32_t)); \ + a += roundup(sizeof(s), sizeof(u_long)); \ } #define MOD_ADDR(a, s) MOD_VAR(MODINFO_ADDR, a, s) @@ -186,7 +186,7 @@ bi_copyenv(vm_offset_t addr) COPY32(MODINFO_METADATA | mm->md_type, a); \ COPY32(mm->md_size, a); \ i386_copyin(mm->md_data, a, mm->md_size); \ - a += roundup(mm->md_size, sizeof(u_int32_t));\ + a += roundup(mm->md_size, sizeof(u_long));\ } #define MOD_END(a) { \ diff --git a/sys/kern/subr_module.c b/sys/kern/subr_module.c index 2d58c8a558a7..7eb635a13bde 100644 --- a/sys/kern/subr_module.c +++ b/sys/kern/subr_module.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: subr_module.c,v 1.2 1998/10/09 23:59:01 peter Exp $ + * $Id: subr_module.c,v 1.3 1998/10/12 09:03:48 peter Exp $ */ #include @@ -62,7 +62,7 @@ preload_search_by_name(const char *name) /* skip to next field */ next = sizeof(u_int32_t) * 2 + hdr[1]; - next = roundup(next, sizeof(u_int32_t)); + next = roundup(next, sizeof(u_long)); curp += next; } } @@ -99,7 +99,7 @@ preload_search_by_type(const char *type) /* skip to next field */ next = sizeof(u_int32_t) * 2 + hdr[1]; - next = roundup(next, sizeof(u_int32_t)); + next = roundup(next, sizeof(u_long)); curp += next; } } @@ -124,7 +124,7 @@ preload_search_next_name(caddr_t base) curp = base; hdr = (u_int32_t *)curp; next = sizeof(u_int32_t) * 2 + hdr[1]; - next = roundup(next, sizeof(u_int32_t)); + next = roundup(next, sizeof(u_long)); curp += next; } else curp = preload_metadata; @@ -140,7 +140,7 @@ preload_search_next_name(caddr_t base) /* skip to next field */ next = sizeof(u_int32_t) * 2 + hdr[1]; - next = roundup(next, sizeof(u_int32_t)); + next = roundup(next, sizeof(u_long)); curp += next; } } @@ -186,7 +186,7 @@ preload_search_info(caddr_t mod, int inf) /* skip to next field */ next = sizeof(u_int32_t) * 2 + hdr[1]; - next = roundup(next, sizeof(u_int32_t)); + next = roundup(next, sizeof(u_long)); curp += next; } return(NULL); @@ -224,7 +224,7 @@ preload_delete_name(const char *name) /* skip to next field */ next = sizeof(u_int32_t) * 2 + hdr[1]; - next = roundup(next, sizeof(u_int32_t)); + next = roundup(next, sizeof(u_long)); curp += next; } } @@ -260,7 +260,7 @@ preload_bootstrap_relocate(vm_offset_t offset) /* skip to next field */ next = sizeof(u_int32_t) * 2 + hdr[1]; - next = roundup(next, sizeof(u_int32_t)); + next = roundup(next, sizeof(u_long)); curp += next; } }