summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Sort NECINFORTIA correctly.imp2009-03-271-1/+1
|
* Add bromax axnet based cards to the mix. This was harvested from the linuximp2009-03-271-0/+3
| | | | | | | | | | | | | | | driver. Not sure who sold it/rebadged it. Add stub entries for Mitsubishi B8895 and Toshiba LANCT00A to the driver with a comment that they don't work /* NG */.[*] These are DP83902A based cards, which should work, but don't seem to. Likely they are from the days before the ne2000 roamed the earth and use a non-standard hookup (see if_ed_isa or if_ed_cbus for some examples). Unless I happen to stumble into the right one, these may never work, but I'm tired of omitting them from commits. [*] The Japanese adopted OK from English, but also use NG for its opposite.
* Don't strip TTY device name to the last '/'.ed2009-03-271-2/+2
| | | | | | | | | | | | | We've seen this bug in other applications before: we have some applications that use strrchr(tty, '/') on the TTY device name. This isn't valid when using pts(4), because the device name will be stripped to "0" instead of "pts/0". This fixes issues with login(1) ignoring /etc/ttys and missing utmp records. Reported by: Barney Cordoba <barney_cordoba yahoo com> Reviewed by: rwatson
* Harvest a previously unknown Bromax design based on the AX88x90 fromimp2009-03-271-0/+1
| | | | the Linux axnet driver.
* Revert 190445 change to this file restoring:ambrisko2009-03-271-3/+3
| | | | | | | | | | typedef l_long l_off_t; Change l_mmap_argv's to l_ulong for pgoff. This restores prior behaviour to consumers of l_off_t but allows mmap to mmap a 32bit position which a Linux application requires to access SMBIOS data via /dev/mem. Reviewed by: dchagin Prompted by: rdivacky
* The buffer start and end phys addresses should be 0x0 for an OHCI zero lengththompsa2009-03-271-2/+5
| | | | | | packet, this fixes LS/FS devices on the Gateworks 2348 XScale board. Reviewed by: HPS
* Correct typo.kib2009-03-271-2/+2
| | | | Noted by: kensmith
* Whitespace/spelling fixes in advance of upcoming functional changes.jamie2009-03-273-19/+19
| | | | Approved by: bz (mentor)
* Document missing requests.dds2009-03-271-2/+18
|
* Sharpen the saw:marcel2009-03-271-3/+2
| | | | | o BSD uses 32-bit block numbers. Limit the scheme to 2^32-1 blocks when the media is larger.
* Put the "%d retries" debug message in the transmit path behind WPI_DEBUG_TXjmallett2009-03-271-1/+1
| | | | | | | rather than behind a seemingly accidental constant likely left over from one of the related drivers which uses log levels rather than per-facility debugging flags. This should get rid of contextless messages on the console for people who have not set (or cleared the default) debugging flags.
* Sharpen the saw:marcel2009-03-271-2/+10
| | | | | | | o Don't create an APM scheme underneath another scheme when the probe doesn't allow it. o APM uses 32-bit block numbers. Limit the scheme to 2^32-1 blocks when the media is larger.
* Skip the allocation of the root hold token if the mount already happened.thompsa2009-03-271-0/+5
|
* MFi386: r190447nyan2009-03-271-200/+200
| | | | Convert gdt_segs and ldt_segs initialization to C99 style.
* o) Check that no overrun or CRC errors were encountered in receiving ajmallett2009-03-272-4/+15
| | | | | | | | | | | | | packet. Linux, OpenBSD and our iwn(4) all do this. It also results in a huge performance improvement (and the rejection of a fair number of apparently-bad packets on receive) on my hardware. o) Like the wpi(4) driver in OpenBSD, and like our iwn(4), also drop runt packets. o) Don't bother doing IFQ_POLL and then IFQ_DRV_DEQUEUE, just do IFQ_DRV_DEQUEUE outright. This is more similar to how OpenBSD and our iwn(4) work. Reviewed by: sam
* add superg+tdma include files for protocol defs needed to do ie parsingsam2009-03-261-7/+3
|
* o move tdma+superg protocol defs out of public viewsam2009-03-265-93/+106
| | | | | o add #ifdef _KERNEL to superg+tdma include files so they can be used by user code to get the protocol defs
* Move the code to update cpu_cx_count out of acpi_cpu_generic_cx_probe() andjhb2009-03-261-4/+2
| | | | | | | | | | | into acpi_cpu_startup() which is where all the other code to update this global variable lives. This fixes a bug where cpu_cx_count was not updated correctly if acpi_cpu_generic_cx_probe() returned early. PR: kern/108581 Debugged by: Bruce Cran Reviewed by: avg, njl, sepotvin MFC after: 3 days
* Sigh, not my day. Check-in the update version that didn't haveambrisko2009-03-262-2/+2
| | | | the linux_compat mistakes.
* Add in forgotten module ipmi_linux.ambrisko2009-03-261-0/+8
| | | | Found by: mlaier
* Fix enough bits so that fast frames work again:sam2009-03-264-15/+59
| | | | | | o include ath ie in beacon frames o fix probe response check for including ath ie o add ieee80211_add_athcap shorthand for ap-side ie additions
* dynamic turbo mode is only implemented in sta mode; don't enable itsam2009-03-261-1/+3
| | | | for other operating modes based on the capability
* need to adjust htinfo offset when csa is insertedsam2009-03-261-0/+1
|
* adjust tdma ie offset when beacon frame contents changessam2009-03-261-0/+6
|
* Convert gdt_segs and ldt_segs initialization to C99 style.kib2009-03-262-273/+272
| | | | Reviewed by: jhb
* Allow the attach routine to fail gracefully and not panic the system.imp2009-03-261-1/+2
|
* Add stuff to support upcoming BMC/IPMI flashing of newer Dell machineambrisko2009-03-268-1/+200
| | | | | | | | | | | | | | | | | | | | via the Linux tool. - Add Linux shim to ipmi(4) - Create a partitions file to linprocfs to make Linux fdisk see disks. This file is dynamic so we can see disks come and go. - Convert msdosfs to vfat in mtab since Linux uses that for msdosfs. - In the Linux mount path convert vfat passed in to msdosfs so Linux mount works on FreeBSD. Note that tasting works so that if da0 is a msdos file system /compat/linux/bin/mount /dev/da0 /mnt works. - fix a 64it bug for l_off_t. Grabing sh, mount, fdisk, df from Linux, creating a symlink of mtab to /compat/linux/etc/mtab and then some careful unpacking of the Linux bmc update tool and hacking makes it work on newer Dell boxes. Note, probably if you can't figure out how to do this, then you probably shouldn't be doing it :-)
* Change the priority from high to normal. This makes sure thatmarcel2009-03-261-1/+1
| | | | the BSD or GPT schemes can take precedence as appropriate.
* there is no dev_mkdb anymoreluigi2009-03-261-1/+0
|
* bump date.weongyo2009-03-262-2/+2
| | | | Pointed by: yongari
* adds malo(4).weongyo2009-03-261-0/+1
|
* bwi(4) and mwl(4) doesn't exist at CURRENT.weongyo2009-03-261-2/+0
|
* The malo(4) device driver first appeared in FreeBSD 7.1 not 8.0.weongyo2009-03-261-1/+1
| | | | | Reported by: John <lists_at_reiteration.net> MFC after: 3 days
* Fix up waiting on vblank again... This reverts a last minute change thatrnoland2009-03-261-5/+8
| | | | | | I made on the last patch, it seems to upset suspend/resume and shutdown. MFC after: 3 days
* Tweak comments.imp2009-03-251-15/+16
|
* Add RIOS PCCARD 3.imp2009-03-251-0/+1
|
* RIOS Systems co was naughty and used a 'random' id. Use it with theimp2009-03-251-0/+4
| | | | PCCARD3 name to describe the RIOS PC Card III Ethernet that I have.
* Add recently added cards.imp2009-03-251-4/+4
|
* It appears that the TDK LAK CD011 works with fe driver. I don't haveimp2009-03-251-0/+1
| | | | | a dongle for the card, but it passes the sanity testsin the probe/attach routines and returns the correct MAC address.
* Fix a few nits in the earlier changes to prevent local information leakagejhb2009-03-252-6/+9
| | | | | | | | | | | | | | in AMD FPUs: - Do not clear the affected state in the case that the FPU registers for the thread that already owns the FPU are changed via fpu_setregs(). The only local information the thread would see is its own state in that case. - Fix a type mismatch for the dummy variable used in a "fld". It accepts a float, not a double. Reviewed by: bde Approved by: so (cperciva) MFC after: 1 month
* update; mostly to eliminate ambiguity about what hardware is supportedsam2009-03-252-27/+11
|
* Man page accompanying r190423 - introduce UFS ID labels.ivoras2009-03-251-2/+8
| | | | | Actually-by: pjd Approved by: gnn (mentor)
* Create GEOM labels from UFS IDs, e.g. /dev/ufsid/49c97b1faa2adc43. UFS IDsivoras2009-03-253-12/+50
| | | | | | | | are always present and can be used to identify file systems (useful if hardware devices move often). Actually-by: pjd Approved by: gnn (mentor)
* - Add proper error checking and printing to the CVSMode code when reading andlulf2009-03-254-74/+145
| | | | | | | writing from/to streams, as leaving them out stops csup from cleaning up on SIGINT and friends properly. MFC after: 1 week
* This config file uses dynamically linked binaries, which is moreluigi2009-03-253-91/+99
| | | | | | | | | | | convenient when you want to import other programs because the libraries will not be replicated. Given that there are no floppies around anymore, I have bumped the fd size to 4MB (which is more than reasonable even for embedded platforms) and gives some room for other utilities. MFC after: 3 days
* devfs is the standard nowluigi2009-03-251-1/+0
|
* Move dtnfsclient.c in the cddl tree to nfs_kdtrace.c in the nfsclientrwatson2009-03-252-2/+2
| | | | | | | | directory, since it's under a BSD license, and this keeps NFS internals- aware tracing parts close to NFS. MFC after: 1 month Suggested by: jhb
* When looking up the parent devclass of a new devclass, create the parentjhb2009-03-251-1/+1
| | | | devclass if it doesn't already exist.
* Add support for SCTP to getaddrinfo(3).ume2009-03-251-7/+20
| | | | | | | | | | | | | Now, getaddrinfo(3) returns two SOCK_STREAMs, IPPROTO_TCP and IPPROTO_SCTP. It confuses some programs. If getaddrinfo(3) returns IPPROTO_SCTP when SOCK_STREAM is specified by hints.ai_socktype, at least Apache doesn't work. So, I made getaddrinfo(3) to return IPPROTO_SCTP with SOCK_STREAM only when IPPROTO_SCTP is specified explicitly by hints.ai_protocol. PR: bin/128167 Submitted by: Bruce Cran <bruce__at__cran.org.uk> (partly) MFC after: 2 week
* Rename (fpu|npx)_cleanstate to (fpu|npx)_initialstate to better reflectjhb2009-03-252-23/+24
| | | | | | | their purpose. Inspired by: bde MFC after: 1 month
OpenPOWER on IntegriCloud