summaryrefslogtreecommitdiffstats
path: root/sys
Commit message (Collapse)AuthorAgeFilesLines
* Yet another warning fix for 64 bits platforms.mux2002-06-241-2/+3
| | | | Reviewed by: phk
* Include <sys/types.h> in the !_KERNEL case so that this file isbde2002-06-241-0/+3
| | | | | self-sufficient in that case (it needs dev_t). This is normal pollution for most headers that define ioctl numbers.
* Fixed some style bugs (mainly excessive indentation).bde2002-06-241-24/+24
| | | | Not completely unapproved by: julian
* MFi386: sys/i386/isa/clock.c revision 1.187.kato2002-06-243-6/+6
|
* On REASREQ packets, handled them earlier in processing the associationimp2002-06-241-7/+11
| | | | | | | | | | request. We need to eat the MAC address of the packet before we go looking at the SSID and such. Doing do is sufficient to make Cisco cards assocaite with prism II cards. The submitter says that Linux does the same thing. Submitted by: jhay
* Use proper size in bzero of stat structure.mckusick2002-06-243-3/+3
| | | | | Submitted by: Jake Burkholder <jake@locore.ca> Sponsored by: DARPA & NAI Labs.
* userout -> out. These two labels are now identical.mini2002-06-242-14/+12
| | | | Approved by: alfred
* Remove unused diagnostic function cread_free_thread().mini2002-06-2411-64/+0
| | | | Approved by: alfred
* - Remove DMA_* macros as only one, DMA_GET_ADDR, was used.arr2002-06-2412-103/+15
| | | | | - Convert DMA_GET_ADDR() calls to vtophys() calls in order to finish removing the DMA_* macros.
* Add kernel printf bits for WI_SUPPRATES and HOSTAP_FLAGSimp2002-06-242-0/+2
|
* Add RID to get the DBM adjustment factorimp2002-06-241-0/+1
|
* Add kernel print bits #define for the IEEE80211_CAPINFO bits.imp2002-06-241-1/+1
|
* - Remove the definition for SCHED_ATMarr2002-06-243-5/+2
| | | | - Change SCHED_ATM statements into schednetisr() calls.
* Partially back out the "make all interfaces standard" commit. There'simp2002-06-241-8/+8
| | | | | | | a small chance that it might have broken loading the miibus, so err on the side of caution until I can figure out what is going on. This backs out all but the PCI, PCIB and ISA bus interfaces being "standard," which have been well tested...
* I Noticed a defect in the way wakeup() scans the tailq. Tor noticed andillon2002-06-241-3/+8
| | | | | | | even worse defect in wakeup_one(). This patch cleans up both. Submitted by: tegge MFC after: 3 days
* Make vm_pindex_t 64-bit on all platforms. This is necessary to avoidiedowse2002-06-233-3/+3
| | | | | | overflows with the large file sizes that UFS2 permits. Reviewed by: dillon, alc, tegge
* Add a missing prototype to fix a warning.mux2002-06-231-0/+2
|
* Slightly restructure the #ifdef INET6 sections to make the codeluigi2002-06-231-31/+19
| | | | | | | more readable. Remove the six "register" attributes from variables tcp_output(), the compiler surely knows well how to allocate them.
* Move two global variables to automatic variables within theluigi2002-06-232-4/+6
| | | | only function where they are used (they are used with TCPDEBUG only).
* Move some global variables in more appropriate places.luigi2002-06-231-3/+28
| | | | | | | Add XXX comments to mark places which need to be taken care of if we want to remove this part of the kernel from Giant. Add a comment on a potential performance problem with ip_forward()
* Split the declaration and the initialization of two variables.mux2002-06-231-4/+4
| | | | | | | This has the fortunate side effect of stopping GCC from reporting warnings about unused variables on sparc64. Reviewed by: bde
* set siocnunit to the correct value. This fixes the freeze on boot forn_hibma2002-06-231-2/+4
| | | | | | alphas. Submitted by: Bernd Walter <ticso@cicely5.cicely.de>
* More 64 bits platforms warning fixes.mux2002-06-232-7/+7
| | | | Reviewed by: rwatson
* Warning fixes for 64 bits platforms. This eliminates all themux2002-06-235-23/+23
| | | | | | warnings I have had in the FFS code on sparc64. Reviewed by: mckusick
* o Remove GIANT_REQUIRED from kmem_alloc_pageable(), kmem_alloc_nofault(),alc2002-06-231-7/+8
| | | | | and kmem_free(). (Annotate as MPSAFE.) o Remove incorrect casts from kmem_alloc_pageable() and kmem_alloc_nofault().
* This commit was generated by cvs2svn to compensate for changes in r98679,des2002-06-231-0/+675
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import OpenBSD's <sys/tree.h>, needed by OpenSSH.des2002-06-231-0/+675
| | | | | | | | Obtained from: OpenBSD
| * Import NetBSD if_de driver as at rev 1.86 (990809) to vendor branch.peter1999-08-082-16/+103
| |
| * Update if_de driver from NetBSD as at rev 1.82 - import to vendor branch.peter1999-03-141-17/+19
| |
| * Import the if_de driver from NetBSD-current as of yesterday onto thepeter1998-10-122-55/+89
| | | | | | | | | | | | | | vendor branch. This isn't visible anywhere unless the changes are merged into the 3.0 mainline or the 2.2 branch. There are a number of important bugfixes here, but I'm waiting on a go/no-go from Jordan as to whether or not to risk it before 3.0.
| * Import NetBSD-current version of if_de driver onto vendor branch.peter1998-07-081-1/+8
| |
| * Import current version of Matt Thomas' if_de driver. It has new registerpeter1998-06-133-23/+46
| | | | | | | | | | | | | | settings for the connector selection, so it looks like it should fix the aui/bnc problems. (I don't have a card with aui/bnc to test) Obtained from: Matt Thomas via NetBSD
| * Import de driver from netbsd as of a short while ago. Most of thepeter1998-03-083-40/+480
| | | | | | | | | | changes are irrelevant (to us), but there is a change that looks like it might affect the detection of older cards with BNC ports.
| * Import de-971020 from Matt's www.3am-software.com pages.peter1997-11-082-5/+11
| |
* | Include machine/critical.h to get missing prototypes.mux2002-06-231-0/+1
| | | | | | | | Reviewed by: tmm
* | Remove some extra spaces hidden between tabsluigi2002-06-231-15/+15
| | | | | | | | Spotted-by: diff against the version in RELENG_4
* | fix indentation, whitespace and a few comments.luigi2002-06-232-34/+31
| |
* | fix bad indentation and whitespace resulting from cut&pasteluigi2002-06-232-26/+25
| |
* | fix indentation of a commentluigi2002-06-231-1/+1
| |
* | fix a typo in a commentluigi2002-06-231-1/+1
| |
* | Remove ip_fw_fwd_addr (forgotten in previous commit)luigi2002-06-231-7/+5
| | | | | | | | remove some extra whitespace.
* | plxcard for OLDCARD isn't going to happen.imp2002-06-232-451/+0
| |
* | plxcard for OLDCARD almost certainly isn't going to happen.imp2002-06-231-1/+0
| |
* | As disclosed to arch@, make more interfaces standard. This allows forimp2002-06-231-12/+12
| | | | | | | | | | | | | | | | easier loading of modules that might refer to these interfaces. None of the code that implements them is standard, just the glue. This bloats the kernel a whopping 8k. Silence on: arch@
* | Rename the BALLOC flags from B_* to BA_* to avoid confusion with thedillon2002-06-237-48/+48
| | | | | | | | | | | | struct buf B_ flags. Approved by: mckusick
* | What:imp2002-06-235-74/+154
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | o ToPIC is happy with two cards now, even when the two cards are modems. o Fix (all?) hangs on boot when power is applied to the card. I suspect that this will make the Ricoh bridges happier and also make a lot of VAIO owners happy (confirm to me in private email please :-). o All Cardbus bridges should now support 3.3V, X.XV and Y.YV cards, to the extent that the underlying hardware supports such cards. (X.X and Y.Y haven't been assigned values yet :-). o Better 3.3V support for Ricoh ISA bridges. How: o Don't mess with the power register when scanning the cards. It is unnecessary and causes BADVcc conditions on many chipsets. These in turn can cause an interrupt storm. o Make pcic_disable reset the slot's voltage. o Move initializing voltage for the slot until after it has been disabled. o Fix a lot of issues with the pcic_cardbus_power routine. We now properly enable the card and take it out of reset after a power change. o When detecting the card's voltage, if we're in a BadVcc state, direct the bridge to rescan the card for what it supports. (we might need to in the future set the power register to 0 before doing this). o Don't preserve CLKSTOP. need to revisit this. o Better support for Ricoh ISA bridges for 3.3V cards. o Don't write to PCIC_POWER directly as offten, but instead go through the pcic_power interface. o All cardbus bridges now default to use cardbus power control. o Add misc register definitions. o remove some (now) bogus comments. Extra Special Thanks To: Scott Lamber for his kind and generous loan of a Toshiba laptop with a ToPIC 100 in it for my use.
* | o Remove the unnecessary acquisition and release of Giant around fdrop()alc2002-06-231-2/+3
| | | | | | | | in mmap(2).
* | KTR_CT* had one too many trailing zeroes, making KTR_CT5-8 too large forjake2002-06-231-8/+8
| | | | | | | | ktr_mask.
* | Fix a bug related to marking pages virtually uncacheable due to illegaljake2002-06-221-4/+4
| | | | | | | | | | | | | | dcache aliasing. A page that already had more than 1 mapping of the same virtual colour would not be correctly uncached. Noticed by: Artur Grabowski <art@openbsd.org>
* | Add additional cpuid feature flags and put into a canonical format.mp2002-06-222-36/+66
| | | | | | | | MFC after: 1 week
OpenPOWER on IntegriCloud