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 (55m)  netbsd-8 (5d)  netbsd-10 (6d)  netbsd-9 (12d)  thorpej-ifq (176d)  thorpej-altq-separation (178d) 

2024-05-10 15:37:55 UTC Now

2009-05-13 14:49:58 UTC MAIN commitmail json YAML

2009-05-13 14:49:20 UTC MAIN commitmail json YAML

add RX780/RX790 chipset host bridge and Radeon X1600

(cegger)

2009-05-13 14:33:42 UTC MAIN commitmail json YAML

If the PDC_MODEL_CPUID call fails use cpu_hvers to work out cpu_type.

Fixes PR/41379.

(skrll)

2009-05-13 13:12:06 UTC MAIN commitmail json YAML

Pass correct size (after padding) to bus_dmamap_sync(9) for RX mbufs
in iee_intr().  Fixes panic on DIAGNOSTIC kernel reported by skrll@.

(tsutsui)

2009-05-13 13:01:02 UTC MAIN commitmail json YAML

Whitespace fixes. Sort SEE ALSO.

(wiz)

2009-05-13 12:58:35 UTC MAIN commitmail json YAML

Use more markup. New sentence, new line. Add comma in enumeration.

(wiz)

2009-05-13 12:56:05 UTC MAIN commitmail json YAML

Merge two descriptions for same error code.

(wiz)

2009-05-13 12:51:13 UTC MAIN commitmail json YAML

Sort errors. Avoid marking up punctuation.

(wiz)

2009-05-13 12:47:35 UTC MAIN commitmail json YAML

Fix xref. Prepare for HTML output.

(wiz)

2009-05-13 12:44:22 UTC MAIN commitmail json YAML

New sentence, new line.

(wiz)

2009-05-13 12:42:02 UTC MAIN commitmail json YAML

Drop trailing whitespace, add a comma.

(wiz)

2009-05-13 12:41:09 UTC MAIN commitmail json YAML

New sentence, new line.

(wiz)

2009-05-13 12:40:37 UTC MAIN commitmail json YAML

New sentence, new line. Use more markup.

(wiz)

2009-05-13 12:38:55 UTC MAIN commitmail json YAML

Sort sections. Remove trailing whitespace. New sentence, new line.

(wiz)

2009-05-13 11:57:16 UTC MAIN commitmail json YAML

Use new way of associating, which fixes wpa with ral(4)

(roy)

2009-05-13 09:40:48 UTC MAIN commitmail json YAML

Fix obvious typo in last.

(skrll)

2009-05-13 03:40:13 UTC MAIN commitmail json YAML

Add "memory" clobber to mtpr for barrier.  See also kern/38637.

(mhitch)

2009-05-13 03:38:08 UTC MAIN commitmail json YAML

Revert using __insn_barrier();  changed to use "memory" clobber in the
mtpr() macro.

(mhitch)

2009-05-13 03:21:41 UTC MAIN commitmail json YAML

make this compile where size_t is not unsigned int.

(christos)

2009-05-13 02:50:32 UTC MAIN commitmail json YAML

2009-05-13 02:35:25 UTC MAIN commitmail json YAML

sprinkle #ifdef _KERNEL to make scsictl compile.

(christos)

2009-05-13 01:09:06 UTC netbsd-5-0 commitmail json YAML

2009-05-13 01:08:36 UTC netbsd-5 commitmail json YAML

2009-05-13 01:05:21 UTC netbsd-5 commitmail json YAML

Pull up following revision(s) (requested by jym in ticket #754):
sys/arch/xen/xen/if_xennet_xenbus.c: revision 1.35
Do not forget to detach rnd(4) device when removing a xennet device.
Ok by bouyer@ in private mail.

(snj)

2009-05-13 00:50:24 UTC netbsd-5 commitmail json YAML

Pull up following revision(s) (requested by jnemeth in ticket #753):
usr.sbin/postinstall/postinstall: revision 1.96
install /etc/rc.d/dhcpcd as well

(snj)

2009-05-13 00:40:04 UTC netbsd-5 commitmail json YAML

Pull up following revision(s) (requested by jnemeth in ticket #752):
usr.sbin/postinstall/postinstall: revision 1.95
install /etc/dhcpcd.conf

(snj)

2009-05-13 00:39:28 UTC netbsd-5-0 commitmail json YAML

Pull up following revision(s) (requested by jnemeth in ticket #752):
usr.sbin/postinstall/postinstall: revision 1.95
install /etc/dhcpcd.conf

(snj)

2009-05-13 00:35:51 UTC netbsd-5 commitmail json YAML

Pull up following revision(s) (requested by ad in ticket #725):
sys/arch/amd64/amd64/lock_stubs.S: revision 1.23
.long -> .quad

(snj)

2009-05-13 00:35:16 UTC netbsd-5 commitmail json YAML

Pull up following revision(s) (requested by ad in ticket #725):
sys/arch/amd64/amd64/lock_stubs.S: revision 1.22
sys/arch/i386/i386/lock_stubs.S: revision 1.23
sys/arch/x86/x86/patch.c: revision 1.18
A workaround for a bug with some Opteron revisions where locked operations
sometimes do not serve as memory barriers, allowing memory references to
bleed outside of critical sections.  It is possible that this is the
reason for pkgbuild's longstanding crashiness.
This is not complete (atomic ops need some work too).

(snj)

2009-05-13 00:34:12 UTC netbsd-5 commitmail json YAML

Pull up following revision(s) (requested by ad in ticket #725):
sys/arch/x86/include/mutex.h: revision 1.6
A workaround for a bug with some Opteron revisions where locked operations
sometimes do not serve as memory barriers, allowing memory references to
bleed outside of critical sections.  It is possible that this is the
reason for pkgbuild's longstanding crashiness.

(snj)

2009-05-13 00:33:32 UTC netbsd-5 commitmail json YAML

Pull up following revision(s) (requested by ad in ticket #725):
sys/kern/kern_rwlock.c: revision 1.30
A workaround for a bug with some Opteron revisions where locked operations
sometimes do not serve as memory barriers, allowing memory references to
bleed outside of critical sections.  It is possible that this is the
reason for pkgbuild's longstanding crashiness.
For rwlocks, always enable the explicit membars. They were disabled only
on x86, and since they are not in the fast-path it's not a big deal.
TODO: convert these to an atomic_membar_foo() or similar that does ordering
between regular data references and atomic references.

(snj)

2009-05-13 00:29:02 UTC netbsd-5-0 commitmail json YAML

Pull up following revision(s) (requested by ad in ticket #725):
sys/arch/amd64/amd64/lock_stubs.S: revision 1.23
.long -> .quad

(snj)

2009-05-13 00:28:25 UTC netbsd-5-0 commitmail json YAML

Pull up following revision(s) (requested by ad in ticket #725):
sys/arch/amd64/amd64/lock_stubs.S: revision 1.22
sys/arch/i386/i386/lock_stubs.S: revision 1.23
sys/arch/x86/x86/patch.c: revision 1.18
A workaround for a bug with some Opteron revisions where locked operations
sometimes do not serve as memory barriers, allowing memory references to
bleed outside of critical sections.  It's possible that this is the
reason for pkgbuild's longstanding crashiness.
This is not complete (atomic ops need some work too).

(snj)

2009-05-13 00:25:48 UTC netbsd-5-0 commitmail json YAML

Pull up following revision(s) (requested by ad in ticket #725):
sys/arch/x86/include/mutex.h: revision 1.6
A workaround for a bug with some Opteron revisions where locked operations
sometimes do not serve as memory barriers, allowing memory references to
bleed outside of critical sections.  It's possible that this is the
reason for pkgbuild's longstanding crashiness.

(snj)

2009-05-13 00:24:48 UTC netbsd-5-0 commitmail json YAML

Pull up following revision(s) (requested by ad in ticket #725):
sys/kern/kern_rwlock.c: revision 1.30
A workaround for a bug with some Opteron revisions where locked operations
sometimes do not serve as memory barriers, allowing memory references to
bleed outside of critical sections.  It's possible that this is the
reason for pkgbuild's longstanding crashiness.
For rwlocks, always enable the explicit membars. They were disabled only
on x86, and since they are not in the fast-path it's not a big deal.
TODO: convert these to an atomic_membar_foo() or similar that does ordering
between regular data references and atomic references.

(snj)

2009-05-12 23:51:25 UTC MAIN commitmail json YAML

remove leftover debug code

(macallan)

2009-05-12 23:03:25 UTC MAIN commitmail json YAML

Move kauth(9) call before going into splnet().

Mailing list reference:

http://mail-index.netbsd.org/tech-net/2009/05/08/msg001286.html

(elad)

2009-05-12 23:01:26 UTC MAIN commitmail json YAML

Remove "privileged" variable, perform the kauth(9) call before we go into
splnet() for the privileged commands. Privileged commands were marked as
such for clarity.

Mailing list reference:

http://mail-index.netbsd.org/tech-net/2009/05/08/msg001283.html

(elad)

2009-05-12 22:22:46 UTC MAIN commitmail json YAML

Implicit EPERM -> explicit EACCES.

Requested by ad@ and yamt@.

(elad)

2009-05-12 22:07:02 UTC MAIN commitmail json YAML

update bluetooth service discovery API, merging libsdp into
libbluetooth.

(plunky)

2009-05-12 22:01:20 UTC MAIN commitmail json YAML

Fix previous, || -> &&.

Pointed out by cube@, thanks!

(elad)

2009-05-12 21:50:38 UTC MAIN commitmail json YAML

2009-05-12 21:48:42 UTC MAIN commitmail json YAML

Fix inverted permissions check.

(elad)

2009-05-12 21:21:23 UTC MAIN commitmail json YAML

add an exit hook at the tap so that on the way out (for whatever reason),
btpand will mark down the interface.

(plunky)

2009-05-12 21:08:30 UTC MAIN commitmail json YAML

rework the channel shutdown code path, each channel now has its own
action to process which separates the server and client code.

(plunky)

2009-05-12 21:08:23 UTC MAIN commitmail json YAML

Add di_modrev to the inode, for NFSv4. From FreeBSD.

(ad)

2009-05-12 21:01:02 UTC MAIN commitmail json YAML

Reserve a bit for FS_GJOURNAL (from FreeBSD).

(ad)

2009-05-12 19:57:59 UTC MAIN commitmail json YAML

rather than debug message, exclaim in error for failed set filter

(plunky)

2009-05-12 19:35:59 UTC MAIN commitmail json YAML

2009-05-12 18:54:31 UTC MAIN commitmail json YAML

Add missing apostrophe.

(wiz)

2009-05-12 18:43:36 UTC MAIN commitmail json YAML

2009-05-12 18:39:55 UTC MAIN commitmail json YAML

update to use the new service discovery API

(plunky)

2009-05-12 18:39:20 UTC MAIN commitmail json YAML

2009-05-12 18:37:50 UTC MAIN commitmail json YAML

2009-05-12 18:29:53 UTC MAIN commitmail json YAML

add libsdp.so back in but marked as obsolete

(plunky)

2009-05-12 18:07:55 UTC MAIN commitmail json YAML

2009-05-12 14:56:22 UTC MAIN commitmail json YAML

New sentence, new line.

(wiz)

2009-05-12 14:48:08 UTC MAIN commitmail json YAML

struct device * -> device_t, no functional changes intended.

(cegger)

2009-05-12 14:47:55 UTC MAIN commitmail json YAML

struct device * -> device_t, no functional changes intended.

(cegger)

2009-05-12 14:47:27 UTC MAIN commitmail json YAML

2009-05-12 14:47:05 UTC MAIN commitmail json YAML

2009-05-12 14:46:39 UTC MAIN commitmail json YAML

2009-05-12 14:46:01 UTC MAIN commitmail json YAML

struct device * -> device_t, no functional changes intended.

(cegger)

2009-05-12 14:45:43 UTC MAIN commitmail json YAML

struct device * -> device_t, no functional changes intended.

(cegger)

2009-05-12 14:45:08 UTC MAIN commitmail json YAML

struct device * -> device_t, no functional changes intended.

(cegger)

2009-05-12 14:44:31 UTC MAIN commitmail json YAML

2009-05-12 14:43:59 UTC MAIN commitmail json YAML

2009-05-12 14:43:33 UTC MAIN commitmail json YAML

struct device * -> device_t, no functional changes intended.

(cegger)

2009-05-12 14:42:58 UTC MAIN commitmail json YAML

struct device * -> device_t, no functional changes intended.

(cegger)

2009-05-12 14:42:19 UTC MAIN commitmail json YAML

2009-05-12 14:39:51 UTC MAIN commitmail json YAML

struct device * -> device_t, no functional changes intended.

(cegger)

2009-05-12 14:39:22 UTC MAIN commitmail json YAML

2009-05-12 14:38:56 UTC MAIN commitmail json YAML

struct device * -> device_t, no functional changes intended.

(cegger)

2009-05-12 14:38:26 UTC MAIN commitmail json YAML

2009-05-12 14:37:59 UTC MAIN commitmail json YAML

2009-05-12 14:31:27 UTC MAIN commitmail json YAML

2009-05-12 14:31:00 UTC MAIN commitmail json YAML

2009-05-12 14:30:25 UTC MAIN commitmail json YAML

2009-05-12 14:29:42 UTC MAIN commitmail json YAML

struct device * -> device_t, no functional changes intended.

(cegger)

2009-05-12 14:28:22 UTC MAIN commitmail json YAML

struct device * -> device_t, no functional changes intended.

(cegger)

2009-05-12 14:25:18 UTC MAIN commitmail json YAML

2009-05-12 14:23:47 UTC MAIN commitmail json YAML

2009-05-12 14:23:33 UTC MAIN commitmail json YAML

struct device * -> device_t, no functional changes intended.

(cegger)

2009-05-12 14:22:39 UTC MAIN commitmail json YAML

2009-05-12 14:21:58 UTC MAIN commitmail json YAML

2009-05-12 14:21:32 UTC MAIN commitmail json YAML

2009-05-12 14:20:45 UTC MAIN commitmail json YAML

struct device * -> device_t, no functional changes intended.

(cegger)

2009-05-12 14:20:28 UTC MAIN commitmail json YAML

struct device * -> device_t, no functional changes intended.

(cegger)

2009-05-12 14:19:40 UTC MAIN commitmail json YAML

struct device * -> device_t, no functional changes intended.

(cegger)

2009-05-12 14:18:16 UTC MAIN commitmail json YAML

2009-05-12 14:17:31 UTC MAIN commitmail json YAML

2009-05-12 14:16:53 UTC MAIN commitmail json YAML

2009-05-12 14:16:35 UTC MAIN commitmail json YAML

struct device * -> device_t, no functional changes intended.

(cegger)

2009-05-12 14:15:32 UTC MAIN commitmail json YAML

Fix for -Wcast-qual.

XXX want wscons...

(tsutsui)

2009-05-12 14:08:35 UTC MAIN commitmail json YAML

2009-05-12 14:07:01 UTC MAIN commitmail json YAML

2009-05-12 13:41:44 UTC MAIN commitmail json YAML

Fix _packed attribute for PCC. According to Ragge it should be _Pragma("packed
1") instead of _Pragma("packed").

With this fix userland programs needing _packed will now work.

(reinoud)

2009-05-12 13:22:58 UTC MAIN commitmail json YAML

struct cfdata * -> cfdata_t, no functional changes intended.

(cegger)

2009-05-12 13:22:28 UTC MAIN commitmail json YAML

2009-05-12 13:22:10 UTC MAIN commitmail json YAML

struct cfdata * -> cfdata_t, no functional changes intended.

(cegger)

2009-05-12 13:21:22 UTC MAIN commitmail json YAML

2009-05-12 13:21:06 UTC MAIN commitmail json YAML

struct cfdata * -> cfdata_t, no functional changes intended.

(cegger)

2009-05-12 13:20:34 UTC MAIN commitmail json YAML

2009-05-12 13:20:06 UTC MAIN commitmail json YAML

2009-05-12 13:19:50 UTC MAIN commitmail json YAML

struct cfdata * -> cfdata_t, no functional changes intended.

(cegger)

2009-05-12 13:19:12 UTC MAIN commitmail json YAML

struct cfdata * -> cfdata_t, no functional changes intended.

(cegger)

2009-05-12 13:18:40 UTC MAIN commitmail json YAML

struct cfdata * -> cfdata_t, no functional changes intended.

(cegger)

2009-05-12 13:18:05 UTC MAIN commitmail json YAML

2009-05-12 13:17:37 UTC MAIN commitmail json YAML

2009-05-12 13:17:15 UTC MAIN commitmail json YAML

struct cfdata * -> cfdata_t, no functional changes intended.

(cegger)

2009-05-12 13:16:45 UTC MAIN commitmail json YAML

2009-05-12 13:16:17 UTC MAIN commitmail json YAML

struct cfdata * -> cfdata_t, no functional changes intended.

(cegger)

2009-05-12 13:16:02 UTC MAIN commitmail json YAML

struct cfdata * -> cfdata_t, no functional changes intended.

(cegger)

2009-05-12 13:15:24 UTC MAIN commitmail json YAML

2009-05-12 13:15:10 UTC MAIN commitmail json YAML

this needs libsdp no more

(plunky)

2009-05-12 13:13:35 UTC MAIN commitmail json YAML

does no longer need libsdp

(plunky)

2009-05-12 13:12:21 UTC MAIN commitmail json YAML

no longer needs libsdp

(plunky)

2009-05-12 13:11:18 UTC MAIN commitmail json YAML

no longer needs libsdp

(plunky)

2009-05-12 13:09:43 UTC MAIN commitmail json YAML

does not need libsdp any longer

(plunky)

2009-05-12 12:18:45 UTC MAIN commitmail json YAML

2009-05-12 12:18:09 UTC MAIN commitmail json YAML

struct cfdata * -> cfdata_t, no functional changes intended.

(cegger)

2009-05-12 12:17:51 UTC MAIN commitmail json YAML

struct cfdata * -> cfdata_t, no functional changes intended.

(cegger)

2009-05-12 12:16:55 UTC MAIN commitmail json YAML

struct cfdata * -> cfdata_t, no functional changes intended.

(cegger)

2009-05-12 12:15:37 UTC MAIN commitmail json YAML

2009-05-12 12:14:18 UTC MAIN commitmail json YAML

struct cfdata * -> cfdata_t, no functional changes intended.

(cegger)

2009-05-12 12:13:49 UTC MAIN commitmail json YAML

2009-05-12 12:13:21 UTC MAIN commitmail json YAML

2009-05-12 12:12:52 UTC MAIN commitmail json YAML

2009-05-12 12:12:38 UTC MAIN commitmail json YAML

struct cfdata * -> cfdata_t, no functional changes intended.

(cegger)

2009-05-12 12:12:26 UTC MAIN commitmail json YAML

struct cfdata * -> cfdata_t, no functional changes intended.

(cegger)

2009-05-12 12:11:55 UTC MAIN commitmail json YAML

struct cfdata * -> cfdata_t, no functional changes intended.

(cegger)

2009-05-12 12:11:17 UTC MAIN commitmail json YAML

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

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

struct cfdata * -> cfdata_t, no functional changes intended.

(cegger)

2009-05-12 11:42:13 UTC MAIN commitmail json YAML

don't forget to skip marker processes.

(yamt)

2009-05-12 10:32:46 UTC MAIN commitmail json YAML

New sentence, new line. Sort sections.

(wiz)

2009-05-12 10:27:53 UTC MAIN commitmail json YAML

Sort sections, fix section header.

(wiz)

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

undo my previous changes.
unbreaks build of acorn32.

(cegger)

2009-05-12 10:16:35 UTC MAIN commitmail json YAML

2009-05-12 10:07:55 UTC MAIN commitmail json YAML

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

2009-05-12 09:50:29 UTC MAIN commitmail json YAML

2009-05-12 09:29:47 UTC MAIN commitmail json YAML

2009-05-12 09:10:16 UTC MAIN commitmail json YAML

2009-05-12 08:44:20 UTC MAIN commitmail json YAML

2009-05-12 08:23:01 UTC MAIN commitmail json YAML

2009-05-12 08:16:46 UTC MAIN commitmail json YAML

Describe DRM_NO_AGP and mention that it may be useful instead
of agp(4) for some drivers. Bump date. Per source-changes-d discussion.

(wiz)

2009-05-12 08:14:07 UTC MAIN commitmail json YAML

Punctuation nit.

(wiz)

2009-05-12 07:07:44 UTC MAIN commitmail json YAML

2009-05-12 07:06:53 UTC MAIN commitmail json YAML

use device_xname(), use aprint_*_dev

(cegger)

2009-05-12 06:57:51 UTC MAIN commitmail json YAML

2009-05-12 06:57:00 UTC MAIN commitmail json YAML

2009-05-12 06:54:11 UTC MAIN commitmail json YAML

2009-05-12 06:31:37 UTC MAIN commitmail json YAML

2009-05-12 04:44:18 UTC MAIN commitmail json YAML

be explicit when assigning members of Firm_event, that are now not
a "pure" timeval, but a 32 bit time_t one.

not worth attempting to version this code to handle 64 bit time_t
since we have it already working properly in Xorg tree and the
current code will work for another 29 years.

build-tested by me for several weeks, also posted by rjs@.

(mrg)

2009-05-12 02:17:49 UTC MAIN commitmail json YAML

install /etc/rc.d/dhcpcd as well

(jnemeth)

2009-05-12 01:53:08 UTC MAIN commitmail json YAML

2009-05-12 00:37:53 UTC MAIN commitmail json YAML

src/crypto/external/bsd/netpgp/dist/TODO@1.6 / diff / nxr@1.6
src/crypto/external/bsd/netpgp/dist/include/netpgp.h@1.4 / diff / nxr@1.4
src/crypto/external/bsd/netpgp/dist/src/bin/netpgp.c@1.5 / diff / nxr@1.5
src/crypto/external/bsd/netpgp/dist/src/lib/compress.c@1.7 / diff / nxr@1.7
src/crypto/external/bsd/netpgp/dist/src/lib/create.c@1.9 / diff / nxr@1.9
src/crypto/external/bsd/netpgp/dist/src/lib/create.h@1.3 / diff / nxr@1.3
src/crypto/external/bsd/netpgp/dist/src/lib/crypto.c@1.7 / diff / nxr@1.7
src/crypto/external/bsd/netpgp/dist/src/lib/crypto.h@1.3 / diff / nxr@1.3
src/crypto/external/bsd/netpgp/dist/src/lib/errors.h@1.2 / diff / nxr@1.2
src/crypto/external/bsd/netpgp/dist/src/lib/keyring.c@1.7 / diff / nxr@1.7
src/crypto/external/bsd/netpgp/dist/src/lib/keyring.h@1.4 / diff / nxr@1.4
src/crypto/external/bsd/netpgp/dist/src/lib/keyring_local.h@1.5 / diff / nxr@1.5
src/crypto/external/bsd/netpgp/dist/src/lib/loccreate.h@1.3 / diff / nxr@1.3
src/crypto/external/bsd/netpgp/dist/src/lib/memory.h@1.2 / diff / nxr@1.2
src/crypto/external/bsd/netpgp/dist/src/lib/misc.c@1.7 / diff / nxr@1.7
src/crypto/external/bsd/netpgp/dist/src/lib/netpgp.c@1.11 / diff / nxr@1.11
src/crypto/external/bsd/netpgp/dist/src/lib/netpgpdefs.h@1.3 / diff / nxr@1.3
src/crypto/external/bsd/netpgp/dist/src/lib/openssl_crypto.c@1.8 / diff / nxr@1.8
src/crypto/external/bsd/netpgp/dist/src/lib/packet-parse.c@1.9 / diff / nxr@1.9
src/crypto/external/bsd/netpgp/dist/src/lib/packet-parse.h@1.4 / diff / nxr@1.4
      :
(more 17 files)
Commit the weekend's changes:

+ minor name changes
+ remove duplicated code (commented out) in packet-print.c
+ original code contained abstraction violations for hash size - fix them
+ get rid of some magic constants related to length of hash arrays
+ allow a choice of hash algorithms for the signature digest (rather
  than hardcoding SHA1 - it is looking as though collisions are easier
  to manufacture based on recent findings)
+ move default signature RSA hash algorithm to SHA256 (from SHA1). This is
  passed as a string parameter from the high-level interface. We'll
  revisit this later after a good way to specify the algorithm has been
  found.
+ display the size of the keys in --list-packets
+ display the keydata prior to file decryption

(agc)

2009-05-11 22:37:21 UTC MAIN commitmail json YAML

Obsolete comment.

(ad)

2009-05-11 21:34:56 UTC MAIN commitmail json YAML

2009-05-11 21:31:29 UTC MAIN commitmail json YAML

2009-05-11 21:22:47 UTC MAIN commitmail json YAML

use device_xname()

(cegger)

2009-05-11 21:13:09 UTC MAIN commitmail json YAML

use device_xname()

(cegger)

2009-05-11 20:56:59 UTC MAIN commitmail json YAML

use device_xname()

(cegger)

2009-05-11 20:53:47 UTC MAIN commitmail json YAML

2009-05-11 20:13:50 UTC MAIN commitmail json YAML

Replace shutdownhooks with pmf in sec(4).

(bjh21)

2009-05-11 20:13:47 UTC netbsd-5-0 commitmail json YAML

2009-05-11 20:13:02 UTC netbsd-5 commitmail json YAML

2009-05-11 20:11:35 UTC netbsd-5 commitmail json YAML

Apply patch (requested by msaitoh in ticket #751):
        sys/dev/pci/if_wm.c: patch
Remove extra printf()s.

(bouyer)

2009-05-11 20:09:20 UTC netbsd-5-0 commitmail json YAML

Pull up following revision(s) (requested by mrg in ticket #750):
sys/arch/sparc64/include/math.h: revision 1.7
sys/arch/sparc/include/math.h: revision 1.5
merge these two files, makes sparc64 sparc/libc work again.
only provide __HAVE_LONG_DOUBLE if _LP64.

(bouyer)

2009-05-11 20:09:09 UTC netbsd-5 commitmail json YAML

Pull up following revision(s) (requested by mrg in ticket #750):
sys/arch/sparc64/include/math.h: revision 1.7
sys/arch/sparc/include/math.h: revision 1.5
merge these two files, makes sparc64 sparc/libc work again.
only provide __HAVE_LONG_DOUBLE if _LP64.

(bouyer)

2009-05-11 20:07:08 UTC netbsd-5 commitmail json YAML

Pull up following revision(s) (requested by manu in ticket #749):
sys/dev/md.c: revision 1.58
TFTPROOT loads the RAMdisk through TFTP at boot time. It needs the
network to be functionnal, and therefore must be called after
config_finalize(). Unfortunately, config_finalize() attaches md0
through mdattach(), and when tftproot_getfile() attempts to attach it
later by calling mdattach() again, it gets a failure.
This change checks for the RAMdisk size in mdattach(). If it is zero, then
the RAMdisk has not been loaded yet, and nothing is done. It will be
attached later when tftproot_getfile() will call mdattach()

(bouyer)

2009-05-11 20:03:08 UTC netbsd-5-0 commitmail json YAML

Pull up following revision(s) (requested by kefren in ticket #748):
sys/dist/ipf/netinet/ip_fil_netbsd.c: revision 1.50
Don't call callout_stop() without callout_init()
Fixes PR/41364

(bouyer)

2009-05-11 20:02:44 UTC netbsd-5 commitmail json YAML

Pull up following revision(s) (requested by kefren in ticket #748):
sys/dist/ipf/netinet/ip_fil_netbsd.c: revision 1.50
Don't call callout_stop() without callout_init()
Fixes PR/41364

(bouyer)

2009-05-11 20:00:52 UTC netbsd-5 commitmail json YAML

Pull up following revision(s) (requested by snj in ticket #747):
gnu/usr.bin/groff/tmac/mdoc.local: revision 1.51 via patch
Add an entry for 5.1.

(bouyer)

2009-05-11 19:40:22 UTC netbsd-5 commitmail json YAML

Pull up following revision(s) (requested by snj in ticket #742):
doc/BUILDING.mdoc: revision 1.72
external/mit/xorg/lib/freetype/Makefile: revision 1.5
BUILDING: revision 1.83
Introduce MKSUBPIXEL, which allows enabling subpixel rendering code
in FreeType.

(bouyer)

2009-05-11 19:32:22 UTC netbsd-4 commitmail json YAML

2009-05-11 19:31:40 UTC netbsd-4 commitmail json YAML

Pull up following revision(s) (requested by hauke in ticket #1315):
sys/arch/mac68k/obio/esp.c: revision 1.51 via patch
sys/arch/mac68k/conf/GENERIC: revision 1.188
Add LOCKDEBUG option, commented out, so that people know it's there.
esp_quick_dma_go() gets called from the MI ncr53c9x_intr() handler,
which protects itself against multiple invocation with a
simple_lock. Follow the example of ncr53c9x_poll() for servicing an
interrupt that came while we run in splhigh(), and 'manually' unlock
the MI handler for calling ncr53c9x_intr().
Fixes PR mac68k/38758.

(bouyer)

2009-05-11 19:31:34 UTC netbsd-4-0 commitmail json YAML

2009-05-11 19:25:24 UTC netbsd-4-0 commitmail json YAML

Pull up following revision(s) (requested by dholland in ticket #1314):
share/man/man8/afterboot.8: revision 1.39
Fix typo, from Shannon -jj Behrens in PR 41375.

(bouyer)

2009-05-11 19:25:21 UTC netbsd-4 commitmail json YAML

Pull up following revision(s) (requested by dholland in ticket #1314):
share/man/man8/afterboot.8: revision 1.39
Fix typo, from Shannon -jj Behrens in PR 41375.

(bouyer)

2009-05-11 19:23:33 UTC netbsd-4-0 commitmail json YAML

Pull up following revision(s) (requested by cube in ticket #1313):
lib/libc/stdio/vfwprintf.c: revision 1.15
printf("%zi\n", (ssize_t)-1); now correcly prints -1 on i386
ok: christos

(bouyer)

2009-05-11 19:23:20 UTC netbsd-4 commitmail json YAML

Pull up following revision(s) (requested by cube in ticket #1313):
lib/libc/stdio/vfwprintf.c: revision 1.15
printf("%zi\n", (ssize_t)-1); now correcly prints -1 on i386
ok: christos

(bouyer)

2009-05-11 19:20:34 UTC netbsd-4-0 commitmail json YAML

Pull up following revision(s) (requested by spz in ticket #1312):
usr.sbin/racoonctl/Makefile: revision 1.5 via patch
adjust the ADMINPORTDIR to match that of racoon (with which it'll want to talk)
fixes PR 41376

(bouyer)

2009-05-11 19:19:25 UTC netbsd-4 commitmail json YAML

Pull up following revision(s) (requested by spz in ticket #1312):
usr.sbin/racoonctl/Makefile: revision 1.5 via patch
adjust the ADMINPORTDIR to match that of racoon (with which it'll want to talk)
fixes PR 41376

(bouyer)

2009-05-11 18:33:30 UTC MAIN commitmail json YAML

restore binary compatibility by providing new prompt functions that take
an extra literal character.

(christos)

2009-05-11 17:14:31 UTC MAIN commitmail json YAML

2009-05-11 16:16:42 UTC MAIN commitmail json YAML

Bump SYMTAB_SPACE so that it fits again.

(he)

2009-05-11 16:09:24 UTC MAIN commitmail json YAML

Follow up the changed prototype of pmap_enter(), flag from int to u_int.

(he)

2009-05-11 15:47:36 UTC MAIN commitmail json YAML

Fix more pasto botches in pmf(9) entries.

(tsutsui)

2009-05-11 15:42:34 UTC MAIN commitmail json YAML

- rename RTK_HWREV_8102EL_SPIN2 -> RTK_HWREV_8103E
- add a HWREV value for 8168DP
Per Realtek's Linux drivers.

(tsutsui)

2009-05-11 14:45:04 UTC MAIN commitmail json YAML

2009-05-11 11:00:51 UTC MAIN commitmail json YAML

Fix the sense of two compares. I previously broke this.

(skd)

2009-05-11 10:51:44 UTC MAIN commitmail json YAML

Comment out owid(4) reference. Per PR 41405 from Jukka Ruohonen.

(wiz)

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

2009-05-11 08:52:48 UTC MAIN commitmail json YAML

2009-05-11 08:27:04 UTC MAIN commitmail json YAML

Don't touch dma data when PMC_CAPS_NO_DMA is set.

(nonaka)

2009-05-11 06:10:30 UTC MAIN commitmail json YAML

2009-05-10 22:03:22 UTC MAIN commitmail json YAML

Now that we have strnlen() in libc, get rid of the local
and type-conflicting implementation here instead of fixing
it locally.  I don't think (hope!) this is size-critical.

(he)

2009-05-10 21:47:57 UTC MAIN commitmail json YAML

Also update the prototype for pmap_enter1() after the recent
int -> u_int change.

(he)