| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
Move to new "struct disk *" centered API".
OK'ed by: emoore
|
|
|
|
|
|
|
|
|
| |
- Changed VM_MAXUSER_ADDRESS to be defined in terms of PTDPTDI. In order for
assumptions about the recursive page table map to work it must be the base
of the recursive map. Any pte offset that's not NPTEPG will break these
assumptions.
Sponsored by: DARPA, Network Associates Laboratories
|
| |
|
|
|
|
| |
Submitted by: "Georg-W. Koltermann" <g.w.k@web.de>
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
This fixes a panic on large systems where a single user
may have more than 64K active or inactive vnodes.
PR: 48234
Reviewed by: mike (mentor)
|
|
|
|
|
|
|
| |
tail pointer must be updated.
Reported by: Kris Kennaway <kris@obsecurity.org>
Sponsored by: DARPA & NAI Labs.
|
|
|
|
| |
platform case it (or use alternate spellings).
|
|
|
|
|
|
|
|
| |
flag that can be marked on each symmetric op
o eliminate hw.ubsec.maxbatch and hw.ubsec.maxaggr since they are not
needed anymore
o change ubsec_feed to return void instead of int since zero is always
returned and noone ever looked at the return value
|
|
|
|
|
| |
totally correct, but it has caused breakage for too long. I welcome
someone with more fd fu to fix it correctly.
|
| |
|
|
|
|
|
|
| |
so that boot loader once again will fit.
Sponsored by: DARPA & NAI Labs.
|
| |
|
|
|
|
|
| |
Submitted by: Scott Renfro <scott@renfro.org>
MFC after: 1 day
|
| |
|
| |
|
|
|
|
| |
Reviewed by: sam
|
| |
|
|
|
|
| |
a race condition with the TCP timer routines.
|
| |
|
|
|
|
| |
TIME-WAIT control block.
|
|
|
|
|
|
|
|
| |
instead of allocating another page of kva and mapping it in again. This was
likely an oversight in revision 1.174 (cut and paste from pmap_pinit).
Discussed with: peter, tegge
Sponsored by: DARPA, Network Associates Laboratories
|
| |
|
| |
|
| |
|
|
|
|
|
| |
Submitted by: Sascha Holzeiter <sascha@root-login.org>
PR: 48559
|
|
|
|
|
|
|
|
| |
Reading the PCI config space with the wrong (larger) size is not
a problem in this case, but writing can be as it clobbers unrelated
registers. In this case the clobbering is for reserved fields, which
too is mostly harmless... for now. Hence, this change is mostly
preventive in nature.
|
|
|
|
|
| |
PR: 1775
Reviewed by: mbr
|
|
|
|
|
|
| |
than use a macro that tries to do conversions in place.
Compile tested on: sparc64
|
|
|
|
|
|
| |
be NPDEPTD. Grumble.
Sponsored by: DARPA, Network Associates Laboratories
|
|\
| |
| |
| | |
which included commits to RCS files with non-trunk default branches.
|
| |
| |
| |
| | |
This is taken from the 2.4.3 Linux sources as shipped on Red Hat 7.1 Alpha.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
mainly to get control over new features. E.g., ext2fs filesystems
may now have a type field in directory entries (like ufs has had for
20 years or so). Current versions of FreeBSD ext2fs panic on this.
ext2fs filesystem code is supposed to check the feature flags in the
superblock and take appropriate actions for unsupported features.
The other new features are sparse superblocks, large file support,
and btree'd directories.
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
files seem to be based on. Don't bother importing <asm-i386/string.h>
just to get the Linux implementation of memscan() which is appended
to our i386-bitops.h. The BSD skpc() should have been used instead
of memscan().
Obtained from: Linux 1.2.2 distribution
|
| |
| |
| |
| | |
This is taken from the 2.4.3 Linux sources as shipped on Red Hat 7.1 Alpha.
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
page directory.
- Use these instead of the magic constants 1 or PAGE_SIZE where appropriate.
There are still numerous assumptions that the page directory is exactly
1 page.
Sponsored by: DARPA, Network Associates Laboratories
|
| |
| |
| |
| |
| |
| |
| |
| | |
without waiting, since they are called from a system-call context only.
This appears to fix all sorts of problems with open("/dev/dsp", O_WRONLY)
randomly returning ENXIO.
Found by: cognet
|
| |
| |
| |
| | |
const pointer.
|
| | |
|
| |
| |
| |
| |
| |
| | |
So cast to u_long before printing out and use a matching specifier.
Tested on: sparc64
|
| | |
|
| |
| |
| |
| | |
so this at least compiles on big-endian machines.
|
| |
| |
| |
| |
| |
| | |
Move to "struct disk *" centered API.
Fix some minor nits.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Security improvements:
- Increase the size of each syncookie secret from 32 to 128 bits
in order to make brute force attacks on the secrets much more
difficult.
- Always return the lowest order dword from the MD5 hash; this
allows us to expose 2 more bits of the cookie and makes ACK
floods which seek to guess the cookie value more difficult.
Performance improvements:
- Increase the lifetime of each syncookie from 4 seconds to 16
seconds. This increases the usefulness of syncookies during
an attack.
- From Yahoo!: Reduce the number of calls to MD5Update; this
results in a ~17% increase in cookie generation time here.
Reviewed by: hsu, jayanth, jlemon, nectar
MFC After: 15 seconds
|
| |
| |
| |
| |
| |
| | |
Move ida driver to "struct disk *" centric api.
Retire major number 109.
|
| |
| |
| |
| | |
during attach.
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| | |
in massive locking issues on diskless systems.
It is also not clear that this sysctl is non-dangerous in its
requirements for locked down memory on large RAM systems.
|