| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
| |
a more BSD flavour.
|
|
|
|
|
|
|
|
|
|
|
| |
Move common stuff into Makefile.inc, and tidy up all the Makefiles
as a result.
Build new modules.
Put a commented-out dependancy on libpam for the (shared) modules.
I can't bring this in just yet, as the dependancy (modules->libpam)
is reversed for the static case (libpam->modules).
|
|
|
|
| |
to happen remotely. Damn CVS bugs :-(
|
|
|
|
| |
password is empty/null.
|
|
|
|
| |
extra "standard" options.
|
|
|
|
|
| |
for old terminal services, IP multicast on VLAN devices works, IPv4
fragmentation denial-of-service mitigation, diskcheckd(8).
|
|
|
|
|
|
|
|
| |
pam_securetty silently succeeds if the user is on a secure tty
as defined by /etc/ttys.
pam_ftp does "anonymous ftp" style authentication with options for
specifying the anonymous user(s).
|
|
|
|
| |
the KTR_COMPILE and KTR_MASK examples.
|
|
|
|
| |
used KTR levels.
|
| |
|
|
|
|
|
|
|
| |
Correct match for A5000 SES instance.
PR: 19887
MFC after: 2 weeks
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
elected to do this in the probe rather than the attach so that we don't
disturb things which this might reset. different cards have different
quirks, according to their datasheets.
This should fix the "I booted in windows and rebooted to FreeBSD and
now things don't work" problem.
PR: 4847, 20670
|
|
|
|
|
| |
PR: 25028
Submitted by: Mark Andrews <marka@nominum.com>
|
|
|
|
| |
Reviewed by: ru
|
|
|
|
|
|
| |
were 3 virtual consoles in older releases, but now they are 8.
MFC after: 1 week
|
|
|
|
| |
Approved by: Charles Mott <cmott@scientech.com>
|
|
|
|
| |
Submitted by: sumikawa
|
|
|
|
| |
Approved by: Atsushi Murai <amurai@spec.co.jp>
|
| |
|
|
|
|
| |
Deprecate -alias further (after a repo-copy)
|
|
|
|
|
|
|
|
|
| |
route in ifa_ifwithroute(), as the last resort, look up the route to
the gateway, not destination (to derive the interface from).
PR: kern/27852
Submitted by: Iasen Kostoff <tbyte@tbyte.org>
MFC after: 2 weeks
|
| |
|
|
|
|
|
|
|
|
| |
null -> nullfs
umap -> umapfs
union -> unionfs
Approved by: obrien
|
|
|
|
|
|
|
| |
The change to reuse _up from FILE (to allow FILE to grow without changing
size) overlooked FILE being allocated off the stack.
Approved by: sobomax
|
|
|
|
| |
Submitted by: ru
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
been patched so many times it was a bit of a mess. There are style,
code and man page cleanups. The following are the functional changes:
The RFC only permits the returning of 4 possible error
codes, make sure we only return these (PR 27636).
Use MAXLOGNAME to determine the longest usernames.
Add a -i flag, which returns the uid instead of the username
(this is from a PR 25787, which also contained alot of the
cleanups in this patch).
PR: 25787, 27636
Partially Submitted by: Arne.Dag.Fidjestol@idi.ntnu.no
Reviewed by: Arne.Dag.Fidjestol@idi.ntnu.no, green
MFC after: 3 weeks
|
|
|
|
| |
#ifdef it out for now.
|
| |
|
|
|
|
| |
Shibagaki-san (shiba@freebsd.org). I neglected to mention that.
|
|
|
|
|
|
|
|
|
|
|
|
| |
card bus bridges.
We now always use pci interrupts for pci cards. This will allow us to
more easily configure things. You must change your IRQ lines in
/etc/pccard.conf to match what we've probed. I'm not sure the right
way to deal with this right now.
Development of pci pcmcia has been funded by Monzoon Networks AG. I
am grateful for their generosity.
|
|
|
|
|
|
|
| |
errx. Instead use warn to print the string, then cleanup and exit
normally.
This fixes a core dump if the executable to be run doesn't exist.
|
|
|
|
|
|
|
| |
certain cases, and a close() by another process could potentially rip the
pipe out from under the (blocked) locking operation.
Reported-by: Alexander Viro <viro@math.psu.edu>
|
|
|
|
|
|
| |
way to clear that field is to use S_IFMT.
Pointed out by BDE.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
for card change interrupts is different than the pci stuff that's
coming soon. Set the management irq in different ways. If
pci_parallel interrutp routing, then use the PCI way of getting
interrupts. Move polling mode into pcic_isa since when we're routing
via pci polling doesn't work because many bridges (systems hang solid).
If we're routing interrupts via pci, they can be shared, so flag them
as such.
Note, this doesn't actually change anything since the pci attachment
isn't quite ready to be committed.
|
| |
|
|
|
|
|
| |
PR: 27866
Submitted by: Peter Jeremy <peter.jeremy@alcatel.com.au>
|
|
|
|
| |
MFCs noted: Ukranian console support, O_DIRECT.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
A attacker sending a lot of bogus fragmented packets to the target
(with different IPv4 identification field - ip_id), may be able
to put the target machine into mbuf starvation state.
By setting a upper limit on the number of reassembly queues we
prevent this situation.
This upper limit is controlled by the new sysctl
net.inet.ip.maxfragpackets which defaults to 200,
as the IPv6 case, this should be sufficient for most
systmes, but you might want to increase it if you have
lots of TCP sessions.
I'm working on making the default value dependent on
nmbclusters.
If you want old behaviour (no upper limit) set this sysctl
to a negative value.
If you don't want to accept any fragments (not recommended)
set the sysctl to 0 (zero).
Obtained from: NetBSD
MFC after: 1 week
|
|
|
|
| |
hostname laste time.
|
|
|
|
|
|
|
| |
Make the default setting YES for now to get some experience with it.
Note: If people starts seeing disk errors because of this then it
should not be backed.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
With a small disk being 20GB these days, chances are pretty good that
an ailing sector will not be read while still being recoverable by
the drive.
Diskcheck daemon will read disks in the background at a low rate and
that way give the diskdrive a chance to detect and correct soft read
errors before they become hard errors.
Idea by: phk
Written by: ben
|
|
|
|
| |
than we can handle. pim6[ds]d are available as ports instead.
|
|
|
|
|
|
|
|
|
|
|
| |
if_up() must be called at splnet or higher.
Second, set the IFF_RUNNING flag on an interface after its
resources (i.e. tunnel source and destination addresses)
have been set. Note that we don't set IFF_UP because it is
if_up()'s job to do that.
PR: kern/27851
Submitted by: Horacio J. PeÓa <horape@compendium.com.ar>
|
|
|
|
| |
MFC after: 1 week
|
|
|
|
|
|
|
|
| |
cursor movements;
- minor cleanups in cursor position displaying routines;
- properly resent "file modified" flag when editing several files.
MFC after: 1 week
|
|
|
|
|
|
| |
PR: 26543
Submitted by: Brooks Davis <brooks@one-eyed-alien.net>
MFC after: 3 weeks
|
|
|
|
|
| |
PR: kern/9408
Submitted by: Philipp Mergenthaler <philipp.mergenthaler@stud.uni-karlsruhe.de>
|