Re: Another manpage grammar tweak (ath.4)

2013-04-11 Thread Jason McIntyre
On Fri, Apr 12, 2013 at 08:30:16AM +0200, Alexander Hall wrote: > >> .It AR5212 > >> These devices support 802.11a, 802.11b, and 802.11g operation with > >> transmit speeds as above for 802.11a, 802.11b, and 802.11g operation > >>-(802.11g speeds are the same as for 802.11a speeds). > >>+(802.11

Re: Another manpage grammar tweak (ath.4)

2013-04-11 Thread Alexander Hall
On 04/12/13 08:07, Jason McIntyre wrote: On Thu, Apr 11, 2013 at 10:58:00PM -0400, Brian Callahan wrote: Hi tech -- Here's another small fix to correct a grammatically incorrect sentence in ath.4 OK? ~Brian Index: ath.4 === RCS

Re: Another manpage grammar tweak (ath.4)

2013-04-11 Thread Jason McIntyre
On Thu, Apr 11, 2013 at 10:58:00PM -0400, Brian Callahan wrote: > Hi tech -- > > Here's another small fix to correct a grammatically incorrect sentence > in ath.4 > > OK? > > ~Brian > > Index: ath.4 > === > RCS file: /cvs/src/shar

Another manpage grammar tweak (ath.4)

2013-04-11 Thread Brian Callahan
Hi tech -- Here's another small fix to correct a grammatically incorrect sentence in ath.4 OK? ~Brian Index: ath.4 === RCS file: /cvs/src/share/man/man4/ath.4,v retrieving revision 1.55 diff -u -p -r1.55 ath.4 --- ath.414 Fe

Re: Fix an off-by-one bug in rtadvd(8)

2013-04-11 Thread Brad Smith
On Thu, Apr 11, 2013 at 02:26:01AM -0700, Stephane A. Sezer wrote: > Hello tech@, > > brad@ reported a bug in the code I wrote a few months ago to support RFC > 6106 in rtadvd(8). The following patches fix that bug, and another mistake I > found while going through the code. Also included are some

Re: pool again protection

2013-04-11 Thread Paul Irofti
On Mon, Apr 08, 2013 at 10:05:30PM -0400, Ted Unangst wrote: > I was given a scare today by an unnamed party because calling > pool_init twice causes bad things to happen. And whenever bad things > happen in pool, I get blamed. To turn future tedu panics into kernel > panics, here's a diff. > > Wh

[PATCH 3/3] Minor style cleanups in rtadvd code.

2013-04-11 Thread Stephane A. Sezer
From: "Stephane A. Sezer" --- usr.sbin/rtadvd/config.c | 21 +++-- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/usr.sbin/rtadvd/config.c b/usr.sbin/rtadvd/config.c index 2c003a3..6e3f185 100644 --- a/usr.sbin/rtadvd/config.c +++ b/usr.sbin/rtadvd/config.c @@ -7

Re: tmpfs

2013-04-11 Thread Pedro Martelletto
I'd like to test this, but I'm not very experienced with building only part of the userland. How do I tell the build system to install the new header files? cd /usr/src; make obj cleandir includes Please contact me off-list should you need further assistance. -p.

[PATCH 1/3] Correctly compute packet size when including DNS search lists.

2013-04-11 Thread Stephane A. Sezer
From: "Stephane A. Sezer" --- usr.sbin/rtadvd/config.c | 8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/usr.sbin/rtadvd/config.c b/usr.sbin/rtadvd/config.c index 3c72a6d..1edea84 100644 --- a/usr.sbin/rtadvd/config.c +++ b/usr.sbin/rtadvd/config.c @@ -724,8 +724,12 @@

[PATCH 2/3] Fix a comparison when building a packet with DNS search lists.

2013-04-11 Thread Stephane A. Sezer
From: "Stephane A. Sezer" --- usr.sbin/rtadvd/config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/rtadvd/config.c b/usr.sbin/rtadvd/config.c index 1edea84..2c003a3 100644 --- a/usr.sbin/rtadvd/config.c +++ b/usr.sbin/rtadvd/config.c @@ -864,7 +864,7 @@ make_pack

Fix an off-by-one bug in rtadvd(8)

2013-04-11 Thread Stephane A. Sezer
Hello tech@, brad@ reported a bug in the code I wrote a few months ago to support RFC 6106 in rtadvd(8). The following patches fix that bug, and another mistake I found while going through the code. Also included are some minor style changes. usr.sbin/rtadvd/config.c | 29 +--

Re: tmpfs

2013-04-11 Thread Pedro Martelletto
Speaking of, I see a lot of int64_max sprinkled throughout, which doesn't seem right for 32 bit platforms. Hi Ted, In tmpfs3.diff there are three uses of INT64_MAX: The first, in tmpfs_mount(), concerns the maximum amount of memory (in bytes) that tmpfs will contemplate. This value is bounded

amdmsr_probe() fails on PCEngines' ALIX2D13

2013-04-11 Thread Leonardo Guardati
I'm using OpenBSD-current (cvs'd 2 days ago) Trying to use flashrom on this board (AMD Geode LX 800 + CS 5536), I found that the /dev/amdmsr device was "Not Configured". Early in the boot, when calling amdmsr_probe() the code doesn't configure MSR access because when reading GLX_GP_GLD_MSR_CAP th

Re: Simplify USB transfer submission

2013-04-11 Thread Martin Pieuchot
On 10/04/13(Wed) 16:24, Martin Pieuchot wrote: > To submit a USB transfer, you generally use one of the variant of > usbd_setup_xfer() coupled with one of the variant of usbd_transfer(). > > But if you're lazy or don't care about the non-default options you > can use one of the variant of usbd_d