summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* - Use socklen_t.stefanf2005-02-141-2/+1
| | | | - No need for two instances of 'num'.
* Document NGM_ETHER_DETACH functionality.glebius2005-02-141-5/+6
|
* Fix most cases where the address of an int is passed to a function expecting astefanf2005-02-1416-23/+32
| | | | socklen_t * argument.
* Several improvements to ps.1:delphij2005-02-141-10/+22
| | | | | | | | | | | | | | | - Document the fact that empty heading text suppresses the heading line (e.g. 'ps -o pid='), as this is very useful in scripts. - Describe logname keyword more completely. - Describe the printing of arguments more completely. - Put lockname in the correct alphabetical order in the list of all keywords. - Correct sentence in standards section. Submitted by: Jilles Tjoelker <jilles at stack nl> PR: docs/73618 MFC After: 1 week
* Note addition of MCFG support.njl2005-02-141-1/+2
|
* Fix parsing of '0' and non-alphanumerics in steps. Previously, andelphij2005-02-141-1/+3
| | | | | | | | | | entry having stepping value of zero can cause crontab to hang there, and if the main crontab is being changed in this way, then cron(8) will keep spining. Obtained from: OpenBSD [src/usr.sbin/cron/entry.c,v 1.17] PR: 68683 (my own, but forgot to commit it...) MFC After: 1 week
* Make WITNESS happier:glebius2005-02-141-20/+14
| | | | | | | | - refactor ngd_constructor, so that make_dev() is called without any locks held, since it mallocs memory with M_WAITOK flag. - rename global mtx, to have name different to per-node mtx MFC after: 2 weeks
* Add a SUBDIR_TARGETS variable which can be set to a list ofru2005-02-141-1/+2
| | | | | | | | | | | | additional targets that will cause descending into subdirs. Example: cd /sys/modules; make load SUBDIR_TARGETS=load (But don't try it with your pet.) Submitted by: Alexey Klimov PR: 47601
* Use the system gnuregex library vs. building GNU regex bits into libibertyobrien2005-02-145-7/+12
| | | | | | | and using them. Reviewed by: marcel,imp Desired by: ache
* Add new netgraph control message NGM_ETHER_DETACH, which actuallyglebius2005-02-142-0/+11
| | | | | | | | | removes netgraph node and unwraps Ethernet interface. This gives us ability to unload ng_ether.ko, when all interfaces are detached, making ng_ether(4) developers happy. Reviewed by: ru
* Check for non-NULL ac_netgraph field in interface arpcom, instead ofglebius2005-02-141-4/+4
| | | | | | checking global presence of ng_ether(4). Reviewed by: ru
* . Convert return type of gai_strerror() to 'const char *' as POSIX requires.phantom2005-02-142-30/+22
| | | | | . Convert ai_errlist[] to simple 'char *' array, and appropriately optimize gai_strerror()
* EAI_ADDRFAMILY and EAI_NODATA are obsoleted, and not definined anymore,phantom2005-02-141-7/+0
| | | | so do not export these definitions via manual page
* Add support for parsing MCFG tables.scottl2005-02-142-0/+36
|
* If no vlan(4) interfaces are configured for the interface, and theru2005-02-141-3/+10
| | | | | | | | | driver did VLAN decapsulation in hardware, we were passing a frame as if it came for the parent (non-VLAN) interface. Stop this from happening. Reminded by: glebius Security: This could pose a security risk in some setups
* Merge mci.c change to add mci_close() from the vendor branch.gshapiro2005-02-141-0/+51
| | | | Problem noted by: marcus
* o Add handling of an IPv4-mapped IPv6 address.maxim2005-02-145-96/+201
| | | | | | | | | | | | | o Use SYSCTL_IN() macro instead of direct call of copyin(9). Submitted by: ume o Move sysctl_drop() implementation to sys/netinet/tcp_subr.c where most of tcp sysctls live. o There are net.inet[6].tcp[6].getcred sysctls already, no needs in a separate struct tcp_ident_mapping. Suggested by: ume
* Correct the SiS 755 PCI ID. Confirmed against Linux code.anholt2005-02-142-2/+2
| | | | | | PR: kern/76411 Submitted by: Jonathan Fosburgh, jonathan at fosburgh dot org Obtained from: Jung-uk Kim, jkim at niksun.com
* No use for this AMD64 special-case "return NULL;" in probe now that we don'tanholt2005-02-142-4/+0
| | | | do fake "generic" support.
* Remove card_get_function. It looks like it was intended to be aimp2005-02-142-17/+0
| | | | | | | | | bridge between OLDCARD and NEWCARD for drivers to inquire after the function number (eg, 0, 1, 2). Nobody ever used it, so retire it with honors. NEWCARD never implemented it, and the same information can be obtained by the pccard_get_function_number(). MFC After: 3 days
* Rework DL10019/DL10022 support. This tries to reset things in a moreimp2005-02-142-12/+26
| | | | | | | | | | | proper way, or at least the same way that NetBSD and Linux do things (I've been unable to obtain datasheets for these parts to know for sure). This has some marginal improvement in the DL10022 and DL10019 cards that I have. Also, report which type, exactly. # There's one or two ed cards that I have which still don't work, but I think # that's due to MII losage on the card that's not presently compensated # for in the MII drivers.
* MFp4: Merge in AX88790 support from my p4 tree. I've had this in myimp2005-02-142-3/+17
| | | | | | | | | tree since 2003/02/20, and I recently cleaned it up. I'd even closed the PR that I obtained this from Fri Jul 18 23:25:08 MDT 2003 since I looked at my p4 tree. PR: 46889 Submitted by: HASEGAWA Tomoki
* Add some comments in preparation for converting bcopy/bzero to busspace.imp2005-02-141-9/+14
| | | | Minor style nits.
* MFP4: Optimize the layout of softc somewhat. This groups the u_charsimp2005-02-141-4/+4
| | | | | into larger sections. I'd like to move to having a flags word, but I need to make sure that there's no adverse locking problems.
* Add a release note for the sendmail 8.13.3 importgshapiro2005-02-142-0/+6
|
* Add sys/dev/ieee488/ibfoo.c for hte pcii driver. Fixes the broken tinderboxscottl2005-02-141-0/+1
| | | | for the last few days.
* New release notes: I386_CPU removed, sf(4) supports device polling andbmah2005-02-142-4/+72
| | | | | | | | altq(4) (+MFC), ongoing locking work in the network stack, TCP RST bugfix (+MFC), SACK bugfixes (+MFC), RFC 1644 T/TCP support removed, gpt(8) create -f (+MFC), NO_NIS (+MFC), ncal(1) -m (+MFC). These items mostly come from commit logs for November 2004.
* Forced commit to clarify that the previous commit should read:delphij2005-02-140-0/+0
| | | | | Security: This prevents a local DoS that can be exploited by Security: both privileged and unprivileged users.
* This commit was generated by cvs2svn to compensate for changes in r141867,gshapiro2005-02-142-2/+7
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Commit patch from sendmail.org web site for socket close bug:gshapiro2005-02-143-2/+58
| | | | | | | | | | | | http://www.sendmail.org/patches/close_wait.p2 This is being put in the vendor branch as it is in the vendor's repo.
| * Remove files no longer in vendor distribution from vendor branchgshapiro2005-02-144-254/+0
| |
* | Update for sendmail 8.13.3 importgshapiro2005-02-141-4/+4
| |
* | Remove file no longer in 8.13.3gshapiro2005-02-141-1/+1
| |
* | Resolve conflicts from sendmail 8.13.3 importgshapiro2005-02-149-127/+78
| | | | | | | | MFC after: 4 days
* | This commit was generated by cvs2svn to compensate for changes in r141858,gshapiro2005-02-1469-224/+629
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Import sendmail 8.13.3gshapiro2005-02-1477-264/+707
| |
* | Abort any active transfers when the device detaches. This fixes aiedowse2005-02-141-0/+44
| | | | | | | | few situations where we used to crash, but by no means all of them.
* | Add a new function usbd_abort_default_pipe() that aborts any transfersiedowse2005-02-142-0/+7
| | | | | | | | | | on the default pipe. This is helpful in device detach routines to stop any active control transfers.
* | Fix a missing /*-obrien2005-02-141-1/+1
| |
* | Expand contractions.ru2005-02-1355-129/+129
| |
* | Fix a buffer overflow in the "none" decompression handler thatkientzle2005-02-132-68/+76
| | | | | | | | | | | | occurred with large read-ahead requests. This only affected formats that incorrectly make large requests (ZIP did this until recently) or with block sizes over 32k.
* | who's -> whoseru2005-02-133-3/+3
| |
* | Request a CPU private mapping from sf_buf_alloc().alc2005-02-131-1/+5
| |
* | Fix regression in output with -R compared to previous version.obrien2005-02-131-1/+1
| | | | | | | | | | PR: 77466 Submitted by: Andre Guibert de Bruet <andy@siliconlandmark.com>
* | Expand *n't contractions.ru2005-02-13209-392/+392
| |
* | Request a CPU private mapping from sf_buf_alloc(). If the swap-backedalc2005-02-131-1/+6
| | | | | | | | | | | | | | | | | | memory disk is larger than the number of available sf_bufs, this improves performance on SMPs by eliminating interprocessor TLB shootdowns. For example, with 6656 sf_bufs, the default on my test machine, and a 256MB swap-backed memory disk, I see the command "dd if=/dev/md0 of=/dev/null bs=64k" achieve ~489MB/sec with the default, shared mappings, and ~587MB/sec with CPU private mappings.
* | When attached to a high-speed device, report a more appropriateiedowse2005-02-133-3/+18
| | | | | | | | | | | | base transfer speed to CAM. The actual value used (40MB/s) is fairly arbitrary, but assumes the same 33% overhead as was implied by the 1MB/s figure we used for USB1 devices.
* | Line up license text.ru2005-02-133-37/+37
| |
* | mdoc(7) review.ru2005-02-131-62/+48
| | | | | | | | (I thought Nate has committed it long ago, apparently not.)
* | Bump date. Reminded by: runjl2005-02-131-1/+1
| |
OpenPOWER on IntegriCloud