summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Rename timer0_max_count to i8254_max_count.phk2008-03-2612-253/+258
| | | | | Rename timer0_real_max_count to i8254_real_max_count and make it static. Rename timer_freq to i8254_freq and make it a loader tunable.
* The RTC related pscnt and psdiv variables have no business being public.phk2008-03-267-14/+6
|
* Remove old sysctl stuff which is long gone in other arch's.phk2008-03-261-21/+0
|
* Fix some "in in" typos in comments.brueffer2008-03-2612-12/+12
| | | | | | | PR: 121490 Submitted by: Anatoly Borodin <anatoly.borodin@gmail.com> Approved by: rwatson (mentor), jkoshy MFC after: 3 days
* Document the removal data for usbdevs.h and usbdevs_data.h,remko2008-03-261-2/+3
| | | | | | | | | sort the entry into it's correct place (behind 200407XX before 200406XX because we have an explicit date here). PR: misc/122098 Submitted by: "John Hein" <jhein@timing.com> MFC after: 3 days
* Enable the automatic creation of superpage reservations.alc2008-03-261-2/+2
|
* split out tty create part of ucom_attach into ucom_attach_tty sosam2008-03-252-7/+13
| | | | | | | derived drivers can use it Submitted by: Jared Go MFC after: 3 weeks
* add some CDMA modemssam2008-03-251-0/+9
| | | | | Submitted by: Jared Go MFC after: 1 week
* Implement taskqueue_block() and taskqueue_unblock(). These functions allowscottl2008-03-252-1/+30
| | | | | | | | | | the owner of a queue to block and unblock execution of the tasks in the queue while allowing tasks to continue to be added queue. Combining this with taskqueue_drain() allows a queue to be safely disabled. The unblock function may run (or schedule to run) the queue when it is called, just as calling taskqueue_enqueue() would. Reviewed by: jhb, sam
* fix botched merge of syslog support to the vendor branch; these filessam2008-03-252-2/+13
| | | | were off the branch so we need to pull the changes back up
* Add 64-bit array support for RAIDs > 2TB. This corresponds to ~ Adaptecemaste2008-03-254-5/+17
| | | | | | | | | | driver build 15317. Tested on: Adaptec 2230S, Firmware 4.2-0 (8205) ICP ICP5085BL, Firmware 5.2-0 (12814) Submitted by: Adaptec
* add __noinlinesam2008-03-251-0/+6
| | | | | | Submitted by: imp Reviewed by: kan (long ago) MFC after: 3 weeks
* expose if_purgemaddrs, it will be used by the vap code unless someonesam2008-03-252-2/+2
| | | | | | redesigns the mcast support code in the next few weeks MFC after: 3 weeks
* IFM_IEEE80211_IBSSMASTER hasn't been used in many years; replace itsam2008-03-251-2/+2
| | | | | | with IFM_IEEE80211_WDS which will be used by the forthcoming vap code MFC after: 3 weeks
* enable dynamic addition of "show all" commandssam2008-03-253-2/+15
| | | | MFC after: 3 weeks
* Bring this manpage more in line with other wlan driver manpages.brueffer2008-03-251-10/+15
|
* Regen.jhb2008-03-254-6/+21
|
* Add entries for the cpuset-related system calls. The existing system callsjhb2008-03-251-0/+12
| | | | | | can be used on little endian systems. Pointy hat to: jeff
* Correct data direction flags in aac_bio_command() in theemaste2008-03-251-2/+2
| | | | | | !AAC_FLAGS_RAW_IO && AAC_FLAGS_SG_64BIT case. Submitted by: Adaptec
* Add code that should catch the most common case when date/time isru2008-03-251-0/+4
| | | | set incorrectly.
* s/M_TRYWAIT/M_WAIT/ru2008-03-252-2/+2
|
* Compile libthr with warnings.ru2008-03-251-0/+3
| | | | (Somehow this file sneaked from initial commit.)
* Add a missing ;.remko2008-03-251-1/+1
| | | | | | | PR: misc/122069 Submitted by: taku@tekipaki.jp MFC after: 3 days Approved by: imp (mentor, implicit trivial change).
* Compile libthr with warnings.ru2008-03-254-6/+12
|
* Fix build.ru2008-03-251-2/+2
| | | | Reported by: ache, tinderbox
* Add /boot/device.hints to the list of files which will have localcperciva2008-03-251-1/+1
| | | | | | | | | modifications merged. I had initially expected that people would put any local changes into /boot/loader.conf, but it turns out that editing /boot/device.hints is something many people do. Suggested by: Jaakko Heinonen MFC after: 1 week
* Adjust recognize-shared-libraries regex to avoid matching symlinks tocperciva2008-03-251-14/+14
| | | | | | | | | | | | | | | | | | | shared libraries. This fixes a problem which resulted in 6.x->7.x upgrades having the /usr/lib/libpthread.so -> libthr.so symlink missing; what happened was that the old libpthread.so symlink pointed to /lib/libpthread.so.2 -- which matched the "/lib/*\.so\.[0-9]+" regex -- but the new symlink didn't, so FreeBSD Update got confused and deleted the symlink as part of its "remove old shared libraries" step. To recreate the symlink (which I understand is necessary for ports like KDE to build) on a 7.x system which FreeBSD Update upgraded from 6.x: # ln -s libthr.so /usr/lib/libpthread.so Reported by: Dmitry RCL Rekman Help diagnosing bug from: kris MFC after: 7 days
* Fixed mis-implementation of pthread_mutex_get{spin,yield}loops_np().ru2008-03-251-4/+7
| | | | Reviewed by: davidxu
* Replaced the misleading uses of a historical artefact M_TRYWAIT with M_WAIT.ru2008-03-2536-264/+125
| | | | | | | | | | Removed dead code that assumed that M_TRYWAIT can return NULL; it's not true since the advent of MBUMA. Reviewed by: arch There are ongoing disputes as to whether we want to switch to directly using UMA flags M_WAITOK/M_NOWAIT for mbuf(9) allocation.
* Regen after changing prototypes of cpuset_{get,set}affinity().ru2008-03-256-14/+14
|
* Fixed type of the fourth argument of cpuset_{get,set}affinity(2) to be size_t.ru2008-03-254-18/+17
| | | | Prodded by: davidxu
* Check for a NULL free buffer pointer in BPF before invokingrwatson2008-03-251-1/+1
| | | | | | | | bpf_canfreebuf() in order to avoid potentially calling a non-inlinable but trivial function in zero-copy buffer mode for every packet received when we couldn't free the buffer anyway. MFC after: 4 months
* Add support for Marvell Libertas 88W8335 based PCI network adapters.weongyo2008-03-258-0/+4829
| | | | | Reviewed by: sam, many wireless people Approved by: thompsa (mentor)
* Fix double patch on this file.edwin2008-03-251-2/+0
|
* MFV of tzdata2008aedwin2008-03-255-38/+227
| | | | | | | | | | | | Changes: - Calcutta -> Kolkata - Iraq DST changes - Syria DST changes - Saigon -> Ho_Chi_Minh - Cuba DST changes - New area America/Argentina/San_Luis Approved by: grog@ (mentor)
* Spell "blackhole" correctly and fix one grammar nit.ru2008-03-241-4/+4
|
* Rewrite node to support multiple hooks, alike to ng_l2tp, to use one pairmav2008-03-242-241/+284
| | | | | | | | | | | | | | of pptpgre and ksocket nodes for all calls between two peers. This patch modifies node's API by adding new "session_%04x" hook names support, while keeping backward compatibility. Together with appropriate user-level support (by latest mpd5) it gives huge performance benefits for case of multiple active calls between two peers because of avoiding data duplication and extra socket processing. On my benchmarks I have got more then 10 times speedup for the 200 simultaneous PPTP calls between two peers. In conclusion, it allows now to build effective "clients <=> PAC <=> PNS" setups.
* Belatedly add BPF_JITTER in NOTES for supported architectures.jkim2008-03-243-0/+12
|
* Fix build with option BPF_JITTER.jkim2008-03-242-1/+3
|
* Remove redundant inclusions of net/bpfdesc.h.jkim2008-03-242-2/+0
|
* This commit was generated by cvs2svn to compensate for changes in r177580,sam2008-03-244-5/+47
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * add support for driver-based RADIUS ACL's (committed on vendor branch as it'ssam2008-03-244-5/+47
| | | | | | | | | | | | been sent upstream) Submitted by: Chris Zimmermann
* | resolve merge conflictssam2008-03-243-158/+18
| | | | | | | | MFC after: 3 weeks
* | This commit was generated by cvs2svn to compensate for changes in r177576,sam2008-03-2427-294/+472
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Import of hostapd 0.5.10sam2008-03-2429-323/+490
| |
* | change inp_wlock_assert to inp_lock_assertkmacy2008-03-243-22/+26
| |
* | enable syslog support and add -s option to the man pagesam2008-03-242-2/+7
| | | | | | | | MFC after: 3 weeks
* | This commit was generated by cvs2svn to compensate for changes in r177572,sam2008-03-244-0/+59
|\ \ | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | add syslog support (committed on vendor branch as it's been sent upstream)sam2008-03-246-2/+72
| | | | | | | | | | | | PR: bin/116190
* | | update for 0.5.10sam2008-03-242-4/+8
| | |
OpenPOWER on IntegriCloud