summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* This commit was generated by cvs2svn to compensate for changes in r110611,Alexander Kabaev2003-02-1080-489/+1712
|\ | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches. Notes: svn path=/head/; revision=110612
| * Gcc 3.2.2-release.Alexander Kabaev2003-02-1098-712/+2106
| | | | | | | | Notes: svn path=/vendor/gcc/dist/; revision=110611
* | Remove mtx_lock_giant from functions which are mp-safe.Jake Burkholder2003-02-101-9/+0
| | | | | | | | Notes: svn path=/head/; revision=110610
* | Make this work without COMPAT_43 by using tcgetattr()/tcsetattr() insteadTim J. Robbins2003-02-101-10/+10
| | | | | | | | | | | | | | of ioctl TIOCGETP/TIOCSETP. Notes: svn path=/head/; revision=110609
* | Major cleanup & homogenization.Dag-Erling Smørgrav2003-02-1014-131/+150
| | | | | | | | Notes: svn path=/head/; revision=110608
* | No idea what this is for, and it doesn't make much sense. If a port needsDag-Erling Smørgrav2003-02-101-8/+0
| | | | | | | | | | | | | | it, it can install its own copy in /usr/local/etc/pam.d/. Notes: svn path=/head/; revision=110607
* | There's no reason to have two identical policies for FTP servers, soDag-Erling Smørgrav2003-02-102-26/+5
| | | | | | | | | | | | | | make ftp a symlink to ftpd. Notes: svn path=/head/; revision=110606
* | Add restrict keyword to string functions.Jeffrey Hsu2003-02-104-13/+6
| | | | | | | | | | | | | | Reviewed by: bde Notes: svn path=/head/; revision=110605
* | Implement a new dynamic command allocator. FIBs are allocated in 1 pageScott Long2003-02-103-56/+96
| | | | | | | | | | | | | | | | | | | | | | blocks now, which should eliminate problems with the driver failing to attach due to insufficient contiguous RAM. Allow the FIB pool to grow from the default of 128 to the max of 512 as demand grows. Also pad the adapter init struct to work around the 2120/2200 DMA bug now that there is no longer a FIB slab. Notes: svn path=/head/; revision=110604
* | Leak more stuff into libgeom.Poul-Henning Kamp2003-02-105-6/+582
| | | | | | | | Notes: svn path=/head/; revision=110603
* | - Correct another atomic op.Jeff Roberson2003-02-091-1/+2
| | | | | | | | | | | | | | Spotted by: alc Notes: svn path=/head/; revision=110602
* | Clean up exit path from rl_attach() to remove multiple returnsNate Lawson2003-02-091-3/+3
| | | | | | | | Notes: svn path=/head/; revision=110601
* | Explicitly release a existing lease before we start dhclient (again).Martin Blapp2003-02-091-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | If we already have a lease and restart sysinstall (or something with the net configuration goes wrong), we would have to reboot just because there is a dhclient hanging around. Reviewed by: murray (re) MFC after: 5 days Notes: svn path=/head/; revision=110600
* | Quirk for Lexar Media JumpdriveNate Lawson2003-02-091-0/+8
| | | | | | | | | | | | | | | | | | PR: kern/47006 Tested by: George Hartzell <hartzell@kestrel.alerce.com> MFC after: 1 week Notes: svn path=/head/; revision=110599
* | Complete rewrite of pam_ssh(8). The previous version was becoming hardDag-Erling Smørgrav2003-02-094-557/+307
| | | | | | | | | | | | | | | | | | | | | | | | | | | | to maintain, and had security issues which would have required a major rewrite to address anyway. This implementation currently starts a separate agent for each session instead of connecting each new session to the agent started by the first one. While this would be a Good Thing (and the old pam_ssh(8) tried to do it), it's hard to get right. I'll revisit this issue when I've had a chance to test some modifications to ssh-agent(1). Notes: svn path=/head/; revision=110598
* | Add a comment describing how pagedaemon_wakeup() should be used andAlan Cox2003-02-091-0/+6
| | | | | | | | | | | | | | | | | | synchronized. Suggested by: tegge Notes: svn path=/head/; revision=110597
* | Set the expected permissions of /dev to 0555 since this is what devfsJoerg Wunsch2003-02-091-1/+1
| | | | | | | | | | | | | | | | is using anyway. Otherwise, "make installworld" insists on resetting them to 0755. Notes: svn path=/head/; revision=110596
* | Revisit the shell special characters issue and settle it once-and-forall.Mike Makonnen2003-02-091-13/+19
| | | | | | | | | | | | | | | | | | | | | | All characters will be accepted, and pw(8) can sort out which ones it will allow and which ones it won't. Approved by: markm (mentor) Prodded by: Philippe Bourcier <philippe@cyberabuse.org> Notes: svn path=/head/; revision=110595
* | Increase atrq.ndesc for if_fwe.Hidetoshi Shimokawa2003-02-091-2/+2
| | | | | | | | Notes: svn path=/head/; revision=110593
* | Update the statistics collection code to track busy time instead ofPoul-Henning Kamp2003-02-094-47/+125
| | | | | | | | | | | | | | | | | | | | | | | | | | idle time. Statistics now default to "on" and can be turned off with sysctl kern.geom.collectstats=0 Performance impact of statistics collection is on the order of 800 nsec per consumer/provider set on a 700MHz Athlon. Notes: svn path=/head/; revision=110592
* | Do not define OPENSSL_NO_KRB5 here in CFLAGS. It is handled inJacques Vidrine2003-02-091-1/+1
| | | | | | | | | | | | | | | | | | opensslconf.h. Reminded by: reports from des, obrien Notes: svn path=/head/; revision=110590
* | Correct assorted typos and grammos. No content changes.Jens Schweikhardt2003-02-091-8/+8
| | | | | | | | Notes: svn path=/head/; revision=110589
* | - Claim we're 'fsync' and not 'spec_fsync' in vop_stdfsync.Jeff Roberson2003-02-091-1/+1
| | | | | | | | Notes: svn path=/head/; revision=110588
* | - Use the new vop_stdfsync instead of recreating our own.Jeff Roberson2003-02-092-98/+6
| | | | | | | | Notes: svn path=/head/; revision=110587
* | - Move some code out from #ifdef INVARIANTS.Jeff Roberson2003-02-091-2/+0
| | | | | | | | Notes: svn path=/head/; revision=110586
* | - Update a printf format for b_flags.Jeff Roberson2003-02-091-1/+1
| | | | | | | | Notes: svn path=/head/; revision=110585
* | - Cleanup unlocked accesses to buf flags by introducing a new b_vflag memberJeff Roberson2003-02-098-171/+125
| | | | | | | | | | | | | | | | | | | | | | | | | | that is protected by the vnode lock. - Move B_SCANNED into b_vflags and call it BV_SCANNED. - Create a vop_stdfsync() modeled after spec's sync. - Replace spec_fsync, msdos_fsync, and hpfs_fsync with the stdfsync and some fs specific processing. This gives all of these filesystems proper behavior wrt MNT_WAIT/NOWAIT and the use of the B_SCANNED flag. - Annotate the locking in buf.h Notes: svn path=/head/; revision=110584
* | - spell add 'add' and not 'subtract' in an atomic op.Jeff Roberson2003-02-091-1/+1
| | | | | | | | | | | | | | | | Spotted by: alc Pointy hat to: jeff Notes: svn path=/head/; revision=110583
* | Add new ioctl to specify target EUI64 for fwmem.Hidetoshi Shimokawa2003-02-095-12/+33
| | | | | | | | Notes: svn path=/head/; revision=110582
* | - Lock down the buffer cache's infrastructure code. This includes locks onJeff Roberson2003-02-091-61/+154
| | | | | | | | | | | | | | | | | | | | buf lists, synchronization variables, and atomic ops for the counters. This change does not remove giant from any code although some pushdown may be possible. - In vfs_bio_awrite() don't access buf fields without the buf lock. Notes: svn path=/head/; revision=110581
* | Fix spelling errors in commentsJulian Elischer2003-02-091-3/+3
| | | | | | | | | | | | | | Submitted by: Davidxu@ Notes: svn path=/head/; revision=110580
* | Remove unnecessary check for OCB_ACT_CMD.Hidetoshi Shimokawa2003-02-091-5/+1
| | | | | | | | Notes: svn path=/head/; revision=110579
* | Improve device listing.Hidetoshi Shimokawa2003-02-092-4/+6
| | | | | | | | Notes: svn path=/head/; revision=110578
* | - Detect split transcation timeout.Hidetoshi Shimokawa2003-02-094-65/+139
| | | | | | | | | | | | | | | | | | | | | | * implement watchdog timer. * check all standing transactions in firewire_xfer_timeout(). - Add firewire_xferq_drain() for fw_busreset(). - Add/improve some debug messages. - Call fw_xfer_done() if retry handler is NULL. Notes: svn path=/head/; revision=110577
* | Allow multiple aliases files to be rebuiltGregory Neil Shapiro2003-02-081-3/+5
| | | | | | | | | | | | | | | | | | PR: bin/40540 Submitted by: Cyrille Lefevre <cyrille.lefevre@laposte.net> MFC after: 3 days Notes: svn path=/head/; revision=110576
* | Give more information to users replacing sendmail regarding periodic'sGregory Neil Shapiro2003-02-082-0/+13
| | | | | | | | | | | | | | | | | | submit mail queue check. PR: docs/38924 Notes: svn path=/head/; revision=110574
* | Fix an oversight in some code I added to the last commit.Matthew N. Dodd2003-02-081-1/+1
| | | | | | | | Notes: svn path=/head/; revision=110572
* | Correct the man page for nfs_bufpackets. DEFAULT is not an acceptableGregory Neil Shapiro2003-02-081-3/+1
| | | | | | | | | | | | | | | | | | | | value. PR: conf/31280 MFC after: 3 days Notes: svn path=/head/; revision=110571
* | /etc/rc.network isn't built to handle a value of "DEFAULT" (nor should itGregory Neil Shapiro2003-02-081-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | be). Using that string leads rc.network to execute: # sysctl -w vfs.nfs.bufpackets=DEFAULT vfs.nfs.bufpackets: 4 -> 0 Which isn't what was intended. PR: conf/31280 MFC after: 3 days Notes: svn path=/head/; revision=110570
* | Add more tests. Specifically, infinity cast from other types shouldMike Barcroft2003-02-081-0/+6
| | | | | | | | | | | | | | always be classified as infinity. Notes: svn path=/head/; revision=110569
* | Document a few acronyms.Matthew N. Dodd2003-02-081-0/+3
| | | | | | | | Notes: svn path=/head/; revision=110568
* | - Remove duplicate call to callout_handle_init() in pcn_attach().Matthew N. Dodd2003-02-081-2/+5
| | | | | | | | | | | | | | | | | | | | - Conditionalize mtx_destroy() in pcn_attach(). - Assert driver lock in pcn_intr(). Submitted by: Hiten Pandya <hiten@unixdaemons.com> Notes: svn path=/head/; revision=110567
* | Implement fpclassify():Mike Barcroft2003-02-0829-3/+552
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | o Add a MD header private to libc called _fpmath.h; this header contains bitfield layouts of MD floating-point types. o Add a MI header private to libc called fpmath.h; this header contains bitfield layouts of MI floating-point types. o Add private libc variables to lib/libc/$arch/gen/infinity.c for storing NaN values. o Add __double_t and __float_t to <machine/_types.h>, and provide double_t and float_t typedefs in <math.h>. o Add some C99 manifest constants (FP_ILOGB0, FP_ILOGBNAN, HUGE_VALF, HUGE_VALL, INFINITY, NAN, and return values for fpclassify()) to <math.h> and others (FLT_EVAL_METHOD, DECIMAL_DIG) to <float.h> via <machine/float.h>. o Add C99 macro fpclassify() which calls __fpclassify{d,f,l}() based on the size of its argument. __fpclassifyl() is never called on alpha because (sizeof(long double) == sizeof(double)), which is good since __fpclassifyl() can't deal with such a small `long double'. This was developed by David Schultz and myself with input from bde and fenner. PR: 23103 Submitted by: David Schultz <dschultz@uclink.Berkeley.EDU> (significant portions) Reviewed by: bde, fenner (earlier versions) Notes: svn path=/head/; revision=110566
* | Update for sendmail 8.12.7 importGregory Neil Shapiro2003-02-081-4/+4
| | | | | | | | Notes: svn path=/head/; revision=110565
* | Notify IPv6 users of important change in sendmail 8.12.7Gregory Neil Shapiro2003-02-081-1/+8
| | | | | | | | Notes: svn path=/head/; revision=110564
* | Resolve conflicts from sendmail 8.12.7 importGregory Neil Shapiro2003-02-089-54/+128
| | | | | | | | Notes: svn path=/head/; revision=110563
* | This commit was generated by cvs2svn to compensate for changes in r110560,Gregory Neil Shapiro2003-02-0865-814/+1590
|\ \ | | | | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches. Notes: svn path=/head/; revision=110561
| * | Import sendmail 8.12.7vendor/sendmail/8.12.7Gregory Neil Shapiro2003-02-0874-864/+1749
| | | | | | | | | | | | | | | Notes: svn path=/vendor/sendmail/dist/; revision=110560 svn path=/vendor/sendmail/8.12.7/; revision=110562; tag=vendor/sendmail/8.12.7
* | | This commit was generated by cvs2svn to compensate for changes in r110558,Dag-Erling Smørgrav2003-02-081-3/+10
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches. Notes: svn path=/head/; revision=110559
| * | | MFP4: return the actual value of the requested variable (#24840)Dag-Erling Smørgrav2003-02-081-3/+10
| | | | | | | | | | | | | | | | Notes: svn path=/vendor/openpam/dist/; revision=110558