Link [ NetBSD | NetBSD OpenGrok source search | PR fulltext-search | Summary of daily snapshot builds | history of daily build result | pkgsrc commit viewer ]


   
        usage: [branch:branch] [user:user] [path@revision] keyword [... [-excludekeyword [...]]] (e.g. branch:MAIN sys/arch/arm, if_wm.c@1.234 )




switch to index mode

recent branches: MAIN (2h)  netbsd-8 (5d)  netbsd-10 (6d)  netbsd-9 (12d)  thorpej-ifq (175d)  thorpej-altq-separation (178d) 

2024-05-10 14:36:06 UTC Now

2009-10-14 20:05:08 UTC netbsd-5 commitmail json YAML

Pull up the following additional revisions(s) required by ticket #784:
etc/Makefile: revision 1.365
etc/audit-packages.conf: remove

Fix update release build (pointed out by tsutsui).

(sborrill)

2009-10-14 19:25:39 UTC MAIN commitmail json YAML

Error out of ptcread() if the uio length supplied is zero before the code
has a chance to panic in ureadc().

(dsl)

2009-10-14 19:14:39 UTC MAIN commitmail json YAML

2009-10-14 19:08:56 UTC MAIN commitmail json YAML

Do not use .Xo/.Xc to work around ancient groff limits.

(joerg)

2009-10-14 19:03:12 UTC MAIN commitmail json YAML

Bomb if TOOLDIR, DESTDIR, or RELEASEDIR changes after we have created the
top level object directory.  This can happen if /etc/mk.conf overrides
values passed to build.sh in the environment or on the command line.

(apb)

2009-10-14 18:54:01 UTC MAIN commitmail json YAML

Don't pass a NULL arg to DIOCCACHESYNC, sd(4) dereferences it.
Pass a pointer to a int initialized to 1, so that a DIOCCACHESYNC will be
forced on sd(4).
Should fix dom0 panic reported by Sarton O'Brien.

(bouyer)

2009-10-14 18:40:01 UTC netbsd-5-0 commitmail json YAML

2009-10-14 18:37:30 UTC netbsd-5-0 commitmail json YAML

Pull up the following revisions(s) (requested by christos in ticket #1091):
usr.bin/printf/printf.c: revision 1.34

Avoid segv on "printf '%*********s' 666".

(sborrill)

2009-10-14 18:34:14 UTC MAIN commitmail json YAML

Do not use .Xo/.Xc to work around ancient groff limits.
Fix markup.

(joerg)

2009-10-14 18:33:48 UTC netbsd-5 commitmail json YAML

Remainder of ticket 1090 (+ whitespace changes)

(sborrill)

2009-10-14 18:30:32 UTC netbsd-5 commitmail json YAML

Pull up the following revisions(s) (requested by joerg in ticket #1090):
crypto/dist/heimdal/lib/krb5/krb5_keytab.3: revision 1.10
crypto/dist/heimdal/lib/krb5/krb5_get_creds.3: revision 1.2

Fix markup (remainder of pullup request).

(sborrill)

2009-10-14 18:22:50 UTC MAIN commitmail json YAML

2009-10-14 18:22:04 UTC MAIN commitmail json YAML

Don't use .Xo/.Xc to work around ancient groff limits.
Set only one list type.

(joerg)

2009-10-14 18:18:53 UTC MAIN commitmail json YAML

2009-10-14 18:17:01 UTC netbsd-5 commitmail json YAML

2009-10-14 18:16:41 UTC MAIN commitmail json YAML

2009-10-14 18:14:48 UTC MAIN commitmail json YAML

Actually, adjust previous a bit: instead of preserving the names
of the external interfaces and namespacing the internal ones to
"rumppriv", put the external ones in a "rump_pub" namespace.  While
this requires adjusting all of the external callers of these
interfaces, it is the right thing to do in the long run, since it
clarifies the structure.

(pooka)

2009-10-14 18:13:21 UTC netbsd-5 commitmail json YAML

2009-10-14 18:12:55 UTC netbsd-5 commitmail json YAML

Pull up the following revisions(s) (requested by christos in ticket #1091):
usr.bin/printf/printf.c: revision 1.34

Avoid segv on "printf '%*********s' 666".

(sborrill)

2009-10-14 18:10:21 UTC netbsd-5 commitmail json YAML

Apply patch (requested by mrg in ticket #1062):
Move entry for /usr/X11R7/lib/X11/xkb/compiled to the xbase set,
fixing non-X11 builds.

(snj)

2009-10-14 17:44:59 UTC MAIN commitmail json YAML

Do not use .Xo/.Xc to workaround ancient groff limits.

(joerg)

2009-10-14 17:44:25 UTC MAIN commitmail json YAML

Do not use .Xo/.Xc to workaround ancient groff limits.

(joerg)

2009-10-14 17:37:07 UTC MAIN commitmail json YAML

2009-10-14 17:35:41 UTC MAIN commitmail json YAML

2009-10-14 17:34:08 UTC MAIN commitmail json YAML

This wasn't supposed to go in -- the tree is under temporary
component boundary breakage.

(pooka)

2009-10-14 17:33:56 UTC MAIN commitmail json YAML

2009-10-14 17:33:20 UTC MAIN commitmail json YAML

2009-10-14 17:30:52 UTC MAIN commitmail json YAML

g/c some stuff which wasn't supposed to see the light of day

(pooka)

2009-10-14 17:30:51 UTC MAIN commitmail json YAML

add rump public interface headers

(pooka)

2009-10-14 17:29:20 UTC MAIN commitmail json YAML

2009-10-14 17:28:14 UTC MAIN commitmail json YAML

2009-10-14 17:26:09 UTC MAIN commitmail json YAML

adjust whitespace a bit

(pooka)

2009-10-14 17:24:03 UTC MAIN commitmail json YAML

Do not nest displays, use lists instead. Discussed with wiz.
Fix markup.

(joerg)

2009-10-14 17:17:00 UTC MAIN commitmail json YAML

Create rump public interfaces from description tables.  This allows
us to control and wrap all entry points from "userspace" into rump.
This in turn is necessary for the upcoming rump cpu scheduler.

For each interface "foo" a public wrapper called "rump_foo" is
created.  It calls the internal implementation "rumppriv_foo".  In
case foo is to be called from inside of rump kernel space, the
private interface "rumppriv_foo" is used -- the userspace wrapper
prototypes are not even exported into the rump kernel namespace.
Needless to say, the rump kernel internal interfaces are not exported
for users.

Now, three classes of interfaces fight for control of rump:
  + the noble local control interfaces (which this commit addresses)
  + the insidious rump system calls (which are generated from syscalls.master)
  + and the evil vnode interfaces (which are generated from vnode_if.src)

(pooka)

2009-10-14 13:02:04 UTC MAIN commitmail json YAML

Add test cases for "prefix $@ suffix" expansion.  From PR bin/33956.
This issue was fixed a while ago but the tests described in the report
were never written as proper test cases.

(jmmv)

2009-10-14 09:40:27 UTC MAIN commitmail json YAML

ufs_rmdir(): move fstrans_done() after vput().  No more unlinked and
zero-sized directory inodes in snapshots.

(hannken)

2009-10-14 09:32:05 UTC netbsd-5 commitmail json YAML

2009-10-14 09:31:28 UTC netbsd-5 commitmail json YAML

Pull up the following revisions(s) (requested by pooka in ticket #1088):
include/dlfcn.h: revision 1.20
lib/libc/dlfcn/dlfcn_elf.c: revision 1.6
libexec/ld.elf_so/reloc.c: revision 1.97
libexec/ld.elf_so/rtld.c: revision 1.125
libexec/ld.elf_so/rtld.h: revision 1.81
libexec/ld.elf_so/symbol.c: revision 1.48

Add Solarisa-like dlinfo() interface to the ELF dynamic linker.
Implement RTLD_DI_LINKMAP which returns a pointer to the linkmap
chain at the given object.  Other Solaris queries are currently
unimplemented.

(sborrill)

2009-10-14 09:18:33 UTC netbsd-5 commitmail json YAML

Pull up the following revisions(s) (requested by joerg in ticket #1090):
crypto/dist/heimdal/lib/krb5/krb5_get_in_cred.3: revision 1.2

Fix man page markup.

(sborrill)

2009-10-14 09:17:13 UTC netbsd-5 commitmail json YAML

Pull up the following revisions(s) (requested by joerg in ticket #1090):
crypto/dist/heimdal/lib/krb5/krb5_get_in_cred.3: revision 1.2

Fix man page markup.

(sborrill)

2009-10-14 09:14:17 UTC netbsd-5 commitmail json YAML

2009-10-14 09:13:54 UTC netbsd-5 commitmail json YAML

Pull up the following revisions(s) (requested by pooka in ticket #1089):
include/util.h: revision 1.53
lib/libutil/opendisk.c: revision 1.12

Fix the open routine function pointer prototype of opendisk1() to match
the prototype of open().

(sborrill)

2009-10-14 07:30:47 UTC MAIN commitmail json YAML

Only brand newer binutils.

(skrll)

2009-10-13 22:50:17 UTC MAIN commitmail json YAML

2009-10-13 22:49:34 UTC MAIN commitmail json YAML

2009-10-13 22:47:55 UTC MAIN commitmail json YAML

Use sane logical markup and actual cross references.

(joerg)

2009-10-13 22:47:32 UTC MAIN commitmail json YAML

2009-10-13 22:46:28 UTC MAIN commitmail json YAML

raidframe doesn't need sys/user.h (or at least one would hope so ;)

(pooka)

2009-10-13 22:41:57 UTC MAIN commitmail json YAML

2009-10-13 22:04:31 UTC MAIN commitmail json YAML

2009-10-13 22:00:31 UTC MAIN commitmail json YAML

In a furious blaze of *facepalm* / "what was i thinking?", fix the
open routine function pointer prototype of opendisk1() to match
the prototype of open().

(pooka)

2009-10-13 21:57:53 UTC MAIN commitmail json YAML

2009-10-13 21:54:29 UTC MAIN commitmail json YAML

For varargs syscalls, create rump prototypes which match the regular
system call counterparts, e.g.:
open(const char *, int, mode_t) -> open(const char *, int, ...)

(pooka)

2009-10-13 21:39:56 UTC MAIN commitmail json YAML

No .Pp inside .Rs/.Re.

(joerg)

2009-10-13 20:08:08 UTC MAIN commitmail json YAML

don't define curlwp, it's just (unused) sugar

(pooka)

2009-10-13 20:06:38 UTC MAIN commitmail json YAML

Expand rump curlwp macro.

(pooka)

2009-10-13 19:28:31 UTC MAIN commitmail json YAML

Avoid segv on "printf '%*********s' 666", from Maksymilian Arciemowicz

(christos)

2009-10-13 18:41:06 UTC MAIN commitmail json YAML

Try ffs is msdosfs mount fails -- I happened to have one USB stick
where the file system is ffs.

(pooka)

2009-10-13 18:36:48 UTC MAIN commitmail json YAML

2009-10-13 17:19:00 UTC MAIN commitmail json YAML

Enclose (void *)0 in an extra set of parenthese to make the result usable
in arbitrary expressions.
Fixes PR/41890, I can't think of any downsides!

(dsl)

2009-10-13 12:55:53 UTC MAIN commitmail json YAML

Fix inline asm for tas.b.  "=m" is not restrictive enough and gcc may
decide to use addressing modes that tas.b does not support.  'V' is
advertised to be "non-offsettable" subset of 'm' but there's a bug in
gcc that prevents "=V" from working.

When in doubt use brute force, so pass lock pointer as "r" input and
declare "memory" as clobbered.

Landisk kernel diff is 5 instructions (register choice for lock
address in __cpu_simple_lock_try).

sys/dev/raidframe/rf_copyback.c - where old __asm triggered incorrect code
- successfully compiles (as part of sys/rump/dev/lib/libraidframe).

(uwe)

2009-10-13 12:38:14 UTC MAIN commitmail json YAML

Fix a deadlock where fscow_disestablish() blocks because outstanding
copy-on-write operations wait for si_snaplock.

(hannken)

2009-10-13 12:37:19 UTC MAIN commitmail json YAML

Fix a race where the backing store thread runs (and exits immediately)
before kthread_create() returns.

(hannken)

2009-10-13 12:11:20 UTC MAIN commitmail json YAML

- use const where appropriate
- don't cast return value from malloc

(christos)

2009-10-13 11:56:17 UTC MAIN commitmail json YAML

2009-10-13 11:55:54 UTC MAIN commitmail json YAML

- replace 'Advanced Micro Devices' with 'AMD'.
  Requested by jmcneill@
- remove duplicate printing of 'AMD' with the AMD HUDSON-2 chipset.

(cegger)

2009-10-13 10:46:05 UTC MAIN commitmail json YAML

2009-10-13 10:45:14 UTC MAIN commitmail json YAML

AMD SB900 renamed to AMD HUDSON-2

(cegger)

2009-10-13 10:18:35 UTC MAIN commitmail json YAML

As the directory "/etc/zfs" is created unconditionally it should not depend
on the "MKZFS" flag. Problem pointed out by Havard Eidnes in private e-mail.

(tron)

2009-10-13 07:47:01 UTC MAIN commitmail json YAML

/usr/X11R7/lib/X11/xkb/symbols/pc used to be a directory, but changed
to a file on 2009-06-12.  Fixing this requires removing the directory
(which we can do) and re-extracting the xbase set (which we can't do),
or at least adding that one file (which we may be able to do if X11SRCDIR
is available).

Reviewed by mrg, snj

(apb)

2009-10-13 00:49:39 UTC MAIN commitmail json YAML

deal with the output of new objdump.

(yamt)

2009-10-12 23:43:13 UTC MAIN commitmail json YAML

sys___aio_suspend50, sys_lio_listio:
- fix the buffer sizes.
- use kmem_alloc instead of kmem_zalloc for buffers which we will
  overwrite soon.

(yamt)

2009-10-12 23:43:05 UTC MAIN commitmail json YAML

Add quirk for Meizu M6, which doesn't like synchronize cache;
addresses PR 40442.

Idea for quirk from FreeBSD/hps.

(wiz)

2009-10-12 23:41:51 UTC MAIN commitmail json YAML

compat_50_sys_aio_suspend:
- fix the buffer size.
- use kmem_alloc instead of kmem_zalloc for buffers which we will
  overwrite soon.

(yamt)

2009-10-12 23:38:08 UTC MAIN commitmail json YAML

wrap long lines.  no functional changes.

(yamt)

2009-10-12 23:36:56 UTC MAIN commitmail json YAML

make aio_worker static.

(yamt)

2009-10-12 23:36:02 UTC MAIN commitmail json YAML

2009-10-12 23:35:09 UTC MAIN commitmail json YAML

fix KMEM_SIZE vs KMEM_GUARD

(yamt)

2009-10-12 23:33:02 UTC MAIN commitmail json YAML

remove no longer necessary include of drvctl.h

(yamt)

2009-10-12 23:31:59 UTC MAIN commitmail json YAML

aio_suspend1: fix a double free bug.

(yamt)

2009-10-12 22:32:23 UTC MAIN commitmail json YAML

2009-10-12 22:29:16 UTC MAIN commitmail json YAML

2009-10-12 22:28:47 UTC MAIN commitmail json YAML

Fix typo in comment.

(wiz)

2009-10-12 22:28:15 UTC MAIN commitmail json YAML

Add vendor and product ID for Meizu M6.

(wiz)

2009-10-12 22:20:50 UTC MAIN commitmail json YAML

2009-10-12 18:04:55 UTC MAIN commitmail json YAML

2009-10-12 12:47:10 UTC MAIN commitmail json YAML

2009-10-12 10:52:18 UTC netbsd-5-0 commitmail json YAML

2009-10-12 10:51:59 UTC netbsd-5-0 commitmail json YAML

Pull up the following revisions(s) (requested by dsl in ticket #1087):
sys/kern/tty.c: revision 1.234

Check for zero length read here - and return zero. Without this there is a
simple local-user panic in ureadc().

(sborrill)

2009-10-12 10:05:29 UTC MAIN commitmail json YAML

Finaly fix ptob problem. ptob was defined for amd64 and not for i386, and
NetBSD version of ptob is not compatible with Solaris one.

(haad)

2009-10-12 09:33:34 UTC MAIN commitmail json YAML

Add "/etc/zfs" directory.

(tron)

2009-10-12 08:54:19 UTC MAIN commitmail json YAML

Add directory "/etc/zfs".

(tron)

2009-10-12 08:00:42 UTC MAIN commitmail json YAML

Better branding from mrg

(skrll)

2009-10-12 02:55:46 UTC MAIN commitmail json YAML

2009-10-12 02:25:44 UTC MAIN commitmail json YAML

Bump iovec lazy bum magic value to 32: nfsd likes to write mbufs
with 17 per chain (previous i'm-too-lazy-for-my-forloop value was
of course 16).

(pooka)

2009-10-11 23:23:09 UTC MAIN commitmail json YAML

add recvmsg and sendmsg to networking rump syscalls

(pooka)

2009-10-11 22:17:57 UTC MAIN commitmail json YAML

Define ptob only if it wasn't defined already in NetBSD headers.

(haad)

2009-10-11 20:37:47 UTC MAIN commitmail json YAML

Fix DEBUG build - pv_flags does not exist anymore.

(mhitch)

2009-10-11 18:18:22 UTC MAIN commitmail json YAML

2009-10-11 18:12:51 UTC MAIN commitmail json YAML

Include host offset in regular etfs read/write operations (I can't
imagine it being particularly useful, but let's call file this
under POLA).

(pooka)

2009-10-11 18:04:30 UTC netbsd-5 commitmail json YAML

2009-10-11 18:03:22 UTC netbsd-5 commitmail json YAML

Pull up the following revisions(s) (requested by dsl in ticket #1087):
sys/kern/tty.c: revision 1.234

Check for zero length read here - and return zero. Without this there is a
simple local-user panic in ureadc().

(sborrill)

2009-10-11 17:54:22 UTC MAIN commitmail json YAML

Support creating file system sockets (non-sockets not supported in
VOP_CREATE since I don't want to have to write read/write support
for non-etfs files).

(pooka)

2009-10-11 17:20:48 UTC MAIN commitmail json YAML

Check for zero length read here - and return zero.
Most times we've come through spec_read() which has already done the test,
but not always (eg pty with ptsfs mounted).
Without this there is a simple local-user panic in ureadc().
Noted Matthew Mondor on tech-kern.

(dsl)

2009-10-11 16:30:19 UTC MAIN commitmail json YAML

make this compatible with bool.h.  no functional change intended.

(pooka)

2009-10-11 16:20:23 UTC MAIN commitmail json YAML

2009-10-11 12:51:58 UTC MAIN commitmail json YAML

close rump kernel file descriptors properly

(pooka)

2009-10-11 12:47:38 UTC MAIN commitmail json YAML

Add .cat and .man tag properly to zfs man pages.

(nakayama)

2009-10-11 12:14:05 UTC MAIN commitmail json YAML

Support RUMP_ACTION, i.e. compile-time switch to make this execute
rump syscalls to configure raidframe in a rump kernel.

(pooka)

2009-10-11 12:13:45 UTC MAIN commitmail json YAML

Back out previous.  Builds for me and on autobuild cluster.

(bad)

2009-10-11 11:26:41 UTC MAIN commitmail json YAML

2009-10-11 10:58:06 UTC MAIN commitmail json YAML

Cast physmem to (uint64_t) so it works on a amd64 system with more than 4Gb ram.
undef btop if it was already included from other NetBSD header file.

(haad)

2009-10-11 10:56:13 UTC MAIN commitmail json YAML

undef ptob if it was already defined/included in some NetBSD header file.

(haad)

2009-10-11 10:54:52 UTC MAIN commitmail json YAML

Properly return error when namei_kernel_simple fails.

(haad)

2009-10-11 10:00:10 UTC MAIN commitmail json YAML

AmigaOS console.device expects a character buffer, not a pointer to an int.
This fixes printf() output.

(mlelstv)

2009-10-11 09:25:19 UTC MAIN commitmail json YAML

Sort sections, fix SEE ALSO. End sentence with dot.

(wiz)

2009-10-11 09:17:21 UTC MAIN commitmail json YAML

update version to today.

(mrg)

2009-10-11 08:57:55 UTC MAIN commitmail json YAML

Add hdaudioctl(8), a tool to manipulate hdaudio(4) devices.
It offer the following subcommands:
list - shows all child codec
get - get a plist of the chosen codec's widget configuration
set - forcibly reconfigure a specified codec from a plist
graph - generate a graphviz file for the specified codec

(sborrill)

2009-10-11 08:50:12 UTC MAIN commitmail json YAML

Add ioctls required by hdaudioctl. This involves some refactoring of the
hdaudio_afg ioctl code.

(sborrill)

2009-10-11 08:19:57 UTC MAIN commitmail json YAML

2009-10-11 08:08:32 UTC MAIN commitmail json YAML

Fix locking when collecting pt_read and pt_ucntl.

(dsl)

2009-10-11 07:09:39 UTC MAIN commitmail json YAML

avoid an overflow in suffix handling, from Xin LI <delphij@delphij.net>.

(mrg)

2009-10-11 07:07:54 UTC MAIN commitmail json YAML

add "pack" uncompression support, from Xin LI <delphij@delphij.net>

(mrg)

2009-10-11 05:17:20 UTC MAIN commitmail json YAML

fix support for multi-section bzip2 files, as created by pbzip2.

(mrg)

2009-10-11 01:55:28 UTC MAIN commitmail json YAML

Sort sections. New sentence, new line.

(wiz)

2009-10-10 21:27:46 UTC MAIN commitmail json YAML

make this compile again.

(christos)

2009-10-10 21:26:16 UTC MAIN commitmail json YAML

Commit changes to header files missed in my previous commit.

Implement prop_array_externalize_to_pref(), prop_array_copyin(),
prop_dictionary_externalize_to_pref() and prop_dictionary_copyin()
as discussed in the thread:
http://mail-index.netbsd.org/tech-kern/2009/07/29/msg005594.html

Add prototypes for prop_array_externalize_to_pref() and
prop_dictionary_externalize_to_pref().

(bad)

2009-10-10 21:10:04 UTC MAIN commitmail json YAML

add some stubs required by raidframe linkage

(pooka)

2009-10-10 21:09:08 UTC netbsd-5 commitmail json YAML

Ticket 1085 (+ a few whitespace fixes)

(sborrill)

2009-10-10 21:02:46 UTC netbsd-5 commitmail json YAML

Pull up the following revisions(s) (requested by phx in ticket #1085):
lib/libc/arch/m68k/sys/cerror.S: revision 1.15

Ensure functions like mmap(2), mremap(2), shmat(2) or sbrk(2) return -1 in
case of an error. A side benefit of this is to fix a segfault caused by
jemalloc when mmap() failed.

(sborrill)

2009-10-10 20:35:55 UTC netbsd-5 commitmail json YAML

2009-10-10 20:35:20 UTC netbsd-5 commitmail json YAML

2009-10-10 20:34:45 UTC netbsd-5 commitmail json YAML

Pull up the following revisions(s) (requested by snj in ticket #1083):
sys/dev/usb/uftdi.c: revision 1.41-1.42
share/man/man4/uftdi.4: revision 1.15
sys/dev/usb/usbdevs: revision 1.527

Add support for multiple channel cards, specifically quad channel FT4232H.
Plus fix minor format nit and legacy title comment removal.

(sborrill)

2009-10-10 20:23:10 UTC netbsd-5 commitmail json YAML

2009-10-10 20:22:34 UTC netbsd-5 commitmail json YAML

Pull up the following revisions(s) (requested by snj in ticket #1082):
distrib/utils/sysinst/util.c: revision 1.161

Don't extract xetc to /, but rather in /.sysinst (like etc) so we don't blow
away existing config files. Wait until all sets have been unpacked to run
postinstall.  Previously we ran it after extracting etc, which meant that
/var/db/obsolete/ was not fully populated.

(sborrill)

2009-10-10 19:54:29 UTC netbsd-5 commitmail json YAML

2009-10-10 19:53:25 UTC netbsd-5 commitmail json YAML

src/distrib/sets/lists/base/mi@1.780.2.13 / diff / nxr@1.780.2.13
src/distrib/sets/lists/xcomp/mi@1.71.2.6 / diff / nxr@1.71.2.6
src/etc/mtree/NetBSD.dist@1.385.2.5 / diff / nxr@1.385.2.5
src/external/mit/xorg/lib/dri/dri.mk@1.3.4.4 / diff / nxr@1.3.4.4
src/external/mit/xorg/lib/dri/libmesa/Makefile@1.1.2.5 / diff / nxr@1.1.2.5
src/external/mit/xorg/lib/libGL/Makefile@1.5.6.2 / diff / nxr@1.5.6.2
src/external/mit/xorg/lib/libdrm/Makefile@1.2.8.2 / diff / nxr@1.2.8.2
src/external/mit/xorg/lib/libdrm/drm/Makefile@1.1.1.1.8.2 / diff / nxr@1.1.1.1.8.2
src/external/mit/xorg/lib/libdrm_intel/Makefile@1.2.2.3 / diff / nxr@1.2.2.3
src/external/mit/xorg/server/drivers/Makefile.xf86-driver@1.13.4.2 / diff / nxr@1.13.4.2
src/external/mit/xorg/server/drivers/xf86-video-glint/Makefile@1.4.2.2 / diff / nxr@1.4.2.2
src/external/mit/xorg/server/drivers/xf86-video-intel/Makefile@1.5.8.2 / diff / nxr@1.5.8.2
src/external/mit/xorg/server/drivers/xf86-video-intel/ch7017/Makefile@1.1.8.1 / diff / nxr@1.1.8.1
src/external/mit/xorg/server/drivers/xf86-video-intel/ch7xxx/Makefile@1.1.8.1 / diff / nxr@1.1.8.1
src/external/mit/xorg/server/drivers/xf86-video-intel/ivch/Makefile@1.1.8.1 / diff / nxr@1.1.8.1
src/external/mit/xorg/server/drivers/xf86-video-intel/sil164/Makefile@1.1.8.1 / diff / nxr@1.1.8.1
src/external/mit/xorg/server/drivers/xf86-video-intel/tfp410/Makefile@1.1.8.1 / diff / nxr@1.1.8.1
src/external/mit/xorg/server/drivers/xf86-video-mga/Makefile@1.4.8.3 / diff / nxr@1.4.8.3
src/external/mit/xorg/server/drivers/xf86-video-radeon/Makefile@1.1.8.2 / diff / nxr@1.1.8.2
src/external/mit/xorg/server/drivers/xf86-video-savage/Makefile@1.4.8.3 / diff / nxr@1.4.8.3
      :
(more 7 files)
Pull up the following revisions(s) (requested by snj in ticket #1079):
distrib/sets/lists/base/mi: patch
etc/mtree/NetBSD.dist: patch
distrib/sets/lists/xcomp/mi: revision 1.100
external/mit/xorg/lib/dri/dri.mk: revision 1.8
external/mit/xorg/lib/dri/libmesa/Makefile: revision 1.4
external/mit/xorg/lib/libGL/Makefile: revision 1.10
external/mit/xorg/lib/libdrm/Makefile: revision 1.5
external/mit/xorg/lib/libdrm/drm/Makefile: revision 1.3
external/mit/xorg/lib/libdrm_intel/Makefile: revision 1.3
external/mit/xorg/server/drivers/Makefile.xf86-driver: revision 1.16
external/mit/xorg/server/drivers/xf86-video-glint/Makefile: revision 1.7
external/mit/xorg/server/drivers/xf86-video-intel/Makefile: revision 1.7
external/mit/xorg/server/drivers/xf86-video-intel/ch7017/Makefile: revision 1.2
external/mit/xorg/server/drivers/xf86-video-intel/ch7xxx/Makefile: revision 1.2
external/mit/xorg/server/drivers/xf86-video-intel/ivch/Makefile: revision 1.2
external/mit/xorg/server/drivers/xf86-video-intel/sil164/Makefile: revision 1.2
external/mit/xorg/server/drivers/xf86-video-intel/tfp410/Makefile: revision 1.2
external/mit/xorg/server/drivers/xf86-video-mga/Makefile: revision 1.7
external/mit/xorg/server/drivers/xf86-video-radeon/Makefile: revision 1.5
external/mit/xorg/server/drivers/xf86-video-savage/Makefile: revision 1.7
external/mit/xorg/server/drivers/xf86-video-sis/Makefile: revision 1.7
external/mit/xorg/server/drivers/xf86-video-tdfx/Makefile: revision 1.6
external/mit/xorg/server/drivers/xf86-video-via/Makefile: revision 1.5
external/mit/xorg/server/xorg-server/GL/glx/Makefile.glx: revision 1.5
external/mit/xorg/server/xorg-server/glx/Makefile.glx: revision 1.4
external/mit/xorg/server/xorg-server/hw/xfree86/dri/Makefile: revision 1.7
external/mit/xorg/server/xorg-server/hw/xfree86/dri2/Makefile: revision 1.4

Move libdrm headers up one level (out of the X11 directory) to match
the rest of the world and fix the inconsistency with libdrm.pc.
Fixes PR xsrc/42126.

(sborrill)

2009-10-10 19:05:29 UTC MAIN commitmail json YAML

If ${NETBDSRCDIR}/../xsrc exists, then use it as the default value
of X11SRCDIR.  If it doesn't exist, then use /usr/xsrc as before.

OK mrg

(apb)

2009-10-10 18:17:29 UTC netbsd-5 commitmail json YAML

2009-10-10 18:16:25 UTC netbsd-5 commitmail json YAML

Pull up the following revisions(s) (requested by cegger in ticket #1078):
usr.sbin/acpitools/aml/aml_name.c: revision 1.4

Check validity of parent and so fix potential segfault.

(sborrill)

2009-10-10 18:06:54 UTC MAIN commitmail json YAML

2009-10-10 17:17:37 UTC MAIN commitmail json YAML

Sassari airport is actually in Alghero.

(mbalmer)

2009-10-10 14:46:02 UTC MAIN commitmail json YAML

Adjust bug report URL to reflect htdocs changes.

(snj)

2009-10-10 10:21:22 UTC MAIN commitmail json YAML

Add some NetBSD branding to binutils.

(skrll)

2009-10-10 08:07:23 UTC netbsd-4-0 commitmail json YAML

2009-10-10 08:06:28 UTC netbsd-4-0 commitmail json YAML

Pull up the following revisions(s) (requested by snj in ticket #1365):
share/man/man7/release7: revision 1.31 (via patch)
distrib/cdrom/hide-hfs.lst: revision 1.5
distrib/mac68k/stand/Makefile: revision 1.6 (via patch)
distrib/notes/common/main: revision 1.451
distrib/sets/Makefile: revision 1.70
distrib/sets/makesrctars: revision 1.37
distrib/sets/makesums: revision 1.16

Only generate SHA512 and MD5 checksums for releases.

(sborrill)

2009-10-09 21:11:32 UTC MAIN commitmail json YAML

- Don't extract xetc to /, but rather in /.sysinst (like etc) so that we
  don't blow away existing config files.
- Wait until all sets have been unpacked to run postinstall.  Previously
  we ran it after extracting etc, which meant that /var/db/obsolete/ was
  not fully populated.

(snj)

2009-10-09 21:06:01 UTC MAIN commitmail json YAML

Restrict libzpool_p.a to MKPROFILE=yes builds.

(njoly)

2009-10-09 20:32:57 UTC MAIN commitmail json YAML

If anyone is stupid enough to feed records longer than 8MB into sort, don't
sit in an infinite loop, instead eat memory until we have read 8 records.

(dsl)

2009-10-09 20:29:44 UTC MAIN commitmail json YAML

When we need to merge more than 16 files, do them in a hierarchy.
Reduces the amount of data written to temporary files.
The 3-level stack has to do a simple reduce after 4352 input files, for
a normal file sort this is 35GB of data or about 500 million records.
This needs about 50 open fd's - which should be ok.
Clearly the merge sort could process more input files in one go - speeding
up the sort, but at some point the number of input files would exceed
whatever limit was applied.

(dsl)

2009-10-09 20:23:19 UTC MAIN commitmail json YAML

Don't give merge an empty file when we detect EOF with nothing in our
buffer.

(dsl)

2009-10-09 20:19:44 UTC MAIN commitmail json YAML

LDADD+= instead of LDADD=

(pooka)

2009-10-09 16:55:41 UTC MAIN commitmail json YAML

Small typo fix, s/profilb/proflib/.

(njoly)

2009-10-09 16:38:21 UTC MAIN commitmail json YAML

Start cleaner without the sleep(1) hack now that it's possible.

(pooka)

2009-10-09 16:38:01 UTC MAIN commitmail json YAML

+ {zfs,zpool,ztest,zdb}.debug

(njoly)

2009-10-09 16:37:30 UTC MAIN commitmail json YAML

Expose a separate mount and run interface for those servers which
want to perform actions after mounting.

(pooka)

2009-10-09 16:35:18 UTC MAIN commitmail json YAML

Attempt to recover slightly more gracefully if the kernel socket is shutdown.

(pooka)

2009-10-09 15:59:27 UTC MAIN commitmail json YAML

Add ${DISTRIBDIR}/common/termcap (which superseded local one) to IMAGEDEPENDS.

(tsutsui)

2009-10-09 15:56:25 UTC MAIN commitmail json YAML

Replace references to local and now no-longer-existing termcap files
with references to ${DISTRIBDIR}/common/termcap.

(tsutsui)

2009-10-09 14:41:36 UTC MAIN commitmail json YAML

2009-10-09 14:32:07 UTC MAIN commitmail json YAML

2009-10-09 14:31:47 UTC MAIN commitmail json YAML

namespace RB_ from reboot.h

(pooka)

2009-10-09 13:44:59 UTC MAIN commitmail json YAML

Add './usr/lib/libzpool_p.a' to 'comp-zfs-proflib'.

(tron)

2009-10-09 12:58:29 UTC MAIN commitmail json YAML

handle device page timeout value as LE

(plunky)

2009-10-09 12:08:16 UTC netbsd-4 commitmail json YAML

2009-10-09 12:06:03 UTC netbsd-4 commitmail json YAML

Pull up the following revisions(s) (requested by snj in ticket #1365):
share/man/man7/release.7 revision 1.31 (via patch)
distrib/cdrom/hide-hfs.lst revision 1.5
distrib/mac68k/stand/Makefile revision 1.6 (via patch)
distrib/notes/common/main: revision 1.451
distrib/sets/Makefile: revision 1.70
distrib/sets/makesrctars: revision 1.37
distrib/sets/makesums: revision 1.16

Only generate SHA512 and MD5 checksums for releases.

(sborrill)

2009-10-09 09:34:23 UTC MAIN commitmail json YAML

Add entries for pool_cache_invalidate_local manpages. (hi jym@)

(haad)

2009-10-09 09:22:08 UTC MAIN commitmail json YAML

gdb-7.0 out.

(wiz)

2009-10-09 08:09:49 UTC netbsd-5 commitmail json YAML

2009-10-09 08:09:24 UTC netbsd-5 commitmail json YAML

Pull up the following revisions(s) (requested by snj in ticket #1081):
distrib/utils/sysinst/util.c: revision 1.160

/usr/X11R7/lib/X11/xkb/symbols/pc went from a directory to a file, so on
upgrades we need to remove it before extracting the xbase set.

(sborrill)

2009-10-09 06:02:56 UTC MAIN commitmail json YAML

2009-10-09 00:48:35 UTC MAIN commitmail json YAML

Fix sets files for MKZFS enabled builds move debuging libs to proper place
and add html flags for html manpages.

Patch received from Pierre Allegraud and reviewed by me.

(haad)

2009-10-09 00:26:53 UTC MAIN commitmail json YAML

Enable MKZFS for i386 and amd64 so zfs tools and modules will be included in
a daily builds and anyone can test zfs for NetBSD easier.

(haad)

2009-10-08 23:15:26 UTC MAIN commitmail json YAML

Bump date for new pool_cache_invalidate_local().

(wiz)

2009-10-08 21:54:45 UTC MAIN commitmail json YAML

Add pool_cache_invalidate_local() to the pool_cache(9) API, to permit
per-CPU objects invalidation when cached in the pool cache.

See http://mail-index.netbsd.org/tech-kern/2009/10/05/msg006206.html .

Reviewed by bouyer@. Thanks!

(jym)

2009-10-08 20:36:41 UTC MAIN commitmail json YAML

Fix the "dne" handling and chmod behaviour properly: values of dne
need to be on a stack instead of being a single variable since
directories are processed depth-first.  Otherwise dne randomly
depends on the previously processed entry.

This fixes both chmod of non-created directories (they used to be
chmod'd even when not created if their last child element did not
exist in the target subtree) and a "foo exists" bug exposed by my
last commit which removed directory sorting.

all regression tests passed

(pooka)

2009-10-08 19:50:03 UTC MAIN commitmail json YAML

use the bt_dev(3) api instead of rolling our own inquiry and
request functions

(plunky)

2009-10-08 19:31:41 UTC MAIN commitmail json YAML

fiddle with printing of "Class of Device" values
  - pass the class of device octet stream to the function
  - only print where the format is known (we only know format #0)
  - use language from the Baseband Assigned numbers document
  - use bit numbers from the Baseband Assigned numbers document
  - add Health device major class

(only these changes this time :)

(plunky)

2009-10-08 19:29:42 UTC MAIN commitmail json YAML

revert previous commit

(bah, I committed the wrong version and there are some other
changes that may not work with current sources)

(plunky)

2009-10-08 19:25:24 UTC MAIN commitmail json YAML

fiddle with printing of "Class of Device" information
  - pass the octet stream pointer to the function
  - only print where the format is known (we only know format #0)
  - use language from the Baseband Assigned numbers document
  - use bit numbers from the Baseband Assigned numbers document
  - add Health device major class

(plunky)

2009-10-08 19:06:52 UTC MAIN commitmail json YAML

src/distrib/sets/lists/xbase/mi@1.81 / diff / nxr@1.81
src/distrib/sets/lists/xcomp/mi@1.100 / diff / nxr@1.100
src/etc/mtree/NetBSD.dist.Xorg@1.3 / diff / nxr@1.3
src/external/mit/xorg/lib/dri/dri.mk@1.8 / diff / nxr@1.8
src/external/mit/xorg/lib/dri/libmesa/Makefile@1.4 / diff / nxr@1.4
src/external/mit/xorg/lib/libGL/Makefile@1.10 / diff / nxr@1.10
src/external/mit/xorg/lib/libdrm/Makefile@1.5 / diff / nxr@1.5
src/external/mit/xorg/lib/libdrm/drm/Makefile@1.3 / diff / nxr@1.3
src/external/mit/xorg/lib/libdrm_intel/Makefile@1.3 / diff / nxr@1.3
src/external/mit/xorg/server/drivers/Makefile.xf86-driver@1.16 / diff / nxr@1.16
src/external/mit/xorg/server/drivers/xf86-video-glint/Makefile@1.7 / diff / nxr@1.7
src/external/mit/xorg/server/drivers/xf86-video-intel/Makefile@1.7 / diff / nxr@1.7
src/external/mit/xorg/server/drivers/xf86-video-intel/ch7017/Makefile@1.2 / diff / nxr@1.2
src/external/mit/xorg/server/drivers/xf86-video-intel/ch7xxx/Makefile@1.2 / diff / nxr@1.2
src/external/mit/xorg/server/drivers/xf86-video-intel/ivch/Makefile@1.2 / diff / nxr@1.2
src/external/mit/xorg/server/drivers/xf86-video-intel/sil164/Makefile@1.2 / diff / nxr@1.2
src/external/mit/xorg/server/drivers/xf86-video-intel/tfp410/Makefile@1.2 / diff / nxr@1.2
src/external/mit/xorg/server/drivers/xf86-video-mga/Makefile@1.7 / diff / nxr@1.7
src/external/mit/xorg/server/drivers/xf86-video-radeon/Makefile@1.5 / diff / nxr@1.5
src/external/mit/xorg/server/drivers/xf86-video-savage/Makefile@1.7 / diff / nxr@1.7
      :
(more 7 files)
Move libdrm headers up one level (out of the X11 directory) to match
the rest of the world and fix the inconsistency with libdrm.pc.
Fixes PR xsrc/42126.

(snj)

2009-10-08 16:33:45 UTC MAIN commitmail json YAML

When converting the locking path of mutex+counter to a real recursive
mutex, it's a good idea to convert the unlock path too so that the
recursive mutex gets released as many times as it was locked.
Fixes pthread + cxa deadlock.

(pooka)

2009-10-08 16:20:06 UTC MAIN commitmail json YAML

2009-10-08 13:16:13 UTC MAIN commitmail json YAML

2009-10-08 10:02:55 UTC netbsd-5 commitmail json YAML

2009-10-08 10:00:10 UTC netbsd-5 commitmail json YAML

Pull up the following revisions(s) (requested by taca in ticket #1077):
usr.sbin/postinstall/postinstall: revision 1.98

Make the makedev step fail if either MAKEDEV or MAKEDEV.local need to
be updated.

(sborrill)

2009-10-08 09:48:44 UTC netbsd-5 commitmail json YAML

2009-10-08 09:47:09 UTC netbsd-5 commitmail json YAML

Pull up the following revisions(s) (requested by jmcneill in ticket #1045):
distrib/sets/lists/man/mi: revision 1.1160
share/man/man4/Makefile: revision 1.499
share/man/man4/wb.4: revision 1.1-1.2
share/man/man4/ld.4: revision 1.17
sys/arch/i386/conf/ALL: revision 1.215-1.216 + patch
sys/arch/i386/conf/GENERIC: revision 1.946-1.947 + patch
sys/arch/amd64/conf/GENERIC: revision 1.254-1.256 + patch
sys/conf/files: revision 1.958
sys/dev/acpi/files.acpi: revision 1.59
sys/dev/acpi/wb_acpi.c: revision 1.1
sys/dev/ic/w83l518d.c: revision 1.1
sys/dev/ic/w83l518d_sdmmc.c: revision 1.1
sys/dev/ic/w83l518d_sdmmc.h: revision 1.1
sys/dev/ic/w83l518dreg.h: revision 1.1
sys/dev/ic/w83l518dvar.h.c: revision 1.1

wb(4): Add a driver for Winbond W83L518D SD/MMC readers.

(sborrill)

2009-10-08 08:57:19 UTC MAIN commitmail json YAML

Use m_pullup to handle defragmentation.
Reinject mbuf into TX queue when it couldn't be loaded.

diff for age(4) reviewed/discussed with plunky@ several weeks ago.

(cegger)

2009-10-08 08:15:57 UTC netbsd-5 commitmail json YAML

2009-10-08 08:15:24 UTC netbsd-5 commitmail json YAML

Pull up the following revisions(s) (requested by cegger in ticket #1076):
usr.bin/man/man.1: revision 1.21
usr.bin/man/man.c: revision 1.39

Allow man(1) to accept a pathname to a man file (e.g. man ./man.1)

(sborrill)

2009-10-08 06:41:44 UTC MAIN commitmail json YAML

/usr/X11R7/lib/X11/xkb/symbols/pc went from a directory to a file, so on
upgrades we need to remove it before extracting the xbase set, otherwise
we end up in a puddle of suck.

(snj)

2009-10-08 05:28:23 UTC MAIN commitmail json YAML

2009-10-08 00:47:47 UTC MAIN commitmail json YAML

Seems like module loading code is tasked with calling secmodel_register()
these days ...

(pooka)

2009-10-08 00:36:56 UTC MAIN commitmail json YAML

remove extraneous call to secmodel_suser_start()

(pooka)

2009-10-08 00:34:54 UTC MAIN commitmail json YAML

2009-10-07 22:22:18 UTC MAIN commitmail json YAML

Add MKZFS file so building a release works for others, too.

(haad)

2009-10-07 21:03:29 UTC MAIN commitmail json YAML

long align records written to temporary files.

(dsl)

2009-10-07 21:02:57 UTC MAIN commitmail json YAML

When encoding numbers, we can use all 8 bits for exponent values.

(dsl)

2009-10-07 20:59:10 UTC MAIN commitmail json YAML