Author: ed
Date: Thu Jan 14 08:08:55 2010
New Revision: 202277
URL: http://svn.freebsd.org/changeset/base/202277
Log:
Don't use fseeko() to obtain the file offset.
I was a bit confused with lseek(), which returns the new offset. We
should ftello() to obtain it using stdio.
Modified:
he
t; head/libexec/getty/ttys.5
>
> Modified: head/ObsoleteFiles.inc
> ==
> --- head/ObsoleteFiles.incThu Jan 14 02:48:39 2010(r202273)
> +++ head/ObsoleteFiles.incThu Jan 14 05:35:32 2010(r202274)
> @@ -14,6 +14,8 @@
> # The file is partitioned: OLD_F
* Kostik Belousov wrote:
> You should never remove symbol from the version map for shared library.
> Doing that removes one of the reason for having symbol versioning at all
> (namely, pre-execution check that version requirements of the objects
> are satisfied). FreeBSD allows version maps to gro
Author: roam (doc,ports committer)
Date: Thu Jan 14 09:38:23 2010
New Revision: 202278
URL: http://svn.freebsd.org/changeset/base/202278
Log:
Document that the IEEE80211_DEBUG kernel option is needed for
using the wlan(4) debugging controls with wording slightly
different from that in the PR
On Thu, Jan 14, 2010 at 10:38:02AM +0100, Ed Schouten wrote:
> * Kostik Belousov wrote:
> > You should never remove symbol from the version map for shared library.
> > Doing that removes one of the reason for having symbol versioning at all
> > (namely, pre-execution check that version requirement
Hello Kostik,
* Kostik Belousov wrote:
> It should. You can recheck it with readelf/objdump. Symbol shall be exported
> only with FBSD_1.0 version, and have no default version.
I see. I will give it a try and commit a fix this afternoon. Thanks for
the clarification!
--
Ed Schouten
WWW: htt
Author: ed
Date: Thu Jan 14 10:00:01 2010
New Revision: 202279
URL: http://svn.freebsd.org/changeset/base/202279
Log:
Revert the change to Symbol.map, made in r202274.
Even though we use __sym_compat(), we should list the symbol in
Symbol.map.
ttyslot() is now listed as follows, whic
Author: edwin
Date: Thu Jan 14 10:40:54 2010
New Revision: 202280
URL: http://svn.freebsd.org/changeset/base/202280
Log:
Remove -d option, whois.nic.mil doesn't exist anymore.
PR: bin/142507
Submitted by: Dan Mahoney
MFC after:1 week
Modified:
head/usr.bin/whois/whois.
Author: edwin
Date: Thu Jan 14 10:56:54 2010
New Revision: 202281
URL: http://svn.freebsd.org/changeset/base/202281
Log:
Make whois capable of searching for IPv6 addresses just like it can
do for IPv4 addresses without having to explicetly specify that the
ARIN server should be used to get t
Author: ed
Date: Thu Jan 14 11:03:26 2010
New Revision: 202282
URL: http://svn.freebsd.org/changeset/base/202282
Log:
The group field is called `gid', not `group'.
Modified:
head/usr.bin/chpass/chpass.1
Modified: head/usr.bin/chpass/chpass.1
==
On Mon, 11 Jan 2010, Andrey Chernov wrote:
On Mon, Jan 11, 2010 at 02:29:03PM +1100, Bruce Evans wrote:
3) errno should be EOVERFLOW, see other owerflow checks in the stdio.
There are none. I (we?) intentionally didn't set errno when the correct
F.e. see fseek()/fseeko() stdio checks, as P
On Thu, 14 Jan 2010, Nikolay Denev wrote:
I just want to add a user's point of view :
To me INCLUDE_CONFIG_FILE sounds like the
whole config file will be included,
not just the output after preprocessing.
It used to mean to actually include the config file. This became a broken
meaning when t
On Thu, 14 Jan 2010 10:00:01 + (UTC)
Ed Schouten wrote:
> Author: ed
> Date: Thu Jan 14 10:00:01 2010
> New Revision: 202279
> URL: http://svn.freebsd.org/changeset/base/202279
>
> Log:
> Revert the change to Symbol.map, made in r202274.
>
> Even though we use __sym_compat(), we shoul
Author: lulf
Date: Thu Jan 14 14:30:54 2010
New Revision: 202283
URL: http://svn.freebsd.org/changeset/base/202283
Log:
Bring in the ext2fs work done by Aditya Sarawgi during and after Google Summer
of Code 2009:
- BSDL block and inode allocation policies for ext2fs. This involves the use
Author: jhb
Date: Thu Jan 14 14:36:39 2010
New Revision: 202284
URL: http://svn.freebsd.org/changeset/base/202284
Log:
- Update required headers for namei() to add and remove
.
- Add RETURN VALUES and ERROR sections for namei()'s error return values.
- Add a missing link to NDHASGIANT.9
Author: jhb
Date: Thu Jan 14 14:43:16 2010
New Revision: 202285
URL: http://svn.freebsd.org/changeset/base/202285
Log:
- Note that if_xname, if_dname, and if_dunit are usually initialized via
if_initname().
- Document if_drv_flags and replace references to IFF_(RUNNING|OACTIVE)
with re
Author: jhb
Date: Thu Jan 14 15:07:18 2010
New Revision: 202286
URL: http://svn.freebsd.org/changeset/base/202286
Log:
Update the ident for the XENHVM kernel config to match the filename.
MFC after:1 week
Modified:
head/sys/amd64/conf/XENHVM
Modified: head/sys/amd64/conf/XENHVM
Author: ed
Date: Thu Jan 14 15:20:09 2010
New Revision: 202287
URL: http://svn.freebsd.org/changeset/base/202287
Log:
Unbreak pututxline() on 32-bit architectures.
I forgot to cast the size_t's back to off_t before negating them,
causing all sorts of artifacts where the log files would gr
Author: ed
Date: Thu Jan 14 15:20:46 2010
New Revision: 202288
URL: http://svn.freebsd.org/changeset/base/202288
Log:
Remove ttyslot from Symbol.map anyway.
Requested by: kan
Modified:
head/lib/libc/gen/Symbol.map
Modified: head/lib/libc/gen/Symbol.map
==
Author: emaste
Date: Thu Jan 14 15:27:18 2010
New Revision: 202289
URL: http://svn.freebsd.org/changeset/base/202289
Log:
Reject invalid CIDR widths rather than silently stopping at the first
non-digit character.
Due to an issue with rc(8) in a test configuration, ifconfig was being
inv
Author: brueffer
Date: Thu Jan 14 16:49:22 2010
New Revision: 202290
URL: http://svn.freebsd.org/changeset/base/202290
Log:
Build iwi(4) and iwifw(4) modules on amd64 as well.
PR: 113117
Submitted by: "O. Hartmann"
MFC after:1 week
Modified:
head/sys/modules/Makefile
In the interests of bringing this to a close:
# Store the plain version of the configuration file in the kernel itself.
# For information on extraction, and storing the comments also, see
config(8).
Am I right in thinking that even with this change, you still end up with a
single giant config
In message:
Robert Watson writes:
:
: > In the interests of bringing this to a close:
: > # Store the plain version of the configuration file in the kernel
: > # itself.
: > # For information on extraction, and storing the comments also, see
: > config(8).
:
: Am I right in thinking
Author: rmacklem
Date: Thu Jan 14 17:35:07 2010
New Revision: 202292
URL: http://svn.freebsd.org/changeset/base/202292
Log:
MFC: r201345
Fix the experimental NFS client so that it can create Unix
domain sockets on an NFSv4 mount point. It was generating
incorrect XDR in the request for thi
In message: <20100114.102142.328914705071816274@bsdimp.com>
"M. Warner Losh" writes:
: Personally, I'd rather see us have two different options here, as
: suggested by others, so that it is clear and self-contained. I'd vote
: for INCLUDE_CONFIG for today's behavior without -C, an
* Ulf Lilleengen wrote:
> Bring in the ext2fs work done by Aditya Sarawgi during and after
> Google Summer of Code 2009:
Very nice! Congratulations, Aditya!
--
Ed Schouten
WWW: http://80386.nl/
pgp50S9lvWdoy.pgp
Description: PGP signature
Author: yongari
Date: Thu Jan 14 19:08:43 2010
New Revision: 202293
URL: http://svn.freebsd.org/changeset/base/202293
Log:
For controllers that has dual mode PHY(copper or fiber) interfaces
over GMII, make sure to enable GMII. With this change brgphy(4) is
used to handle the dual mode PHY. S
Author: yongari
Date: Thu Jan 14 19:14:24 2010
New Revision: 202294
URL: http://svn.freebsd.org/changeset/base/202294
Log:
Add check for fiber mode for BCM5714 PHY. This PHY supports both
copper and fiber interfaces over GMII so an explicit check is
necessary to know whether it was configure
Author: rpaulo
Date: Thu Jan 14 19:23:41 2010
New Revision: 202295
URL: http://svn.freebsd.org/changeset/base/202295
Log:
Fix bugs introduced in previous commit: off-by-one in add_meshconf() and
big-endian bug on verify_meshconf()
Modified:
head/sys/net80211/ieee80211_mesh.c
Modified: head
On 1/14/2010 9:56 AM, M. Warner Losh wrote:
+ * If INCLUDE_CONFIG_FILE is defined, then we include the config file
+ * verbatim (and that's the only config file we include). Otherwise, if
+ * INCLUDE_CONFIG is defined, we include it. Otherwise, we include nothing
+ * at all.
FWIW, I actually thi
On 14 Jan 2010, at 20:01, Doug Barton wrote:
> FWIW, I actually think this makes it worse, not better. The
> INCLUDE_CONFIG_FILE option should include everything needed to recreate
> the kernel. If it doesn't, it's worse than worthless, it leads to a
> false sense of security which makes it dange
Author: yongari
Date: Thu Jan 14 20:20:26 2010
New Revision: 202296
URL: http://svn.freebsd.org/changeset/base/202296
Log:
MFC r181739:
Move the ste driver from sys/pci to sys/dev/ste.
Added:
stable/7/sys/dev/ste/
- copied from r181739, head/sys/dev/ste/
Deleted:
stable/7/sys/pci/i
2010/1/14 Ulf Lilleengen :
> Author: lulf
> Date: Thu Jan 14 14:30:54 2010
> New Revision: 202283
> URL: http://svn.freebsd.org/changeset/base/202283
>
Sorry for my late comment.
Please, dedup those comments below (came from p4 165599).
thanks!
> /*
> * Allocate a block in the file system.
> -
Author: yongari
Date: Thu Jan 14 20:38:40 2010
New Revision: 202297
URL: http://svn.freebsd.org/changeset/base/202297
Log:
Partial merge r199559:
- Add a private timer to drive the transmit watchdog instead of using
if_watchdog and if_timer.
- Fix some issues in detach for sn(4), s
Author: yongari
Date: Thu Jan 14 20:40:37 2010
New Revision: 202298
URL: http://svn.freebsd.org/changeset/base/202298
Log:
Partial merge r199559:
- Add a private timer to drive the transmit watchdog instead of using
if_watchdog and if_timer.
- Fix some issues in detach for sn(4), s
Author: yongari
Date: Thu Jan 14 20:47:49 2010
New Revision: 202299
URL: http://svn.freebsd.org/changeset/base/202299
Log:
MFC r200798,200801,200803-200804,200808,200810
r200798:
Use ANSI function definations.
r200801:
o Remove unnecessary return statement.
o Remove register
Author: gallatin
Date: Thu Jan 14 20:58:19 2010
New Revision: 202300
URL: http://svn.freebsd.org/changeset/base/202300
Log:
MFC 202119: Fix reporting of 10G Twinax media
Modified:
stable/7/sys/dev/mxge/if_mxge.c
Directory Properties:
stable/7/sys/ (props changed)
stable/7/sys/cddl/contr
Author: ed
Date: Thu Jan 14 20:58:45 2010
New Revision: 202301
URL: http://svn.freebsd.org/changeset/base/202301
Log:
Add wtmpcvt(1).
This utility allows users to convert their wtmp databases to the new
format. It makes no sense for users to keep their wtmp log files if they
are unable
Author: gallatin
Date: Thu Jan 14 20:59:02 2010
New Revision: 202302
URL: http://svn.freebsd.org/changeset/base/202302
Log:
MFC 202119: Fix reporting of 10G Twinax media
Modified:
stable/8/sys/dev/mxge/if_mxge.c
Directory Properties:
stable/8/sys/ (props changed)
stable/8/sys/amd64/incl
In message: <86625798-f339-4863-8f97-63b5232a6...@freebsd.org>
"Robert N. M. Watson" writes:
:
: On 14 Jan 2010, at 20:01, Doug Barton wrote:
:
: > FWIW, I actually think this makes it worse, not better. The
: > INCLUDE_CONFIG_FILE option should include everything needed to recreate
Author: gallatin
Date: Thu Jan 14 21:10:36 2010
New Revision: 202303
URL: http://svn.freebsd.org/changeset/base/202303
Log:
MFC r202121:
Use better default RSS hash (src + dst, rather than just src port)
Modified:
stable/8/sys/dev/mxge/if_mxge.c
Directory Properties:
stable/8/sys/ (pro
Author: gallatin
Date: Thu Jan 14 21:10:41 2010
New Revision: 202304
URL: http://svn.freebsd.org/changeset/base/202304
Log:
MFC r202121:
Use better default RSS hash (src + dst, rather than just src port)
Modified:
stable/7/sys/dev/mxge/if_mxge.c
Directory Properties:
stable/7/sys/ (pro
Author: yongari
Date: Thu Jan 14 21:37:40 2010
New Revision: 202308
URL: http://svn.freebsd.org/changeset/base/202308
Log:
MFC r200798,200801,200803-200804,200808,200810
r200798:
Use ANSI function definations.
r200801:
o Remove unnecessary return statement.
o Remove register
Author: yongari
Date: Thu Jan 14 21:45:39 2010
New Revision: 202309
URL: http://svn.freebsd.org/changeset/base/202309
Log:
MFC r200853:
Add bus_dma(9) and endianness support to ste(4).
o Sorted includes and added missing header files.
o Added basic endianness support. In theory ste
Author: yongari
Date: Thu Jan 14 21:54:20 2010
New Revision: 202310
URL: http://svn.freebsd.org/changeset/base/202310
Log:
MFC r200853:
Add bus_dma(9) and endianness support to ste(4).
o Sorted includes and added missing header files.
o Added basic endianness support. In theory ste
Author: yongari
Date: Thu Jan 14 22:00:33 2010
New Revision: 202311
URL: http://svn.freebsd.org/changeset/base/202311
Log:
MFC r200854,200856,200865,200873,200875,200877,200884
r200854:
Add minimal dealy while ste(4) is waiting for the end of active DMA
cycle.
r200856:
Intr
Author: joel (doc committer)
Date: Thu Jan 14 22:04:08 2010
New Revision: 202312
URL: http://svn.freebsd.org/changeset/base/202312
Log:
Fix a few whitespace issues and comment typos that I found while reading
through this file.
Modified:
head/usr.sbin/adduser/adduser.sh
Modified: head/usr.
Author: yongari
Date: Thu Jan 14 22:04:32 2010
New Revision: 202313
URL: http://svn.freebsd.org/changeset/base/202313
Log:
MFC r200854,200856,200865,200873,200875,200877,200884
r200854:
Add minimal dealy while ste(4) is waiting for the end of active DMA
cycle.
r200856:
Intr
Author: yongari
Date: Thu Jan 14 22:15:51 2010
New Revision: 202314
URL: http://svn.freebsd.org/changeset/base/202314
Log:
MFC r200904-200908,200910-200913
r200904:
Don't reinitialize controller if driver is already running. This
reduces number of link state UP/DOWN changes.
r2
Author: yongari
Date: Thu Jan 14 22:18:55 2010
New Revision: 202315
URL: http://svn.freebsd.org/changeset/base/202315
Log:
MFC r200904-200908,200910-200913
r200904:
Don't reinitialize controller if driver is already running. This
reduces number of link state UP/DOWN changes.
r2
Author: ed
Date: Thu Jan 14 22:21:20 2010
New Revision: 202316
URL: http://svn.freebsd.org/changeset/base/202316
Log:
Fix a typo: accouting -> accounting.
Modified:
head/usr.bin/wtmpcvt/wtmpcvt.1
Modified: head/usr.bin/wtmpcvt/wtmpcvt.1
===
Author: brueffer
Date: Thu Jan 14 22:21:43 2010
New Revision: 202317
URL: http://svn.freebsd.org/changeset/base/202317
Log:
Add manpages for ipwfw(4) and iwifw(4), based on iwnfw(4).
MFC after:2 weeks
Added:
head/share/man/man4/ipwfw.4 (contents, props changed)
head/share/man/man
Author: yongari
Date: Thu Jan 14 22:26:52 2010
New Revision: 202318
URL: http://svn.freebsd.org/changeset/base/202318
Log:
MFC r200950,200955,200965-200966,201767-201768
r200950:
Implement RX interrupt moderation using one-shot timer interrupt.
Unlike TX interrupt, ST201 does not pr
Author: yongari
Date: Thu Jan 14 22:29:29 2010
New Revision: 202319
URL: http://svn.freebsd.org/changeset/base/202319
Log:
MFC r200950,200955,200965-200966,201767-201768
r200950:
Implement RX interrupt moderation using one-shot timer interrupt.
Unlike TX interrupt, ST201 does not pr
Author: yongari
Date: Thu Jan 14 22:33:46 2010
New Revision: 202320
URL: http://svn.freebsd.org/changeset/base/202320
Log:
MFC r200958:
Document newly added loader tunable/sysctl variable
dev.ste.%d.int_rx_mod.
While I'm here add .Xr vlan as ste(4) supports long frames.
Modified:
Author: yongari
Date: Thu Jan 14 22:34:24 2010
New Revision: 202321
URL: http://svn.freebsd.org/changeset/base/202321
Log:
MFC r200958:
Document newly added loader tunable/sysctl variable
dev.ste.%d.int_rx_mod.
While I'm here add .Xr vlan as ste(4) supports long frames.
Modified:
Author: yongari
Date: Thu Jan 14 22:36:06 2010
New Revision: 202322
URL: http://svn.freebsd.org/changeset/base/202322
Log:
MFC r201769:
Enable ste(4). ste(4) should work on all architectures.
Modified:
stable/8/sys/sparc64/conf/GENERIC
Directory Properties:
stable/8/sys/ (props change
Author: yongari
Date: Thu Jan 14 22:37:06 2010
New Revision: 202323
URL: http://svn.freebsd.org/changeset/base/202323
Log:
MFC r201769:
Enable ste(4). ste(4) should work on all architectures.
Modified:
stable/7/sys/sparc64/conf/GENERIC
Directory Properties:
stable/7/sys/ (props change
Author: jilles
Date: Thu Jan 14 23:27:23 2010
New Revision: 202324
URL: http://svn.freebsd.org/changeset/base/202324
Log:
In 'make delete-old', use 'exec' to redirect an fd persistently.
That is, write 'exec 3<&0' instead of '3<&0'. Due to an sh(1) bug fixed in
r199953, the latter also pe
Author: davidxu
Date: Fri Jan 15 01:19:58 2010
New Revision: 202326
URL: http://svn.freebsd.org/changeset/base/202326
Log:
Also call sem_module_init in sem_close to initialize mutex
with some attributes.
Modified:
head/lib/libc/gen/sem_new.c
Modified: head/lib/libc/gen/sem_new.c
==
On Thu, 14 Jan 2010, M. Warner Losh wrote:
In message: <86625798-f339-4863-8f97-63b5232a6...@freebsd.org>
"Robert N. M. Watson" writes:
: I agree. I see two kinds of users:
:
: - Desktop/server users who want their system to work without any
: special tuning or magic, and likely feel
Author: dougb
Date: Fri Jan 15 02:18:07 2010
New Revision: 202327
URL: http://svn.freebsd.org/changeset/base/202327
Log:
MFC r201601:
Remove more duplicates
Minor reformatting on a few
Modified:
stable/8/games/fortune/datfiles/fortunes
Directory Properties:
stable/8/games/fortune/ (pr
Author: dougb
Date: Fri Jan 15 02:21:54 2010
New Revision: 202328
URL: http://svn.freebsd.org/changeset/base/202328
Log:
MFC r201601:
Remove more duplicates
Minor reformatting on a few
Modified:
stable/7/games/fortune/datfiles/fortunes
Directory Properties:
stable/7/games/fortune/ (pr
Author: dougb
Date: Fri Jan 15 02:55:19 2010
New Revision: 202329
URL: http://svn.freebsd.org/changeset/base/202329
Log:
MFC r201626:
- Move potentially offensive quotes I committed recently to fortunes-o.
- Reference date.
- Be more clear on context.
MFC r201764:
For the now-infamo
Author: dougb
Date: Fri Jan 15 02:58:22 2010
New Revision: 202330
URL: http://svn.freebsd.org/changeset/base/202330
Log:
MFC r201626:
- Move potentially offensive quotes I committed recently to fortunes-o.
- Reference date.
- Be more clear on context.
MFC r201764:
For the now-infamo
Author: dougb
Date: Fri Jan 15 03:03:02 2010
New Revision: 202331
URL: http://svn.freebsd.org/changeset/base/202331
Log:
MFC r201367, r201370:
Virtualize the location of "the configuration directory" instead of
hard-coding it to be /etc/namedb
Modified:
stable/8/etc/rc.d/named
Directory P
Author: dougb
Date: Fri Jan 15 03:04:43 2010
New Revision: 202332
URL: http://svn.freebsd.org/changeset/base/202332
Log:
MFC r201368:
Update named_flags comment regarding not using it for -u and -c
Modified:
stable/8/etc/defaults/rc.conf
Directory Properties:
stable/8/etc/ (props change
Author: dougb
Date: Fri Jan 15 03:05:46 2010
New Revision: 202333
URL: http://svn.freebsd.org/changeset/base/202333
Log:
MFC r201367, r201370:
Virtualize the location of "the configuration directory" instead of
hard-coding it to be /etc/namedb
Modified:
stable/7/etc/rc.d/named
Directory P
Author: dougb
Date: Fri Jan 15 03:06:39 2010
New Revision: 202334
URL: http://svn.freebsd.org/changeset/base/202334
Log:
MFC r201368:
Update named_flags comment regarding not using it for -u and -c
Modified:
stable/7/etc/defaults/rc.conf
Directory Properties:
stable/7/etc/ (props change
Author: dougb
Date: Fri Jan 15 03:07:42 2010
New Revision: 202335
URL: http://svn.freebsd.org/changeset/base/202335
Log:
MFC r201367, r201370:
Virtualize the location of "the configuration directory" instead of
hard-coding it to be /etc/namedb
Modified:
stable/6/etc/rc.d/named
Directory P
Author: dougb
Date: Fri Jan 15 03:10:09 2010
New Revision: 202336
URL: http://svn.freebsd.org/changeset/base/202336
Log:
MFC r201368:
Update named_flags comment regarding not using it for -u and -c
Modified:
stable/6/etc/defaults/rc.conf
Directory Properties:
stable/6/etc/ (props change
Author: dougb
Date: Fri Jan 15 03:28:46 2010
New Revision: 202337
URL: http://svn.freebsd.org/changeset/base/202337
Log:
MFC r200416:
Simplify handling of MTREEFILE relative to DESTDIR
Make the message about a missing MTREEFILE combined with -U
more informative
MFC r200425:
Over
Author: dougb
Date: Fri Jan 15 03:39:03 2010
New Revision: 202338
URL: http://svn.freebsd.org/changeset/base/202338
Log:
MFC r200416:
Simplify handling of MTREEFILE relative to DESTDIR
Make the message about a missing MTREEFILE combined with -U
more informative
MFC r200425:
Over
Author: dougb
Date: Fri Jan 15 03:56:48 2010
New Revision: 202339
URL: http://svn.freebsd.org/changeset/base/202339
Log:
Now that we've officially arrived at FreeBSD 9, remove the IGNORE_MOTD
compat shim as advertised. This change should not be MFC'ed.
Modified:
head/usr.sbin/mergemaster/me
Author: dougb
Date: Fri Jan 15 04:09:22 2010
New Revision: 202340
URL: http://svn.freebsd.org/changeset/base/202340
Log:
Oops, deleted one line too many. Add back the null case for IGNORE_MOTD
Modified:
head/usr.sbin/mergemaster/mergemaster.sh
Modified: head/usr.sbin/mergemaster/mergemaster.
Author: brooks
Date: Fri Jan 15 07:05:00 2010
New Revision: 202341
URL: http://svn.freebsd.org/changeset/base/202341
Log:
Since all other comparisons involving ngroups_max use
"ngroups_max + 1", use ">= ngroups_max+1" instead of the equivalent
"> ngroups_max" to reduce confusion.
Modified:
Author: brooks
Date: Fri Jan 15 07:18:46 2010
New Revision: 202342
URL: http://svn.freebsd.org/changeset/base/202342
Log:
Only allocate the space we need before calling kern_getgroups instead
of allocating what ever the user asks for up to "ngroups_max + 1". On
systems with large values of
77 matches
Mail list logo