summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* o Implement C99 classification macros isfinite(), isinf(), isnan(),mike2003-02-1213-102/+220
| | | | | | | | | isnormal(). The current isinf() and isnan() are perserved for binary compatibility with 5.0, but new programs will use the macros. o Implement C99 comparison macros isgreater(), isgreaterequal(), isless(), islessequal(), islessgreater(), isunordered(). Submitted by: David Schultz <dschultz@uclink.Berkeley.EDU>
* Do not do an assignment in a truth test (previous commit) or gcc gives apeter2003-02-121-1/+1
| | | | | | | | | warning which breaks builds. cc1: warnings being treated as errors src/sys/net/bridge.c: In function `bdg_forward': sys/net/bridge.c:931: warning: suggest parentheses around assignment used as truth value *** Error code 1
* Add __unused to the declaration of yyrcsid in a more portable way.davidc2003-02-121-1/+4
| | | | Discussed with: alfred, bde, jmallett, obrien
* Correctly set bio_data in cloned children when cutting up large requests.tegge2003-02-121-1/+1
|
* Sync to 1.113 of usbdevssanpei2003-02-122-2/+30
|
* Add support YAMAHA NetVolante Routerssanpei2003-02-122-0/+13
| | | | | | | | | | NetVolante RTA54i Broadband&ISDN Router NetVolante RTA55i Broadband VoIP Router NetVolante RTW65b Broadband Wireless Router NetVolante RTW65i Broadband&ISDN Wireless Router PR: bin/42574 Submitted by: Yoshihiko Sarumaru <mistral@imasy.or.jp>
* Teach whereintheworld to preserve TinderboxNG log messages.des2003-02-121-1/+5
|
* Implement a handle for efficient implementation of perforations inphk2003-02-122-7/+13
| | | | | | | | | | | | | lower extremities. Setting bit 4 in debugflags (sysctl kern.geom.debugflags=16) will allow any open to succeed on rank#1 providers. This will generally correspond to the physical disk devices: ad0, da0, md0 etc. This fundamentally violates the mechanics of GEOMs autoconfiguration, and is only provided as a debugging facility, so obviously error reports on GEOM where this bit is or has been set will not be accepted.
* Make "CURRENT" the default branch, and special-case it in the updatedes2003-02-121-2/+2
| | | | code so it results in -A rather than -rCURRENT.
* Note that graphics performance on Miata generally is better with thewilko2003-02-121-1/+2
| | | | graphics card in a 64bit PCI slot.
* Minor correction to comment: PNIC and XIRCOM have eeprom, its justimp2003-02-122-2/+2
| | | | non-standard.
* Implement rman_get_deviceimp2003-02-122-0/+7
| | | | | | # I though this was alredy implemented Pointy hat on my head shown by: peter
* Add description about kldload and security note.simokawa2003-02-124-0/+34
|
* MF-p4:imp2003-02-121-80/+154
| | | | | | | | | | | | | Kill the slightly bogus #define for DECODE_PROTOTYPE Be less verbose. Hide most (all I hope) of the CIS parsing behind cardbus_debug_cis (which is set with hw.cardbus.debug_cis=1). This doesn't fix problems with parsing, but should make cardbus less chatty. There appears to be some issues still with the parsing of the CIS, but this won't fix them. Prompted by: scottl
* MFp4:imp2003-02-121-0/+11
| | | | | | | | | | | Second part of the kldload patches for cardbus. This makes kldload of a driver for a device that's inserted now appears to work. To make it work, we only do a power cycle of the card if there's no children drivers attached. This likely is papering over bogosities in the power system. The power sequence needs to be re-written, so I'll not worry about the papering over until the re-write.
* MFp4:imp2003-02-121-7/+5
| | | | Don't reach inside of rman to r_dev. Use rman_get_device instead.
* Whitespace nits.imp2003-02-121-2/+2
|
* Remove kptobj. Instead, use VM_ALLOC_NOOBJ.alc2003-02-122-18/+4
|
* Back out 1.143 and 1.144. They are no longer needed now that we startimp2003-02-122-12/+0
| | | | | | devd later in the boot process. This should fix all the problems people have had with those commits. Diskless should be working again, and those that mount /usr with nfs should be able to do that again too.
* Start devd after the networking stuff, but before we mount theimp2003-02-121-2/+2
| | | | | | | | | | | critical remote systems. This lets us run commands from devd that aren't on the / partition. This also means we can remove some kludges from the networking startup that I added a while ago that caused other problems. There's still a race in starting devd that needs to be fixed in devd so that things present at boot will be configured by the time devd does daemon(). That race will be fixed later.
* Now that we don't have the NODEVFS case, we can just check to see if aimp2003-02-121-0/+3
| | | | | | | device node exists directly to see if OLDCARD is compiled into the kernel. This eliminates the scary warning that people using NEWCARD are seeing when they have pccard_enable=YES in their /etc/rc.conf files.
* This manual is called SIGNBIT(3) not FPCLASSIFY(3).mike2003-02-121-1/+1
|
* Document the NOMAN option.trhodes2003-02-121-0/+3
|
* Properly document that syncache timer processing requires anhsu2003-02-121-3/+3
| | | | exclusive TCP protocol lock.
* Implement a bio-taskqueue to reduce number of context switches inphk2003-02-113-21/+65
| | | | | | | | | | | | | | | | | | | | disk I/O processing. The intent is that the disk driver in its hardware interrupt routine will simply schedule the bio on the task queue with a routine to finish off whatever needs done. The g_up thread will then schedule this routine, the likely outcome of which is a biodone() which queues the bio on g_up's regular queue where it will be picked up and processed. Compared to the using the regular taskqueue, this saves one contextswitch. Change our scheduling of the g_up and g_down queues to be water-tight, at the cost of breaking the userland regression test-shims. Input and ideas from: scottl
* Say hello to Tinderbox 2.0, the choice of a new generation!des2003-02-112-0/+446
|
* Implement C99's signbit() macro.mike2003-02-114-2/+102
|
* PFIL_HOOKS optimization: check if at least one hook is present beforesam2003-02-111-2/+3
| | | | munging the IP header to pass to the hooks
* Add Warner Losh quote.wes2003-02-111-0/+4
| | | | Submitted by: Alexandr Kovalenko <never@nevermind.kiev.ua>
* Announce our ability to do DFLTPHYS sized transfers.phk2003-02-111-0/+1
|
* Announce our ability to do MAXPHYS transfers.phk2003-02-112-0/+2
|
* Advertise MAXPHYS upwards, we will split as necessary before we get to thephk2003-02-111-1/+1
| | | | bottom of things.
* Check disk->d_maxsize/dev->si_iosize_max at open time rather than in strategy.phk2003-02-111-10/+7
| | | | Printf a warning and use DFLTPHYS if the drive has not set a size.
* Deregister the dev_clone event handler when unloading the module. Badjoerg2003-02-111-1/+5
| | | | | | things might happen otherwise. Noticed by: Michael Reifenberger <root@nihil.reifenberger.com>
* Improve a comment and undo a bogus s/a/an/ in a comment. An asm guruschweikh2003-02-112-6/+6
| | | | | | should add more comments explaining which registers hold which variables. Spotted by: bde
* Add NOMAN here also.trhodes2003-02-111-0/+1
|
* Update random(6) to have the ability to randomize a file/stdin basedseanc2003-02-115-20/+389
| | | | | | | off of lines or words. See the man page for details. Reviewed by: markm MFC after: 3 days
* Add -DNOMAN to the list.trhodes2003-02-111-0/+1
|
* Catch up the following with the English version:rushani2003-02-112-18/+24
| | | | | | | 1.11 -> 1.12 early-adopter/article.sgml 1.493 -> 1.495 relnotes/common/new.sgml Approved by: hrs (mentor)
* Make a mutex to stop the race coming into geom_disk's done routine.phk2003-02-111-25/+61
| | | | | | | | Cut up requests into smaller bits if they are longer than the drivers disk->d_maxsize or dev->si_iosize_max. Properly handle the race condition when using g_clone_bio() is used without having the single-threadedness of g_down/g_up secure locking.
* Update man page to match the new world order after Sam updated us toimp2003-02-111-73/+42
| | | | NetBSD's 802.11 infrastructure.
* Commit a nearly real man page describing the current state of devctl.imp2003-02-111-1/+71
| | | | | | | | More work likely needs to happen. This describes things better than the old "this man page intentionally left blank" style man page that I'd committed previously. Nitpickers: comb nits and commit!
* Sound devices were being leaked by dsp_open() not actually releasing thegreen2003-02-111-1/+6
| | | | | channels it allocates if chn_reset() on them resulted in failure. ARROW'D!
* MFCs noted: ftpd(8) -h, -P, "/./"; ftpchroot(5).yar2003-02-112-8/+12
|
* Don't divide by zero if there is no stripewidth specified.phk2003-02-111-2/+4
|
* Typo in last commit.phk2003-02-111-2/+2
|
* Force cvsup mirrors to refetch this file.des2003-02-110-0/+0
|
* Better names for struct disk elements: d_maxsize, d_stripeoffsetphk2003-02-119-6/+50
| | | | | | | | | | | and d_stripesisze; Introduce si_stripesize and si_stripeoffset in struct cdev so we can make the visible to clustering code. Add stripesize and stripeoffset to providers. DTRT with stripesize and stripeoffset in various places in GEOM.
* Propagate DISKFLAG_CANDELETE from struct disk to G_PF_CANDELETE on thephk2003-02-111-8/+11
| | | | provider.
* Kill unnecessary vertical whitespace.yar2003-02-111-1/+0
|
OpenPOWER on IntegriCloud