summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Bump library majro version for gethostbyaddr(3).ume2006-05-214-2/+4
|
* Nuke some compatibility crufts of resolver for 6.X and earlier.ume2006-05-213-15/+0
| | | | X-MFC after: never
* Fix gethostbyaddr() prototype to conform to IEEE Std 1003.1 on 64 bitume2006-05-212-32/+22
| | | | | | arch. X-MFC after: never
* Return EAI_OVERFLOW instead of EAI_MEMORY when the supplied buffer isume2006-05-214-7/+11
| | | | | | too short. This conforms to RFC3493, POSIX and XPG6. Obtained from: NetBSD
* Upgrade res_update(3) and the friends to BIND9's one excluding TSIGume2006-05-2115-998/+120
| | | | | | support. X-MFC after: never
* This commit was generated by cvs2svn to compensate for changes in r158782,ume2006-05-214-0/+2201
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Vendor import of BIND 9.3.2ume2006-05-215-57/+2244
| |
| * This commit was manufactured by cvs2svn to create branch 'ISC'.cvs2svn2006-03-301-0/+79
| |
| * Vendor import of BIND 9.3.2ume2006-03-214-317/+1046
| |
| * Oops, remove the file I imported into wrong place.ume2006-03-211-47/+0
| |
* | Don't allow non-root user to set a scheduler policy, otherwise this coulddavidxu2006-05-212-0/+8
| | | | | | | | | | | | be a local DOS. Submitted by: Diane Bruce at db at db.net
* | - Fix path to sysinstall, it hasn't been in /stand for for some time.simon2006-05-202-5/+3
| | | | | | | | | | | | | | - Put list outside <para> to avoid extra horisontal whitespace in output. MFC after: 1 week
* | Remove reference to "System call restart" in intro(2). intro(2) does notrodrigc2006-05-201-3/+4
| | | | | | | | | | have such a reference. Add a reference instead to SA_RESTART in sigaction(2).
* | Remove stale altq instructions. They don't belong to the driver manpagemlaier2006-05-201-43/+1
| | | | | | | | anyhow.
* | o .Xr strtonum(3).maxim2006-05-202-0/+2
| | | | | | | | MFC after: 1 week
* | ALTQ-ify nve(4).mlaier2006-05-202-4/+7
| | | | | | | | | | | | Submitted by: Chris Dionissopoulos Tested by: Chris Dionissopoulos MFC after: 4 weeks
* | o Convert to Test::Harness testing infratructure.maxim2006-05-201-0/+22
| |
* | - Add support for filtering the the list of providers by a regularsimon2006-05-203-41/+159
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | expression, which makes it possible to only see interesting providers. "f" is used inside gstat to set a filter, "F" is used to remove current filter. - Do not print some uninteresting values in the gstat title line. - Do not print past the end of the screen. - Read multiple keystrokes per "wait" when gstat is running. - Remove a redundant != check, right after check of NULL against the same variable ("gid"). - Use sysexits.h. - Do not link against libkvm and libsbuf, they are not actually used. - Fix a few style(9) issues where I had to touch nearby code anyway. Approved by: cperciva (mentor) MFC after: 2 weeks
* | Prevent disappearing SAD entries by implementing MPsafe refcounting.pjd2006-05-201-20/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | "Why didn't he use SECASVAR_LOCK()/SECASVAR_UNLOCK() macros to synchronize access to the secasvar structure's fields?" one may ask. There were two reasons: 1. refcount(9) is faster then mutex(9) synchronization (one atomic operation instead of two). 2. Those macros are not used now at all, so at some point we may decide to remove them entirely. OK'ed by: gnn MFC after: 2 weeks
* | Change kdump to print more useful information, i.e. it changes fromnetchild2006-05-204-16/+847
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 32229 telnet CALL mmap(0,0x8000,0x3,0x1002,0xffffffff,0,0,0) 32229 telnet CALL open(0x2807bc28,0,0x1b6) 32229 telnet CALL socket(0x2,0x2,0) to 32229 telnet CALL mmap(0,0x8000,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_ANON,0xffffffff,0,0,0) 32229 telnet CALL open(0x2807bc28,O_RDONLY,<unused>0x1b6) 32229 telnet CALL socket(PF_INET,SOCK_DGRAM,0) David wanted to implement the suggestions which came up at the review from arch@ too, but real life rejected this proposal. So I commit what we already got and let another volunteer pick the remaining work from the ideas list. Submitted by: "David Kirchner" <dpk@dpk.net> Suggested by: FreeBSD ideas list page Reviewed by: arch
* | In IN6_IS_ADDR_V4MAPPED case instead of returning directly set error andbz2006-05-201-2/+4
| | | | | | | | | | | | goto out so that locks will be dropped. Reviewed by: rwatson, gnn
* | Fix a formatting issue.brueffer2006-05-201-0/+1
| |
* | Make this example more real world usable: When the manpage first appearedbrueffer2006-05-201-1/+1
| | | | | | | | | | | | | | is not interesting, when the driver appeared is. Most people who use this example leave the manpage appearance date in and the driver date out. MFC after: 3 days
* | Convert to use a SYNPOSIS section that mentions kernel modules.brueffer2006-05-2017-40/+232
| | | | | | | | | | | | Also add "device scbus" where needed. MFC after: 3 days
* | o Sort .Xrs, touch .Dd.maxim2006-05-201-4/+4
| |
* | Minimal manpage for the acpi_dock driver. This needs to be fleshed outbrueffer2006-05-202-0/+64
| | | | | | | | by someone in the know about this driver.
* | do_file() is called recursively from several places and cannotdelphij2006-05-201-1/+9
| | | | | | | | | | | | | | | | safely free() anything related to items that may be recursed on. Obtained from: DragonFly (rev 1.7, dillon) PR: bin/94767 MFC After: 1 month
* | Switch value back to values.trhodes2006-05-201-1/+1
| | | | | | | | Requested by: ru
* | Add description how to use caching.ume2006-05-201-7/+42
| | | | | | | | Submitted by: Michael Bushkov <bushman__at__rsu.ru>
* | Belatedly add usr/share/man/man4.sab.4.gz. The sab(4) driver wasmarcel2006-05-201-0/+2
| | | | | | | | removed on 2006-04-24.
* | New release notes: Removed hard-coded limit on IPv4 multicast groupbmah2006-05-192-8/+46
| | | | | | | | | | | | | | | | | | | | memberships, linsysfs(5), cached(8), nsswitch.conf now statically loaded. Modified release notes: Note that XFS support is RO, libarchive(3) extended attributes, don't use entity for usbd(8) removal note. New manpages noted: mca(8), sysctl(9).
* | We don't have d_maj field in cdevsw structure anymore.sobomax2006-05-191-8/+1
| |
* | Correct decoding a string containing '/'.jkim2006-05-191-1/+1
| | | | | | | | | | PR: 97485 Submitted by: Mikko Tyolajarvi < mbsd at pacbell dot net >
* | Move clock_lock prototype into <machine/clock.h>, where it is moresobomax2006-05-194-20/+4
| | | | | | | | | | | | appropriate. Discussed with: jhb
* | We have an implementation of generic_bs_rr_1, so use it, as some drivers usecognet2006-05-192-2/+2
| | | | | | | | | | | | it. Submitted by: kevlo
* | Style fixes.davidxu2006-05-194-68/+102
| | | | | | | | Submitted by: Diane Bruce < db at db dot net >
* | If the PHY has 1000BASE-T capability, check to see if a 1000BASE-T speedyongari2006-05-191-2/+15
| | | | | | | | | | | | was negotiated. Obtained from: NetBSD
* | Remove reference to mount_procfs, which is no longer used by mount(8).rodrigc2006-05-191-1/+7
| | | | | | | | Add an example using "mount -t procfs".
* | Remove reference to mount_linprocfs, which is no longer used by mount(8).rodrigc2006-05-191-1/+8
| | | | | | | | Add an example using "mount -t linprocfs".
* | Comment out SYSCTL_OMIT_DESCR until it's committed.cognet2006-05-191-1/+1
| |
* | Changes to make the NFS client MP safe.mohans2006-05-1911-450/+923
| | | | | | | | Thanks to Kris Kennaway for testing and sending lots of bugs my way.
* | Remove reference to mount_procfs(8), add reference to procfs(5).rodrigc2006-05-191-1/+1
| | | | | | | | | | mount(8) doesn't use mount_procfs(8), and instead passes an fstype of "procfs" directly to nmount().
* | Add in a bunch of things to the mfi driver:ambrisko2006-05-1812-32/+1147
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Linux ioctl support, with the other Linux changes MegaCli will run if you mount linprocfs & linsysfs then set sysctl compat.linux.osrelease=2.6.12 or similar. This works on i386. It should work on amd64 but not well tested yet. StoreLib may or may not work. Remember to kldload mfi_linux. - Add in AEN (Async Event Notification) support so we can get messages from the firmware when something happens. Not all messages are in defined in event detail. Use event_log to try to figure out what happened. - Try to implement something like SIGIO for StoreLib. Since mrmonitor doesn't work right I can't fully test it. StoreLib works best with the rh9 base. In theory mrmonitor isn't needed due to native driver support of AEN :-) Now we can configure and monitor the RAID better. Submitted by: IronPort Systems.
* | - When setting up a packet for transmit, if we the tx ring is over halfjhb2006-05-181-3/+17
| | | | | | | | | | | | | | | | | | | | | | full, kick the binary blob to force it to complete any pending tx completions. - In the watchdog routine, only reset the chip if the blob doesn't complete any pending tx completions rather than requiring it to complete all of the pending tx completions. Submitted by: Nathan Whitehorn <nathanw@uchicago.edu> MFC after: 2 weeks
* | Implement sa11x0_bs_unmap.cognet2006-05-181-3/+15
| | | | | | | | Submitted by: kevlo
* | Make this compile (UART_IPEND_* => SER_INT_*).cognet2006-05-181-2/+2
| |
* | Initialize the new members of struct ip_moptions asbms2006-05-181-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | a defensive programming measure. Note that whilst these members are not used by the ip_output() path, we are passing an instance of struct ip_moptions here which is declared on the stack (which could be considered a bad thing). ip_output() does not consume struct ip_moptions, but in case it does in future, declare an in_multi vector on the stack too to behave more like ip_findmoptions() does.
* | MFCs noted: csup(1) (+ use new manpage entity), dhclient(8)bmah2006-05-182-12/+12
| | | | | | | | sends hostname, find(1) birthtime primitives, pkg_add(1) -F.
* | Correct BD_ADDR entry for "Dummy" device in the default hcsecd.conf.emax2006-05-181-1/+1
| | | | | | | | | | | | | | Each byte in BD_ADDR should exactly two nibbles, i.e "1:2:3:4:5:6" is NOT valid and "01:02:03:04:05:06" is valid BD_ADDR. MFC after: 1 day
* | New release notes: pcvt(4) gone, pc98 bootable CDROM supportbmah2006-05-182-8/+34
| | | | | | | | | | | | | | | | (and bootable CDROM releases), updated NTP manpages. Modified release notes: Munged ipfw(4) release note to remove now-redundant remark about ip6fw going away "in future releases", noted addition of new ext2fs(5) manpage.
OpenPOWER on IntegriCloud