Commit Graph

110852 Commits

Author SHA1 Message Date
tsutsui
be164a7ff6 - remove "UT" (untested) from some working devices (ahc, pcscp, ex and epic)
- comment out sip which causes uncorrectable DMA error on TX.
- add commented out pcn which also causes DMA error.
2003-04-05 13:36:15 +00:00
kent
8d481d2c02 Note support of ICH4-M IDE Controller and i82540EP 2003-04-05 13:30:43 +00:00
kent
74636b2c38 Note support of 82540EP.
Bump date.
2003-04-05 13:25:17 +00:00
kent
d49a3d652c Support for 82540EP and 82540EP (LOM).
Not tested.
2003-04-05 13:23:17 +00:00
jdolecek
dee9f67e51 add SMB_CAPS() macro, which returns session capabilities 2003-04-05 13:13:50 +00:00
kent
d2102d9a56 ICH3 was not listed.
Bump date.
2003-04-05 13:04:42 +00:00
kent
42243152f6 Add '(ICH3)' to the names of 82801CA for consistency with other 82801xx names 2003-04-05 13:00:15 +00:00
pooka
b70c4e8541 use ${CAT} instead of cat 2003-04-05 12:30:51 +00:00
pooka
92cfb1b295 When not using TOOLS, compile magic using the newly-built binary
as suggested by Ken Wellsch in bin/20996
2003-04-05 11:33:16 +00:00
he
798d0c8191 Fix two mistakes done in the UFS2 merge:
o Correct the order of arguments to ffs_read_disk_block; the second one
   is blocknumber to read, not the size to be read.  This would affect the
   UFS2 code, and is thus not much excercised at the moment.
 o The offsets in SBLOCKSEARCH are in bytes, but ffs_read_disk_block wants
   its location in terms of DEV_BSIZE blocks.  Fix this bug in ffs_match().
The latter together with the recent magic number fix to <ufs/ffs/fs.h>
fixes a cross build problem seen when doing a i386->sparc build.
2003-04-05 11:30:53 +00:00
he
f8cf57f9b0 Remember to prefix the manually-swapped FS magic numbers with 0x. 2003-04-05 11:12:42 +00:00
jdolecek
55535a9403 smb_iod_addrq(): change vc_maxmux check to #ifdef DIAGNOSTIC panic
change other SMBERROR() calls to SMBIODEBUG() - they are only useful when
debugging, and avoids spamming console/system logs with messages triggerable
from userland
2003-04-05 11:12:23 +00:00
jdc
e6800497da Keep the cr->nl translation state in a separate variable, so that we can
do the translation ourselves (if the tty didn't do it for us).
Add debugging to track functions that change tty state.

Fixes PR 20834 by Stephen Borrill.
2003-04-05 10:06:59 +00:00
wiz
9cdee53232 Some minor fixes from Soren Jacobsen in PR 21017. 2003-04-05 09:22:22 +00:00
wiz
542ed9c119 Fix typo reported by Anthony Sofia in PR 21015. 2003-04-05 09:19:35 +00:00
wiz
ef0b6f6662 Bump date for last. 2003-04-05 09:14:01 +00:00
he
b44c5e8370 Track changes introduced when UFS2 was merged, so that this builds again. 2003-04-05 08:58:55 +00:00
tsutsui
3d23dbfe88 Include <machine/pio.h> for in32rb() and out32rb(). 2003-04-05 08:47:29 +00:00
briggs
7679f5b28b Channel active is bit 10, not 9. 2003-04-05 04:18:26 +00:00
christos
cf3a405a52 PR/21014: Tom Lyon: Failure to clear string by passing the wrong size to memset 2003-04-05 03:47:18 +00:00
nathanw
64b72cb09f A couple of READ calls in td_sync_info() were reading into a
pthread_spin_t variable (4 bytes) but telling read that they were
reading sizeof(struct pthread_spinlock_st) (12 bytes). This led to
overwriting other things on the stack, like the return address. Oops.

Fix by changing READ call here (and elsewhere, for future safety) to:
  READ(,, &variable, sizeof(variable))
instead of
  READ(,, &variable, sizeof(type)).

Fixes a crash in gdb when running "thread examine all" reported by
Bill Studenmund.
2003-04-05 01:39:13 +00:00
fair
eb1f0e9546 Additional text & formatting for the csh "limit" command;
hopefully this satisfies PR 11658
2003-04-05 00:59:20 +00:00
christos
f2829c2b54 fix problem with fgets() 2003-04-04 23:10:10 +00:00
matt
2f9404413f If extracting an address from the kernel pmap, see if the address is outside
the mapped address range.  If so, try to look it up via the BAT table.  If
successful, translate and return the BAT'ed pa.
2003-04-04 22:38:05 +00:00
kristerw
b8943cbf89 Save some text segment space by not defining URLPHY_DEBUG. 2003-04-04 22:21:39 +00:00
petrov
7facff52bd use branch slot in pmap_copy_page. 2003-04-04 21:35:39 +00:00
wiz
c8be46a52c Uncomment vfs_shutdown xref. 2003-04-04 20:58:27 +00:00
wiz
9ec6900e87 Add vfs_shutdown(9). 2003-04-04 20:57:27 +00:00
wiz
cb1e852e85 Minimally document vfs_shutdown(9). XXX: Right man page? 2003-04-04 20:55:25 +00:00
wiz
69b897b880 Refer pmap(9) for pmap_activate. 2003-04-04 20:33:21 +00:00
wiz
f67e95ee41 Refer ltsleep(9) instead of non-existing sleep(9). 2003-04-04 20:31:43 +00:00
matt
6193e8a4a1 Remove #define DEBUG. (this was working right. The problem I encountered
was due to a bug in PPCBOOT.  It was not ordering DIMM space largest to
smallest so that you could badly alignment memory).
2003-04-04 20:09:07 +00:00
wiz
a981ee0f3a vinvalbuf and vtruncbuf are using ltsleep(9), not the non-existing
sleep(9).
2003-04-04 19:39:17 +00:00
wiz
04508ad270 Sort SEE ALSO. 2003-04-04 19:34:21 +00:00
wiz
7b9216573d Note that Dd argument specifies last major change to man page.
Fixes PR 9705.
2003-04-04 19:25:40 +00:00
wiz
caa2d78a26 Add missing "to be". From Jim Bernard in PR 21008. 2003-04-04 19:21:21 +00:00
wiz
6457ab4776 Remove sentence describing pax's -X option. From Jim Bernard in PR 21009. 2003-04-04 19:19:43 +00:00
wiz
52c7291619 Bump date. 2003-04-04 19:02:44 +00:00
perry
aa62e15ec9 1) Remove a reference to a 30 second delay left when Ignatios
backed out a 30 second delay from the program.
2) Add a CAVEATS section noting that the command cannot and should not
   be stopped once started.
2003-04-04 18:13:47 +00:00
perry
cf423b3982 1) To eliminate a race condition in which the user could conceivably
try to quit or stop the program right at the moment after the it
   sends a TSTP to init, move the kill(1, TSTP) to right after we
   block most signals, instead of doing it just before.
2) To add TSTP to the signals we ignore. Once we start halting, it
   really is not safe to try to stop at all. You can't change your
   mind halfway through -- init will already be stopped and a TERM
   will have been sent to everything on the system within
   milliseconds of starting.
3) Adjust one comment for TNF
2003-04-04 17:43:08 +00:00
perry
cb606faa7a add :ht: to the Pc entry so wscons consoles will have proper tab
handling (i.e. not oxtabs.)
From Geoff C. Wing in PR misc/21006
2003-04-04 16:43:38 +00:00
fvdl
5f7172ed40 When fixing the cstotal structure, use the right size to copy it back.
Also, remove some accidentally committed debug code from the previous
commit.
2003-04-04 15:02:40 +00:00
fvdl
373feac024 Initialize cg_irotor correctly in newcg, to avoid false positives
for bad cylinder groups.
2003-04-04 13:45:21 +00:00
drochner
42b749318f adapt to struct inode change (in UVMHIST code) 2003-04-04 13:39:58 +00:00
kent
fa6424efa5 Support for ICH4M IDE Controller 2003-04-04 11:01:48 +00:00
jdolecek
cdfa2ea23e #ifdef MCHAIN_DEBUG a too verbose message 2003-04-04 08:20:50 +00:00
jdolecek
1233bcc56f sprinle __RCSID() 2003-04-04 08:05:32 +00:00
jdolecek
9801788f6d add /etc/nsmb.conf to FILES
refer to /usr/share/examples/smbfs/dot.nsmbrc rather than ./examples/dot.nsmbrc
2003-04-04 07:57:58 +00:00
jdolecek
83474bb6d9 fix the name of global configuration file - it's /etc/nsmb.conf, not
/usr/local/etc/nsmb.conf
pointed out in FreeBSD misc/45273
2003-04-04 07:54:44 +00:00
jdolecek
772fa9214a add /usr/share/examples/smbfs/dot.nsmbrc 2003-04-04 07:53:09 +00:00