| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
| |
there is nothing we can do about it. In fact, after further review
there simply are not very many instances of the two structures NFS
checks for 'bloat' so I've decided to simply rip the checks out entirely.
Submitted by: Andrew Gallatin <gallatin@cs.duke.edu>
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Add vendor/device ID for Corega USB-T ethernet adapter to necessary
places so that it will work with the kue driver.
- Add vendor/device ID for CATC Netmate devices for driver to be added
soon.
- Get really crazy about netisr stuff: avoid doing any mbuf allocations
or deallocations at splbio/splusb.
- Fix if_aue driver so that it works with LinkSys USB100TX: you need
to flip the GPIO bits just the right way to put the PHY in the right
mode.
|
|
|
|
|
|
| |
to sleep). Locking 101, part 2: do not look at buffer contents after
you have been asleep. There is no telling what wonderous changes may
have occurred.
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
This seems to be responsible for a bunch of panics where the process
sleeps and something else finds softupdates "locked" when it shouldn't
be. This commit is unreviewed, but has been a big help here.
Previously my boxes would panic pretty much on the first fsync() that
wrote something to disk.
|
| |
|
|\
| |
| |
| | |
which included commits to RCS files with non-trunk default branches.
|
| |
| |
| |
| | |
Obtained from: ftp://coombs.anu.edu.au/pub/net/firewall/ip-filter/ip_fil3.3.6.tar.gz
|
| |
| |
| |
| |
| |
| |
| | |
Add $FreeBSD$ CVS identifier.
PR: 14253
Submitted by: Arcady Genkin
|
| |
| |
| |
| |
| |
| |
| | |
Sorry for build failure. There was a mistake when I moved the patch
from my build check machine to commit machine.
Specified by: peter
|
| |
| |
| |
| |
| |
| |
| |
| | |
A new function bindresvport2(), AF independent version of bindresvport()
is also added.
Reviewed by: sumikawa
Obtained from: KAME project
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
is very likely to become consensus as recent ietf/ipng mailing list
discussion. Also recent KAME repository and other KAME patched BSDs
also applied it.
s/__ss_family/ss_family/
s/__ss_len/ss_len/
Makeworld is confirmed, and no application should be affected by this change
yet.
|
| | |
|
| |
| |
| |
| |
| | |
PR: 15729
Submitted by: Kim Toms
|
| |
| |
| |
| | |
on INET6 enabled environment.
|
| |
| |
| |
| |
| |
| |
| | |
to our hardware list.
PR: 15744
Submitted by: Sascha Blank <blank@uni-tier.de>
|
| |
| |
| |
| | |
code that exports the bus heirarchy to hw.devices.*
|
| | |
|
| |
| |
| |
| |
| |
| | |
PR: 16098
Submitted by: Alan.Judge@indigo.ie
Reviewed by: ru
|
| |
| |
| |
| | |
Submitted by: sheldonh
|
| | |
|
| |
| |
| |
| |
| | |
more appropriate uses of mdoc macros given the context they were
used in.
|
| |
| |
| |
| | |
support DHCP and more information would be handy.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
>yokota 2000/01/11 05:39:06 PST
>
> Modified files:
> sys/dev/usb ukbd.c
> sys/dev/kbd atkbd.c kbd.c kbdreg.h
> Log:
> Rework shifta/ctla/alta key handling. It appears that there was
> misunderstanding between the PR originator and me. I hope I got it
> right this time.
>
> Revision Changes Path
> 1.22 +4 -1 src/sys/dev/usb/ukbd.c
> 1.21 +1 -8 src/sys/dev/kbd/atkbd.c
> 1.16 +19 -10 src/sys/dev/kbd/kbd.c
> 1.9 +2 -2 src/sys/dev/kbd/kbdreg.h
Submitted by: yokota
|
| | |
|
| |
| |
| |
| |
| |
| | |
PR: 15980
Submitted by: John Reynolds <jjreynold@home.com>
Reviewed by: sheldonh
|
| | |
|
| | |
|
| |
| |
| |
| | |
the correct location in the ntpd(8) page.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
in favour of placing information in the correct sections.
The ntp_acc(8), ntp_auth(8), ntp_clock(8), ntp_conf(8),
ntp_misc(8) and ntp_mon(8) pages have been merged into
ntp.conf(5) and ntp.keys(5).
Requested by: rgrimes, wollman
|
| | |
|
| |
| |
| |
| | |
to the respective system call entry points.
|
| | |
|
| |
| |
| |
| | |
Reviewed by: peter
|
| | |
|
| | |
|
| |
| |
| |
| | |
Add an entry for the Toshiba Fast Infra Red controller (0x07011179)
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
it is no longer sufficient to get a lock on a buffer to know
that its write has been completed. We have to first get the
lock on the buffer, then check to see if it is doing a
background write. If it is doing background write, we have
to wait for the background write to finish, then check to see
if that fullfilled our dependency, and if not to start another
write. Luckily the explanation is longer than the fix.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
a vnode has not been written (which would clear certain of its
dependencies). The problems arises because fsync with MNT_NOWAIT
no longer pushes all the dirty blocks associated with a vnode. It
skips those that require rollbacks, since they will just get instantly
dirty again. Such skipped blocks are marked so that they will not be
skipped a second time (otherwise circular dependencies would never
clear). So, we fsync twice to ensure that everything will be written
at least once.
|
| |
| |
| |
| | |
Remove the confusing text about pccard and unit numbers for ep0.
|
| | |
|
| |
| |
| |
| | |
but this is enough to get us going.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
layout. It seems that I cleaned it up a bit too much and confused a few
if () {
if () {
} else {
}
}
statements in the obvious manner.
This allows the driver to transmit packets again. *sigh*
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Stop the recurring feeling of deja vu
Stop the recurring feeling of deja vu
Stop the recurring feeling of deja vu
and debounce the eject messages. We now mark the socket empty in the
interrupt handler, rather than after we've disabled the socket which
happens "much later".
|
| |
| |
| |
| | |
same pnpbios id
|
| | |
|
| | |
|