summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Respect QLogic's errata- read BIU_ISR even on the 2300mjacob2001-10-061-0/+2
| | | | | | | | | to see if there's an interrupt (avoids PCI parity errors which can occur on the 2312 if you access some registers from the host at the same time the RISC on the 2312 is C accessing them). MFC after: 1 day
* Document -depthobrien2001-10-061-0/+13
|
* - Moved the bus_dma declarations from bus_{at386,pc98}.h into bus_dma.h.nyan2001-10-069-3830/+11
| | | | | (bus_dma.h is repo-copied from bus_at386.h) - Added '#include <machine/bus_dma.h>' into bus.h for backward compatibility.
* Move console probes until after we set boothowto so that 'boot -h' works.dfr2001-10-061-7/+7
|
* Make this work on ia64. I have no idea why it works on alpha - itdfr2001-10-061-1/+7
| | | | shouldn't.
* Assume round-to-nearest mode for floating point.dfr2001-10-061-5/+1
|
* Enable console. There are far too many 'ifdef __i386__' in this file.dfr2001-10-061-7/+7
|
* Add /etc files for ia64.dfr2001-10-063-0/+540
|
* Put the label at the same place as i386 for compatibility.dfr2001-10-063-0/+15
|
* Add an entry with my birthday.keramida2001-10-061-0/+1
| | | | Approved by: nik
* Updates for changes made by KSE import.sheldonh2001-10-066-40/+36
| | | | Submitted by: Chad David <davidc@acns.ab.ca>
* Update with latest ATA/ATAPI ver 6 rev 2 items.sos2001-10-068-365/+403
|
* Delete legacy pcib code - we can't possibly work without acpi on ia64.dfr2001-10-061-570/+0
|
* Remove nexus_pcib.c.dfr2001-10-061-1/+0
|
* o Change ia64_memory_address to explicitly take a u_int64_tmarcel2001-10-061-2/+50
| | | | | | o Add memcpy_fromio, memcpy_io, memcpy_toio, memset_io, memsetw and memsetw_io. I'm not sure this is the right place for it, though.
* Make this compile on ia64.marcel2001-10-061-1/+4
|
* Implement these using mux1 and extr.u. I'll update the userland versionsdfr2001-10-062-14/+7
| | | | similarly. Actually, they should be inline on gcc.
* New release notes: eaccess(2), vfs.vmiodirenable=1.bmah2001-10-062-8/+24
| | | | | MFCs noted: wall(1) -g, route(8) indirect routes, route(8) net/bits syntax, route(8) proxy only published ARP entries.
* - Fix typo in "didn't find tag in list" code -- != should have been ==.fenner2001-10-061-4/+5
| | | | | | | | | | | This fixes the panic when receiving a packet with an unknown tag, and also allows reception of packets with known tags. - Allow overlapping tag number spaces when using multiple hardware-assisted VLAN parent devices (by comparing the parent interface in vlan_input_tag() just as in vlan_input() ). - fix typo in comment MFC after: 1 week
* Fix some 64-bit uncleanliness.peter2001-10-061-7/+20
|
* Fix some style bugs before fixing some real bugs.peter2001-10-061-7/+17
|
* Fix a stack trashing bug when int != sizeof(pointer)peter2001-10-062-2/+6
| | | | This fixes the ia64 boot! We have scsi disks!
* Fix a warning. (unused p if not INVARIANTS)peter2001-10-062-4/+2
|
* Add ia64/ia64/sapic.cpeter2001-10-061-0/+1
|
* Update list of supported ata(4) controllers (from ata.4 manpage).bmah2001-10-052-4/+4
|
* New release note: MAXMEM/hw.physmem.bmah2001-10-052-4/+12
| | | | Use entity for agp(4) driver.
* Add an abstract for this document, flesh out the introduction abmah2001-10-052-54/+78
| | | | | | | | bit, and fix up the upgrading section. While I'm here, delete some of the SGML comments that were left-over from merging the source files. MFC after: 1 day
* Add a flag TF_LASTIDLE, that forces a previously idle connectionjayanth2001-10-052-1/+9
| | | | | | | | | | | to send all its data, especially when the data is less than one MSS. This fixes an issue where the stack was delaying the sending of data, eventhough there was enough window to send all the data and the sending of data was emptying the socket buffer. Problem found by Yoshihiro Tsuchiya (tsuchiya@flab.fujitsu.co.jp) Submitted by: Jayanth Vijayaraghavan
* Don't core dump if we can't get the index automatically.imp2001-10-051-1/+2
| | | | Debug info from: Ben Hockenhull <benh@jpj.net>
* vinvalbuf() was only waiting for write-I/O to complete. It really has todillon2001-10-051-4/+15
| | | | | | | | wait for both read AND write I/O to complete. Only NFS calls vinvalbuf() on an active vnode (when the server indicates that the file is stale), so this bug fix only effects NFS clients. MFC after: 3 days
* Add ia64 to the list of machines which don't do unaligned reads.dfr2001-10-052-2/+2
|
* Add BOOTP support.dfr2001-10-051-0/+4
|
* Fix some dependency violations (don't know why gas didn't catch this).dfr2001-10-052-4/+16
|
* Use physical addresses, not virtual addresses when calling PHYS_TO_VM_PAGE.dfr2001-10-051-1/+2
|
* Eliminate some alpha craziness.dfr2001-10-051-4/+2
|
* In in_cksumdata, len must be a signed type.dfr2001-10-052-2/+2
|
* Fix a load of dependancy violations.dfr2001-10-052-7/+7
|
* The aio kthreads start off with a root credential just like all otherjhb2001-10-051-7/+0
| | | | | kthreads, so don't malloc a ucred just so we can create a duplicate of the one we already have.
* Low-level code for programming the I/O SAPIC.dfr2001-10-051-0/+151
|
* Re-route interrupts on ia64 so that we can get the I/O SAPIC interruptdfr2001-10-051-1/+12
| | | | | numbers (the BIOS leaves legacy PIC interrupt numbers in the intline registers).
* Wire up most of the interrupt handling infrastructure. Not sure it worksdfr2001-10-056-40/+342
| | | | | right yet but its enough for the ATA probe to work. The SCSI probes which follow are broken though.
* Fix typo which meant that we never actually found the ACPI 2.0 table.dfr2001-10-051-1/+1
|
* Quote the value of pccard_ether_delay, the only unquoted value in thesheldonh2001-10-051-1/+1
| | | | entire file.
* Add some important advice for young optical physicists.kris2001-10-051-0/+2
|
* Disable interrupts when we are in DDB.dfr2001-10-051-3/+3
|
* Add ia64_get_lid().dfr2001-10-051-3/+14
|
* Move the agp(4) page from the i386 directoryyar2001-10-053-5/+6
| | | | | to the machine-independent directory since AGP is used on other architectures as well.
* Show kernel config syntax, not kldload commandyar2001-10-051-1/+1
| | | | | | in the SYNOPSIS section. Reviewed by: ru
* Activate the bridge/dummynet modules.ps2001-10-051-0/+2
| | | | Reminded by: ru
* Only allow users to see their own socket connections ifps2001-10-058-9/+62
| | | | | | | | | kern.ipc.showallsockets is set to 0. Submitted by: billf (with modifications by me) Inspired by: Dave McKay (aka pm aka Packet Magnet) Reviewed by: peter MFC after: 2 weeks
OpenPOWER on IntegriCloud