yar
867bb09937
Split the FILES list across multiple lines as in rc.d/Makefile
...
so that the change history stays easily readable as the number
of PAM-aware services grows.
2007-06-15 11:22:10 +00:00
yar
62d3b985f5
Actually use new features of perr() and perrx().
2007-06-15 10:34:36 +00:00
yar
79a90bc272
Catch up with perr() becoming variadic.
2007-06-15 10:12:37 +00:00
yar
0a5d437c3d
Make perr() variadic and add perrx() to use in cases where
...
errno is irrelevant. Some code duplication can be reduced
if perr() is variadic and perrx() is available.
2007-06-15 10:10:40 +00:00
delphij
d4335e2e0b
This commit was generated by cvs2svn to compensate for changes in r170764,
...
which included commits to RCS files with non-trunk default branches.
2007-06-15 07:49:35 +00:00
delphij
f165f20f9e
Apply vendor patch that implements 1/2 as aliases of l/r.
...
Requested by: dmalone, Chuck Swiger
2007-06-15 07:49:35 +00:00
delphij
3a21074c9c
Update instructions about upgrading.
2007-06-15 07:36:39 +00:00
delphij
df12e14874
Add a list of removed files during import
2007-06-15 07:28:00 +00:00
delphij
2a4f71e2a0
Remove files that were taken off vendor branch. Difference
...
against vendor branch is now maintained in patchsets.
2007-06-15 07:22:26 +00:00
delphij
126c063fa1
Remove old files that no longer exist in latest distribution or
...
removed during import.
2007-06-15 07:17:50 +00:00
delphij
019bb6b05e
This commit was generated by cvs2svn to compensate for changes in r170759,
...
which included commits to RCS files with non-trunk default branches.
2007-06-15 07:17:50 +00:00
delphij
33aeb00c4d
Update build skeleton after diffutils 2.8.7 update.
2007-06-15 07:09:34 +00:00
delphij
dc06cc570e
Localized regeneration of config.h.
2007-06-15 07:08:19 +00:00
delphij
40ec4fdc9a
Virgin import of diffutils 2.8.7.
2007-06-15 07:06:13 +00:00
delphij
378be1e34d
This commit was generated by cvs2svn to compensate for changes in r170754,
...
which included commits to RCS files with non-trunk default branches.
2007-06-15 07:06:13 +00:00
kevlo
8a6947e206
Add a man page for wlan_amrr
...
Reviewed by: sam, sephe
2007-06-15 04:41:15 +00:00
gshapiro
990af0bbb1
You can never have enough documentation.
...
Document the SENDMAIL_ALIASES, SENDMAIL_MAP_SRC, SENDMAIL_MAP_TYPE, and
SENDMAIL_START_SCRIPT
.Xr make.conf 5
variables.
These are used in
.Pa /etc/mail/Makefile .
PR: conf/40548
MFC after: 3 days
2007-06-15 03:21:20 +00:00
rrs
c1835c966d
- Add VRF id to sctp_ifa structure, needed mainly in panda but useful
...
during deletes of ifa's in diff VRF's when applicable.
2007-06-15 03:16:48 +00:00
csjp
bc108718c3
- Conditionally pickup Giant around the network interface
...
ioctl routines if we are running with !mpsafenet
- Change un-conditional Giant acquisition around ifpromisc
to occur only if we are running with !mpsafenet
With these locking bits in place, we can now remove the Giant
requirement from BPF, so drop the D_NEEDGIANT device flag.
This change removes Giant acquisitions around BPF device
handlers (read, write, ioctl etc).
MFC after: 1 month
Discussed with: rwatson
2007-06-15 02:53:51 +00:00
rrs
ce1333d9af
KTR_GEN -> KTR_SUBSYS (for Kris).
2007-06-15 02:34:36 +00:00
rrs
83a687a604
- Oppps, forgot to update out the notes file for LINT builds- purge
...
old logging options that are no longer needed.
2007-06-15 02:29:19 +00:00
rwatson
d42502118b
Remove the restriction that rtprio(2) cannot be used to set the realtime
...
or idle priority of another process owned by the same user. This means
that privilege in rtprio(2) (and rtprio_thread(2)) is required indirectly
via p_cansched(9) or directly to set realtime/idle privilege, rather than
directly affecting target process authorization.
2007-06-14 23:31:52 +00:00
rrs
5db775aace
- Fix so ifn's are properly deleted when the ref count goes to 0.
...
- Fix so VRF's will clean themselves up when no references are around.
- Allow sctp_ifa to be passed into inpcb_bind, addr_mgmt_ep_sa to bypass
normal validation checks.
- turn auto-asconf off for subset bound sockets
- Moves all logging to use KTR. This gets rid of most
of the logging #ifdef's with a few exceptions reducing
the number of config options for SCTP.
2007-06-14 22:59:04 +00:00
njl
491996f810
The struct selinfo pointed to by *sip MUST be zeroed before calling
...
selrecord() or selwake*(). Otherwise, a panic may occur.
MFC after: 1 day
2007-06-14 22:38:50 +00:00
yar
8a97efc414
Use a single setusercontext(3) instead of a bunch of basic syscalls.
...
Besides aesthetic benefits, that makes at(1) jobs subject to such
login.conf(5) settings as resource limits.
2007-06-14 22:16:21 +00:00
yar
b6a0b8bdc1
Spotted another copy of the loony error message.
2007-06-14 21:24:05 +00:00
harti
2737a70c07
Make the order of tests the same for user and kernel. Use the natural
...
layer order from bottom to top.
2007-06-14 20:11:48 +00:00
harti
8016b195e6
Use an array of size NGROUP_MAX for the getgroups() call instead of NGRP.
...
When NGROUP_MAX is larger than NGRP the call used to fail. Now the call
succeedes, but only the first NGRP groups are actually used for authentication.
2007-06-14 20:07:35 +00:00
harti
f1a585dc51
According to the documentation mech_type for gss_init_sec_context() may
...
be passed as GSS_C_NO_OID in which case a default mech should be used.
This case was not handled and leads to core dumps when using nss_ldap.
Now use the first mech in this case. When there is no mechanism available
return an error (this part is taken from the PR).
PR: 113266
Submitted by: Eirik Nygaard <eirikald@pvv.ntnu.no> (partly)
2007-06-14 19:58:24 +00:00
gallatin
18afb27e89
correct some limits on interrupt proccessing so that
...
fast forwarding back out the same mxge interface works nicely.
2007-06-14 19:35:03 +00:00
rwatson
f5b0c94db5
Only require privilege to set the current time adjustment, not in order to
...
query it.
2007-06-14 18:37:58 +00:00
delphij
c990e91fd1
Enable SCTP by default for GENERIC kernels in order to give it
...
more exposure. The current state of SCTP implementation is
considered to be ready for 32-bit platforms, but still need some
work/testing on 64-bit platforms.
Approved by: re (kensmith)
Discussed with: rrs
2007-06-14 17:14:27 +00:00
imp
9703ecd098
Expand callout compatibility macros in the main usb bridges.
2007-06-14 16:23:31 +00:00
imp
143b4d6930
Move PWR_* from usb_port.h to usb.h
2007-06-14 16:12:04 +00:00
yar
2c7e2004e3
Fix an error message that was beside the point.
2007-06-14 15:18:44 +00:00
imp
2258c7fa50
Move malloc definitions to usb.h.
...
Also, remove usb_malloc_type: it was unused.
Remove METHODS_NONE: it was unused.
Move include of opt_usb.h from usb_port.h to usb.h, since usb_port.h is
going away (there will be a usb_compat.h for out-of-tree drivers that want it).
2007-06-14 15:09:21 +00:00
yar
aaa29dd12a
Fix a typical off-by-one error that can result in an unterminated string:
...
strncpy(dst, src, sizeof(dst));
by substituting the safer strlcpy() for strncpy().
X-Security: none (the source string isn't user-supplied)
2007-06-14 14:44:04 +00:00
yar
25b7a16e23
Use the current user's login class for the decisions about where
...
the nologin(5) file is located and whether the user may bypass its
restriction.
Add some error checks.
Approved by: des
PR: bin/107612
2007-06-14 13:07:06 +00:00
simokawa
b325dde99b
- Suppress compiler optimization so that orb[1] must be written first.
...
We may need an explicit memory barrier for other architectures other than i386/amd64.
MFC after: 3 days
2007-06-14 12:52:13 +00:00
ariff
b43d30ed2c
Buffer optimization and locking cleanup. Don't resize/malloc
...
unless it is really necessary to ease down unlock/lock sequence.
2007-06-14 11:15:51 +00:00
ariff
3567d73171
Drain all callout handlers during driver detach appropriately.
2007-06-14 11:13:38 +00:00
ariff
034f58f663
Don't push too hard waiting/looping for codec detection interrupt.
...
Let the interrupt do the job waking us up.
2007-06-14 11:11:06 +00:00
ariff
14575cd8bb
- Add option to allow sleeping malloc(9).
...
- Cleanup locking assertions that aren't needed anymore.
2007-06-14 11:10:21 +00:00
yar
31192e1f32
Document the quirks of ~/.login_conf and LOGIN_MECLASS.
2007-06-14 09:33:37 +00:00
yar
aece401e56
Improve mdoc(7) markup.
2007-06-14 07:31:59 +00:00
delphij
687b4ebc1a
Require users to provide a length information for inet_ntoa_r,
...
this is common on other platforms.
Reported by: pointyhat via kris
2007-06-14 07:13:28 +00:00
yar
9790f8d691
Update some comments, mostly regarding LOGIN_MECLASS and ~/.login_conf.
2007-06-14 06:42:49 +00:00
bde
fd5ba4c3e4
Oops, back out previous commit since it was backwards to a wrong branch.
2007-06-14 05:57:13 +00:00
bde
c1decaa9ff
MFC: 1.11: fix the threshold for (not) using the simple Taylor approximation.
2007-06-14 05:51:00 +00:00
brueffer
160d2fe326
Add a missing Va option.
2007-06-14 05:32:23 +00:00