Date: Thu, 19 Nov 2009 15:45:24 +0000 (UTC) From: Jung-uk Kim <jkim@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r199531 - in head/sys: amd64/amd64 i386/i386 Message-ID: <200911191545.nAJFjOBN010824@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jkim Date: Thu Nov 19 15:45:24 2009 New Revision: 199531 URL: http://svn.freebsd.org/changeset/base/199531 Log: Fix tinderbox build for i386 and sync amd64 with it. Modified: head/sys/amd64/amd64/bpf_jit_machdep.c head/sys/i386/i386/bpf_jit_machdep.c Modified: head/sys/amd64/amd64/bpf_jit_machdep.c ============================================================================== --- head/sys/amd64/amd64/bpf_jit_machdep.c Thu Nov 19 15:28:08 2009 (r199530) +++ head/sys/amd64/amd64/bpf_jit_machdep.c Thu Nov 19 15:45:24 2009 (r199531) @@ -491,7 +491,7 @@ bpf_jit_compile(struct bpf_insn *prog, u #ifdef _KERNEL stream.ibuf = (char *)contigmalloc(stream.cur_ip, M_BPFJIT, - M_NOWAIT, 0, ~0ULL, 16, 0); + M_NOWAIT, 0, ~0UL, 16, 0); if (stream.ibuf == NULL) break; #else Modified: head/sys/i386/i386/bpf_jit_machdep.c ============================================================================== --- head/sys/i386/i386/bpf_jit_machdep.c Thu Nov 19 15:28:08 2009 (r199530) +++ head/sys/i386/i386/bpf_jit_machdep.c Thu Nov 19 15:45:24 2009 (r199531) @@ -514,7 +514,7 @@ bpf_jit_compile(struct bpf_insn *prog, u #ifdef _KERNEL stream.ibuf = (char *)contigmalloc(stream.cur_ip, M_BPFJIT, - M_NOWAIT, 0, ~0ULL, 16, 0); + M_NOWAIT, 0, ~0UL, 16, 0); if (stream.ibuf == NULL) break; #else
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200911191545.nAJFjOBN010824>