summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Implement linux_truncate64() syscall.rdivacky2008-04-233-2/+18
| | | | | Tested by: Aline de Freitas <aline@riseup.net> Approved by: kib (mentor)
* Fix the year of my doc/www commit bit that I've got :)ganbold2008-04-231-1/+1
| | | | Approved by: keramida(mentor)
* Add 'arm' category.linimon2008-04-232-0/+4
| | | | Approved by: peter
* Correct an off-by-1 for GPART. The literal partition type (i.e.marcel2008-04-231-2/+8
| | | | | | | the actual UUID) is prefixed by '!' to distinguish them from well-known aliases. MFC after: 3 days
* Add four utility functions related to struct grp processing modeled in-partscf2008-04-236-2/+372
| | | | | | | | | | | | | | | | | | | after similar calls related to struct pwd in libutil/pw_util.c: - gr_equal() Perform a deep comparison of two struct grp's. It does a thorough, yet unoptimized comparison of all the members regardless of order. - gr_make() Create a string (see group(5)) from a struct grp. - gr_dup() Duplicate a struct grp. Returns a value that is a single contiguous block of memory. - gr_scan() Create a struct grp from a string (as produced by gr_make()). MFC after: 3 weeks
* Differentiate in the tests against getenv() between an empty string and ascf2008-04-232-12/+15
| | | | | NULL by having the test program return *NULL* for NULL's (no existing variable) instead of an empty string (variable with empty value).
* Now that all platforms use genclock, shuffle things around slightlyphk2008-04-2222-33/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | for better structure. Much of this is related to <sys/clock.h>, which should really have been called <sys/calendar.h>, but unless and until we need the name, the repocopy can wait. In general the kernel does not know about minutes, hours, days, timezones, daylight savings time, leap-years and such. All that is theoretically a matter for userland only. Parts of kernel code does however care: badly designed filesystems store timestamps in local time and RTC chips almost universally track time in a YY-MM-DD HH:MM:SS format, and sometimes in local timezone instead of UTC. For this we have <sys/clock.h> <sys/time.h> on the other hand, deals with time_t, timeval, timespec and so on. These know only seconds and fractions thereof. Move inittodr() and resettodr() prototypes to <sys/time.h>. Retain the names as it is one of the few surviving PDP/VAX references. Move startrtclock() to <machine/clock.h> on relevant platforms, it is a MD call between machdep.c/clock.c. Remove references to it elsewhere. Remove a lot of unnecessary <sys/clock.h> includes. Move the machdep.disable_rtc_set sysctl to subr_rtc.c where it belongs. XXX: should be kern.disable_rtc_set really, it's not MD.
* libbsdxml is now required by ifconfig(8).thompsa2008-04-228-3/+8
| | | | Submitted by: Florian Smeets
* Fix a leak in the recent fixes for file descriptors > SHRT_MAX. In thejhb2008-04-221-0/+1
| | | | | | | | case of a file descriptor we can't handle, clear the FILE structure's flags so it can be reused. MFC after: 1 week Reported by: otto @ OpenBSD
* Add:pgj2008-04-222-0/+4
| | | | | | | - myself to the doc committers' graph - my birthday to the FreeBSD calendar Approved by: gabor (mentor)
* Make it possible to disable sources of entropy harvesting.ru2008-04-221-9/+11
| | | | | Noticed by: Igor Sysoev MFC after: 3 days
* - Use a local variable for i_ino in ufs_lookup. It is only used tojeff2008-04-222-14/+10
| | | | | | | communicate between two parts of this one function. This was causing problems with shared lookups as each would trash the ino value in the inode. - Remove the unused i_ino field from the inode structure.
* Acquire a read lock, rather than a write lock, on a UDPv6 inpcb whenrwatson2008-04-221-9/+9
| | | | | | | delivering to the socket or extracting socket details for monitoring purposes. MFC after: 3 months
* Add FreeBSD IDs to files that originate in FreeBSD.jb2008-04-2223-0/+46
|
* Use native rwlock.davidxu2008-04-221-54/+20
|
* Kill $P4$ id.rpaulo2008-04-211-2/+0
| | | | Noticed by: rwatson
* The vmspace->vm_daddr is constant until freed, there is no needrdivacky2008-04-211-2/+0
| | | | | | to hold lock while accessing it. Approved by: kib (mentor)
* This commit was generated by cvs2svn to compensate for changes in r178388,marius2008-04-211-4/+7
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * * gthr-posix.h (__gthread_active_p): Use the Solaris implementationmarius2008-04-211-4/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | for FreeBSD as well. This is the fix for __gthread_active_p() returning false positives which was committed as rev. 1.1.1.8.2.1 to RELENG_7 but now looped back to the vendor branch via the GCC repository and relicensed to be GPLv2 by me. Thanks go to gerald@ for getting the fix approved upstream and for committing to the GCC repository. PR: 119289 Approved by: core
* | Update instructions to match recent practicesdelphij2008-04-211-3/+5
| |
* | Add vendor metadatadelphij2008-04-211-0/+7
| |
* | Resolve conflicts.delphij2008-04-211-2/+2
| |
* | This commit was generated by cvs2svn to compensate for changes in r178382,delphij2008-04-212-13/+24
|\ \ | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | Import netcat as of today's OPENBSD_4_3 snapshot.delphij2008-04-213-15/+26
| | |
* | | Change the default of ddb_enable to YES so we default to generating textdumpsbrooks2008-04-211-1/+1
| | | | | | | | | | | | | | | | | | | | | on panic. This means you get a potentially useful dump even if your system is running X when you panic. X-MFC after: never
* | | Back-out previous revision. For now I can use _ddb() variants of stack(9) KPI,pjd2008-04-211-6/+3
| | | | | | | | | | | | | | | | | | | | | as I use it for debugging only. Once someone will need it for more production features, the change should be reconsider. Requested by: rwatson
* | | Use ddb(4), not DDB(4) for man page cross-references.rwatson2008-04-212-5/+5
| | | | | | | | | | | | | | | MFC after: 3 days Reported by: novel
* | | In ICMPv6, read lock rather than write lock the inpcb on receive.rwatson2008-04-211-4/+4
| | | | | | | | | | | | MFC after: 3 months
* | | With IPv4 raw sockets, read lock rather than write lock the inpcb whenrwatson2008-04-212-20/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | receiving or transmitting. With IPv6 raw sockets, read lock rather than write lock the inpcb when receiving. Unfortunately, IPv6 source address selection appears to require a write lock on the inpcb for the time being. MFC after: 3 months
* | | Read lock, rather than write lock, the inpcb when transmitting with orrwatson2008-04-211-11/+11
| | | | | | | | | | | | | | | | | | delivering to an IP divert socket. MFC after: 3 months
* | | Add HW level support for the Adaptec 1420SA controller.sos2008-04-213-7/+37
| | |
* | | Unload DMA slot on device timeouts.sos2008-04-211-0/+1
| | |
* | | Do not enable FIS based PM switching, even if not used some controllers barf.sos2008-04-211-2/+2
| | |
* | | Make genclock standard on all platforms.phk2008-04-2125-29/+2
| | | | | | | | | | | | Thanks to: grehan & marcel for platform support on ia64 and ppc.
* | | Remove duplicate headers <sys/socket.h>kevlo2008-04-211-1/+0
| | |
* | | Add a small script that will examine all files which exist on /cfg andphk2008-04-211-0/+42
| | | | | | | | | | | | | | | | | | if they are different in /etc, copy them to /cfg. Submitted by: mat
* | | awi(4) has been removed.brueffer2008-04-212-3/+0
| | |
* | | Switch to using genclock. Have nexus double as clock device formarcel2008-04-213-77/+78
| | | | | | | | | | | | | | | | | | now. While here, add a proper attach() method to nexus. Requested by: phk
* | | On the AT91, we need to write on the EOI register after we handle ancognet2008-04-203-1/+14
| | | | | | | | | | | | | | | | | | | | | | | | interrupt. So, add a new function pointer, arm_post_filter, which defaults to NULL, and which will be used as the post_filter arg for intr_event_create(). Set it properly for the AT91, so that it boots again. Reported by: hps
* | | fix buildsam2008-04-201-1/+1
| | |
* | | This commit was generated by cvs2svn to compensate for changes in r178363,sam2008-04-201-391/+0
| | | | | | | | | | | | which included commits to RCS files with non-trunk default branches.
* | | 802.11 support moves to vapssam2008-04-202-1/+11
| | |
* | | test scripts for vaps and other 802.11 featuressam2008-04-2020-0/+755
| | | | | | | | | | | | Supported by: Hobnob and Marvell
* | | add dwds test appsam2008-04-203-1/+359
| | | | | | | | | | | | | | | Supported by: Hobnob Obtained from: Atheros (earlier version)
* | | update for vapssam2008-04-203-33/+148
| | | | | | | | | | | | Supported by: Hobnob
* | | o update for vapssam2008-04-203-21/+314
| | | | | | | | | | | | | | | | | | o add private wired driver that fixes various bugs in the vendor version Submitted by: thompsa (ndis fixups)
* | | o update for vapssam2008-04-202-112/+160
| | | | | | | | | | | | | | | | | | | | | o add+enable radius acl support Supported by: Hobnob Submitted by: Chris Zimmermann (acl support)
* | | rc support for vapssam2008-04-205-70/+115
| | |
* | | 802.11 regulatory definitions used by ifconfigsam2008-04-202-1/+1581
| | | | | | | | | | | | Support by: Hobnob
* | | Multi-bss (aka vap) support for 802.11 devices.sam2008-04-20155-22417/+29398
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Note this includes changes to all drivers and moves some device firmware loading to use firmware(9) and a separate module (e.g. ral). Also there no longer are separate wlan_scan* modules; this functionality is now bundled into the wlan module. Supported by: Hobnob and Marvell Reviewed by: many Obtained from: Atheros (some bits)
OpenPOWER on IntegriCloud