Craig Rodrigues
ba8e255297
Previously, the mount_ext2fs binary listed the acceptable mount
...
options for ext2fs. Now that we use nmount() directly from the mount
binary to access ext2fs filesystems, add the list of acceptable mount
options to ext2_ops, so that vfs_filteropts() will accept
options like "noatime" for ext2fs.
PR: 105483
Noticed by: Dr. Markus Waldeck <waldeck gmx de>
MFC after: 1 month
2006-11-18 18:22:11 +00:00
Ceri Davies
5140328ad3
Have the synopsis compile.
...
Pointed out by: ru
2006-11-18 17:56:59 +00:00
Konstantin Belousov
bdaee9ef4e
Add missed ")". Fix the build.
...
Pointy hat to: kib
2006-11-18 17:27:39 +00:00
Kip Macy
1a667f5b30
eeprom has been removed from sun4v - remove from NOTES
2006-11-18 17:16:02 +00:00
Sam Leffler
fdc6354580
mark struct ether_header packed so gcc honors alignment
...
constratins on arm; this fixes bridging when packets are
rx'd so ip headers are 32-bit aligned
Reviewed by: imp (and discussed elsewhere)
MFC after: 2 weeks
2006-11-18 15:50:24 +00:00
Konstantin Belousov
cce1514679
Sync struct sysinfo with real one from linux.
...
Submitted by: rdivacky
2006-11-18 14:37:54 +00:00
Konstantin Belousov
0c00520b93
Use standard debugging facilities in linux_getcwd().
...
Submitted by: rdivacky
2006-11-18 13:31:03 +00:00
Konstantin Belousov
d559d18183
Add debuging printfs to syscalls that do not contain it yet. In
...
sethostname do not print the hostname because it would require to copyin
the string. Sethostname is not very frequently used.
Submitted by: rdivacky
2006-11-18 13:00:59 +00:00
Konstantin Belousov
f472c6e35a
Remove unecessary locking of process in linux_getpid.
...
Suggested by: jhb
Submitted by: rdivacky
2006-11-18 10:12:43 +00:00
Christian Brueffer
c5f3a2c1a5
- Use a standard section 4 SYNOPSIS
...
- Xref uark(4)
MFC after: 3 days
2006-11-18 08:07:43 +00:00
Scott Long
3c77cee1ba
Change the internal API for polled commands. Calling mfi_polled_command
...
after calling mfi_mapcmd is no longer needed, so long as the MFI_CMD_POLLED
flag is set. This change eliminates the possibility of a polled command
getting posted twice to the driver. This is turn fixes panics on shutdown
when INVARIANTS is set.
Sponsored by: Ironport
2006-11-18 07:33:53 +00:00
Kip Macy
8c8a01d714
Remove two completely unused files
...
Reviewed by: jb (mentor rwatson)
2006-11-18 07:28:47 +00:00
Kip Macy
fda40eb204
Remove two more duplicated files
...
Reviewed by: jb (mentor is rwatson)
2006-11-18 07:24:56 +00:00
Kip Macy
1eea142b6f
remove 13 (largely) redundant files and switch to the sparc64/sparc64 version
...
Reviewed by: jb (mentor rwatson)
2006-11-18 07:10:52 +00:00
Matt Jacob
04697f7aa3
Make the SAN login/logout stuff more common between different chipsets
...
and provied an isp_control entry point so that the outer layers can
do PLOGI/LOGO explicitly. Add MS IOCB support. This completes the cycle
for base support for SMI-S.
2006-11-18 03:53:16 +00:00
Jung-uk Kim
e22291430e
Fix msgsnd(3)/msgrcv(3) deadlock under heavy resource pressure by timing out
...
msgsnd and rechecking resources. This problem was found while I was running
Linux Test Project test suite (test cases: msgctl08, msgctl09).
Change `msgwait' to `msgsnd' and `msgrcv' to distinguish its sleeping
conditions. Few cosmetic changes to debugging messages.
2006-11-17 20:43:01 +00:00
John Baldwin
81efc3d94c
Add support for 8 byte hardware watches in long mode. Kernel hardware
...
watches support 8 byte watches. For userland, we disallow 8 byte watches
for 32-bit tasks.
2006-11-17 20:27:01 +00:00
Bruce A. Mah
4fca587ae7
Modified release note: Mention move of GNOME-related ports from
...
/usr/X11R6 to /usr/local.
Suggested by: kensmith
2006-11-17 20:15:26 +00:00
Sam Leffler
52f01b3b0e
add wpa_passphrase utility to the build
...
PR: bin/104457
Submitted by: Henrik Brix Andersen
MFC after: 1 week
2006-11-17 19:38:51 +00:00
John Baldwin
7693afca4e
- Add macro constants for the various fields in %dr7 and use them in place
...
of various scattered magic values.
- Pretty print the address of hardware watchpoints in 'show watch' rather
than just displaying hex.
- Expand address field width on amd64 for 64-bit pointers.
2006-11-17 19:20:32 +00:00
Matt Jacob
6301ffe515
Disable code to set max read byte count on the 2400.
...
It caused a panic in writing the config register on a system. Turn
it off until we take the time to understand it.
Reported by and Testing by: Anton
2006-11-17 17:32:45 +00:00
David E. O'Brien
9ae2249db2
Missed two nits in rev 1.7.
2006-11-17 16:49:40 +00:00
John Baldwin
e6337905e5
Fix the output format of MI ddb watches in 'show watch' on 64-bit
...
platforms.
2006-11-17 16:41:56 +00:00
John Baldwin
5527d3ed75
Trim some noise from bootverbose:
...
- Drop the printf in intr_machdep.c when we assign an interrupt souce to
a CPU. Each source already has a more detailed printf.
- Don't output a line for each ioapic pin showing its initial state, this
has outlived its usefulness.
- When an APIC enumerator sets the bus, polarity, or trigger mode of an
ioapic pin, just return success without printing anything if the new
value matches the current one.
MFC after: 2 weeks
2006-11-17 16:41:03 +00:00
John Baldwin
5d346a567c
A few more style fixes.
2006-11-17 16:37:35 +00:00
Konstantin Belousov
dbf989ea6a
Wake up PIOCWAIT handler on the process exit in addition to the stop
...
events. &p->p_stype is explicitely woken up on process exit for us.
Now, truss /nonexistent exits with error instead of waiting until killed
by signal.
Reported by: Nikos Vassiliadis nvass at teledomenet gr
Reviewed by: jhb
MFC after: 1 week
2006-11-17 14:52:38 +00:00
Olivier Houchard
1ea7de37f9
Erm we really want to mask all interrupts in the range, just not the first
...
one.
Submitted by: ru
2006-11-17 11:56:56 +00:00
Søren Schmidt
72a426ba26
Deal more generically with the byteswap needed on !littleendian HW.
...
Account for the odd layout on ARM bigendian HW.
2006-11-17 11:13:47 +00:00
Ken Smith
8b33776a49
Shift to vim-lite package because vim package doesn't build at the moment.
...
MFC after: 3 days
2006-11-17 05:10:41 +00:00
Ken Smith
bcc506c582
Alpha no longer supported.
...
Noticed by: ru@
2006-11-17 04:24:33 +00:00
Kevin Lo
f43f0196a9
Compile -- remove an unused global variable avail_end.
...
Approved by: cognet
2006-11-17 00:53:39 +00:00
Matt Jacob
52c008534d
*smack* - forgot to do i386 compile, so last
...
commit broke things.
2006-11-17 00:19:55 +00:00
Matt Jacob
757cabc30b
Finally fix local command responses to set residual correctly.
...
This allows us to play nicely on SANs when we have target mode
enabled in f/w but have neither the scsi_targbh enabled or
scsi_targ with a target enabled.
2006-11-16 23:47:16 +00:00
Ken Smith
639fe104d8
Move the documentation to its own separate disc to make room for more
...
packages on disc2. This will also let users decide if they want to
have a CD of the docs at all - unless they're disconnected from the
net they will probably find the Web site more useful.
Reviewed by: ru
MFC after: 3 days
2006-11-16 23:09:35 +00:00
Mohan Srinivasan
3c2fcc3c92
vfs_hash_insert() vputs() the losing vnode before returning, in the event of
...
a race where a duplicate vnode is entered into the vfs hash. nfs_nget() shouldn't
be releasing the vnode in that case.
2006-11-16 23:03:46 +00:00
Mohan Srinivasan
87c125cecc
Fix to readdir+ reply handling. When inserting an entry into the namecache,
...
initialize the nfsnode's ctime. Otherwise a subsequent lookup purges the
just entered namecache entry.
2006-11-16 23:02:37 +00:00
Christian Brueffer
011af721cd
Note uhidev.4 removal.
...
Approved by: rwatson (mentor)
MFC after: 1 week
2006-11-16 22:34:17 +00:00
Christian Brueffer
5fdb097b5d
Remove uhidev.4 and references to it, the corresponding code was never
...
imported from NetBSD.
Submitted by: markus
MFC after: 1 week
2006-11-16 22:32:27 +00:00
Jung-uk Kim
b8aa271342
Fix message size tests for msgsnd(3) and msgrcv(3). msgsz is the length of
...
actual message and it should not include size of message type.
2006-11-16 19:51:10 +00:00
Ken Smith
b720454e87
Switch to linux_base-fc4 for the Linux emulation package.
...
MFC after: 3 days
2006-11-16 19:09:41 +00:00
Ken Smith
0dd900b35b
Switch to emulators/linux_base-fc4 since that's the new default
...
Linux emulator.
MFC after: 3 days
2006-11-16 19:08:27 +00:00
SUZUKI Shinsuke
5e5792a887
implemented more validation checks about incoming responses per RFC2080, and one additional heuristic check for safer operation.
...
Obtained from: KAME
MFC after: 1 week
2006-11-16 19:03:03 +00:00
John Baldwin
3bea4efeb1
Look for capabilities in PCI-PCI bridges using the same CAP PTR register
...
as for type 0 devices.
Submitted by: grehan
MFC after: 1 week
2006-11-16 17:31:33 +00:00
Giorgos Keramidas
7b1752fbac
Document the new -P option of sockstat(1) in the release notes.
...
Reviewed by: bmah
2006-11-16 16:07:15 +00:00
Ruslan Ermilov
c5233647e2
Grammar fix from Ceri.
2006-11-16 13:43:05 +00:00
Ruslan Ermilov
8d594a3fb5
Remove an unused variable.
2006-11-16 13:32:30 +00:00
Ruslan Ermilov
b59cc9bbf4
Document that visual bell is the global setting, while
...
other bell types can be set individually for each vty.
2006-11-16 12:37:35 +00:00
Ruslan Ermilov
5a66b66324
Replace magic numbers for console bell types with defines.
2006-11-16 12:27:51 +00:00
Maxim Konovalov
79ba24ca87
o Make pv_maxchunks no less than maxproc. This helps to survive a
...
forkbomb explosion.
Reviewed by: alc
Security: local DoS
X-MFC atfer: RELENG_6 is not affected due to a different pv_entry
allocation code.
2006-11-16 11:46:24 +00:00
Benno Rice
262f6969de
Add the Transcend 2GB card specs.
2006-11-16 08:04:29 +00:00