summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | LINT fixeskmacy2008-05-052-4/+4
| | | | |
* | | | | add iw_cxgb to the buildkmacy2008-05-052-1/+15
| | | | |
* | | | | add makefiles for rdmakmacy2008-05-056-0/+61
| | | | |
* | | | | add rcv_nxt, snd_nxt, and toe offload id to FreeBSD-specifickmacy2008-05-052-2/+12
| | | | | | | | | | | | | | | | | | | | extension fields for tcp_info
* | | | | add malloc flag to blist so that it can be used in ithread contextkmacy2008-05-053-12/+14
| | | | | | | | | | | | | | | | | | | | Reviewed by: alc, bsdimp
* | | | | conditionally define PANIC_IFkmacy2008-05-051-0/+2
| | | | |
* | | | | Revert back to accessing FILE internals directly.jhb2008-05-051-11/+19
| | | | | | | | | | | | | | | | | | | | (Sorry, forgot to commit this earlier.)
* | | | | Fix a few edge cases with error handling in cpufreq(4)'s CPUFREQ_GET()jhb2008-05-051-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | method: - If the last of the child cpufreq drivers returns an error while trying to fetch its list of supported frequencies but an earlier driver found the requested frequency, don't return an error to the caller. - If all of the child cpufreq drivers fail and the attempt to match the frequency based on 'cpu_est_clockrate()' fails, return ENXIO rather than returning success and returning a frequency of CPUFREQ_VAL_UNKNOWN. MFC after: 3 days PR: kern/121433 Reported by: Eugene Grosbein eugen ! kuzbass dot ru
* | | | | import support for iwarp on Chelsio T3 cardkmacy2008-05-0517-0/+9155
| | | | | | | | | | | | | | | | | | | | Supported by Chelsio Inc.
* | | | | Use a better approach to force the interrupt which should work forbz2008-05-052-6/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | all cards/modes. In addition to the intr forcing added with rev. 1.205 adopt the other places to use the same logic. We need to exclude a few chips/revisions (5700, 5788) from using the enhanced version and fall back to the old way as that is the only method they support. Tested by: phk Suggested by: davidch, Broadcom (thanks a lot for the help!) MFC after: 16 days
* | | | | Import basic common and iwarp kernel RDMA infrastructure.kmacy2008-05-0532-0/+15395
| | | | | | | | | | | | | | | | | | | | Supported by: Chelsio Inc.
* | | | | Retire the __fgetcookie(), __fgetpendout(), and __fsetfileno() accessorsjhb2008-05-054-36/+0
| | | | | | | | | | | | | | | | | | | | as we aren't hiding FILE's internals anymore.
* | | | | Go back to fondling FILE internals.jhb2008-05-051-1/+1
| | | | |
* | | | | Note that FILE's __cookie is also part of the public ABI.jhb2008-05-051-1/+1
| | | | |
* | | | | Expose FILE's internals to the world again in all their glory. Restorejhb2008-05-0511-144/+195
| | | | | | | | | | | | | | | | | | | | | | | | | all the previous inline optimizations as well. FILE is back to using __mbstate_t, struct pthread *, and struct pthread_mutex *.
* | | | | o Convert whitespaces to tabs.maxim2008-05-051-2/+2
| | | | |
* | | | | o Terminate "case" with "esac" not "fi".maxim2008-05-051-1/+1
| | | | | | | | | | | | | | | | | | | | Reported by: Randy Bush
* | | | | Do not read away the target directory entry when encountering deletedkib2008-05-053-8/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | files after a seekdir(). The seekdir shall set the position for the next readdir operation. When the _readdir_unlocked() encounters deleted entry, dd_loc is already advanced. Continuing the loop leads to premature read of the target entry. Submitted by: Marc Balmer <mbalmer at openbsd org> Obtained from: OpenBSD MFC after: 2 weeks
* | | | | Spell KDB_REQ_REBOOT correctly.peter2008-05-051-1/+1
| | | | |
* | | | | Fix improper use of checkyesno routine.mtm2008-05-051-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | | Noticed by: oliver MFC after: 1 week
* | | | | o Change the warning dialog for the 'W' command in both the labelmtm2008-05-052-14/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | and partition editors to reflect the fact that this is a stand-alone application, not sysinstall(8). o Change an instance of sade(8) refering to itself as sysinstall(8) in a confirmation dialog. MFC after: 1 week
* | | | | Mips ttys file. Copied from i386 version with removal of the vgaimp2008-05-051-0/+808
| | | | | | | | | | | | | | | | | | | | entries.
* | | | | MFSVN:kmacy2008-05-059-69/+99
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - add / remove clients from cxgb_main.c now - change ifdef TOE_ENABLED to TCP_OFFLOAD_DISABLE - update copyrights - fix transmit data mismatch bug caused by not setting SB_NOCOALESCE on tx sockbuf on passive connections - fix receive sequence mismatch bug caused by not setting SB_NOCOALESCE on rx sockbuf on passive connections - don't sleep without checking SBS_CANTRCVMORE first - various ddp ordering fixes Supported by: Chelsio Inc.
* | | | | Expand kdb_alt_break a little, most commonly used with the optionpeter2008-05-049-37/+175
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ALT_BREAK_TO_DEBUGGER. In addition to "Enter ~ ctrl-B" (to enter the debugger), there is now "Enter ~ ctrl-P" (force panic) and "Enter ~ ctrl-R" (request clean reboot, ala ctrl-alt-del on syscons). We've used variations of this at work. The force panic sequence is best used with KDB_UNATTENDED for when you just want it to dump and get on with it. The reboot request is a safer way of getting into single user than a power cycle. eg: you've hosed the ability to log in (pam, rtld, etc). It gives init the reboot signal, which causes an orderly reboot. I've taken my best guess at what the !x86 and non-sio code changes should be. This also makes sio release its spinlock before calling KDB/DDB.
* | | | | Add MIPS support to libdiskgonzo2008-05-043-1/+52
| | | | | | | | | | | | | | | | | | | | Approved by: cognet (mentor)
* | | | | Restore SUBDIR+= accidentally removed in the previous revision.marius2008-05-041-4/+4
| | | | | | | | | | | | | | | | | | | | Pointed out by: ariff
* | | | | Don't build unused SBus front-ends for sun4v, don't build EBus front-endsmarius2008-05-048-23/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | which are also likely to be irrelevant for sun4v (there's no SBus on sun4v and only some EBus devices). While at it fix some style bugs according to style.Makefile(5) where appropriate. MFC after: 3 days
* | | | | sync_vnode() has some messy code about locking in order to deal withattilio2008-05-041-39/+37
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | mount fs needing Giant to be held when processing bufobjs. Use a different subqueue for pending workitems on filesystems requiring Giant. This simplifies the code notably and also reduces the number of Giant acquisitions (and the whole processing cost). Suggested by: jeff Reviewed by: kib Tested by: pho
* | | | | Lower WARNS to avoid warning about type-punned casting.marcel2008-05-041-1/+1
| | | | |
* | | | | Add __fgetcookie(), __fgetpendout() and __fsetfileno() to the privatemarcel2008-05-042-0/+9
| | | | | | | | | | | | | | | | | | | | name space.
* | | | | Unbreak build: gnu sort has been configured to grope inside structmarcel2008-05-033-1/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | __sFILE. It's opaque now, so add a function that returns the pending output bytes. Pointy hat: jhb
* | | | | - Backout 1.15, it was committed by accidentpav2008-05-031-0/+5
| | | | | | | | | | | | | | | | | | | | Pointy hat to: pav
* | | | | - Restore functionality broken in previous commit; we need to be able to reportpav2008-05-035-32/+37
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | multiple installed packages with the same PKGORIGIN. Reported by: marcus MFC after: 1 month
* | | | | o unbreak handling of TKIP tx-only keys for splitmic chipssam2008-05-031-9/+13
| | | | | | | | | | | | | | | | | | | | | | | | | o yank compat support for hal's older than 0.9.20.3; leave a CTASSERT in place just in case
* | | | | add back sysctl's to display the regdomain and country code from eeprom;sam2008-05-032-6/+13
| | | | | | | | | | | | | | | | | | | | useful for debugging
* | | | | Add MIPS to the list of "no TLS" architectures.gonzo2008-05-031-1/+1
| | | | | | | | | | | | | | | | | | | | Approved by: cognet (mentor)
* | | | | Symbol.map is handled by cpp, so use C-style commentsgonzo2008-05-031-1/+3
| | | | | | | | | | | | | | | | | | | | Approved by: cognet (mentor)
* | | | | Add FLT_EVAL_METHOD and DECIMAL_DIG, required by C99 standard.gonzo2008-05-031-0/+6
| | | | | | | | | | | | | | | | | | | | Approved by: cognet (mentor)
* | | | | Unbreak build: libftpio gropes inside struct __sFILE. Implementmarcel2008-05-033-19/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | accessor functions for its benefit now thaat FILE is opaque. I'm sure there's a better way. I leave that for people to work on in a src tree that isn't broken. Pointy hat: jhb
* | | | | A couple of cameras that I recently boughtimp2008-05-031-0/+2
| | | | |
* | | | | These files are unused, so remove them for now. If they turn out toimp2008-05-032-358/+0
| | | | | | | | | | | | | | | | | | | | be needed later, they can be restored.
* | | | | Fix a comment.jasone2008-05-031-1/+1
| | | | |
* | | | | enable IEEE80211_AMDPU_AGE by defaultsam2008-05-031-0/+1
| | | | |
* | | | | enable IEEE80211_DEBUG and IEEE80211_AMPDU_AGE by defaultsam2008-05-035-0/+10
| | | | |
* | | | | Bring C runtime bits for FreeBSD/mips from p4 mips2-jnpr branch.gonzo2008-05-034-0/+191
| | | | | | | | | | | | | | | | | | | | Approved by: cognet (mentor)
* | | | | Replace a couple mentions of the soon to be removed vaps_<ifn>brooks2008-05-032-2/+2
| | | | | | | | | | | | | | | | | | | | variable form with wlans_<ifn>.
* | | | | sade(8) does not need FTP I/O.delphij2008-05-031-2/+2
| | | | |
* | | | | Relinquish exclusive TTY access when tip(1) or cu(1) exit.bms2008-05-034-0/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously they would have left TIOCEXCL enabled, requiring either a reboot or use of tip/cu as the root user. Observed when running QEMU with character devices redirected to pty instances. MFC after: 2 weeks
* | | | | Fix build, together with a bit of style breakage.marck2008-05-021-1/+1
| | | | |
* | | | | This file is unused, so remove it for now.imp2008-05-021-111/+0
| | | | |
OpenPOWER on IntegriCloud