summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add the Adaptec 2400A as an ATA RAID controller. Remove reference to thescottl2001-05-093-3/+12
| | | | non-existant Adaptec 1400 controller.
* Fix a typo (pasto?).dd2001-05-091-1/+1
|
* Fix some of the handling in the pam module, don't unregister thingsalfred2001-05-091-14/+50
| | | | | | | that were never registered. At the same time handle a failure from pam_setcreds with a bit more paranioa than the previous fix. Sync a bit with the "Portable OpenSSH" work to make comparisons a easier.
* Unbreak world, IN_SHLOCK/IN_EXLOCK haven't existed in a while andalfred2001-05-092-18/+0
| | | | Kirk finally has ditched them. While I'm here also ditch FSHLOCK.
* rcsid style fix.obrien2001-05-091-6/+5
|
* A WIP snuck in the rev 1.34 commit.obrien2001-05-091-8/+3
|
* Eliminate some panics for errors we can recover from.dmlb2001-05-092-164/+121
| | | | | | | | | | | Reduce the verbose memory map setup reports and work with pccardd to set the common memory map up. Use enumeration values for CARD_SET_RES_FLAGS. Use DELAY when spinning waiting for the card to come free instead of a loop. MFC: after 1 week
* Use enumeration values for CARD_SET_RES_FLAGS.dmlb2001-05-081-4/+13
| | | | | | | Remove panic on out of range io window and return ENXIO. Add a similar check for memory windows. Approved by: imp
* Use enumeration types for CARD_SET_RES_FLAGS.dmlb2001-05-081-1/+2
| | | | Approved by: imp
* Add additional enumeration types for CARD_SET_RES_FLAGS.dmlb2001-05-081-1/+5
| | | | | Approved by: imp MFC: after 1 week
* Add a sysctl pair for the pcic memory allocation rangedmlb2001-05-081-3/+16
| | | | | | | | | | | | | machdep.pccard.pcic_mem_start machdep.pccard.pcic_mem_end and default the range to IOM_BEGIN/IOM_END. This may prove useful to if_ray users (and others) on more modern hardware that maps BIOS stuff into 0xd000-0xdffff. MFC: after 1 week Approved by: imp
* Since PAM is broken, let pam_setcred() failure be non-fatal.green2001-05-081-1/+1
|
* remove a reference to a nonexisting script, "clean", whenluigi2001-05-081-2/+1
| | | | | | building all images. Also, build "bridge" image as well. Reported-by: Bruce Montague
* MFS: use absolute, not relative path for tinywareluigi2001-05-081-1/+1
|
* Here comes the forgotten C source, oopsy.schweikh2001-05-081-0/+108
| | | | | | | | | Turned the shell script into a binary fixing several minor buglets. Mention _POSIX_SOURCE feature test macro in man page. PR: bin/19337 Submitted by: schweikh Reviewed by: joerg, bde MFC after: 2 weeks
* Turned the shell script into a binary fixing several minor buglets.schweikh2001-05-083-77/+9
| | | | | | | | Mention _POSIX_SOURCE feature test macro in man page. PR: bin/19337 Submitted by: myself way back when I was a nobody :-) (schweikh) Reviewed by: joerg, bde MFC after: 2 weeks
* Cleanups, more consistent use of <screen> etc.wilko2001-05-082-778/+886
|
*-. This commit was generated by cvs2svn to compensate for changes in r76371,assar2001-05-0855-341/+280
|\ \ | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| | * mdoc(ng) fixesassar2001-05-0822-145/+128
| | | | | | | | | | | | Submitted by: ru
| * | mdoc(ng) fixesassar2001-05-0836-214/+160
| | | | | | | | | | | | Submitted by: ru
* | | - Eliminate locks in functions called only during probe and attach.tanimura2001-05-081-10/+15
| | | | | | | | | | | | | | | | | | - Finish transmitting data to mpu when a buffer gets empty. Submitted by: KUROSAWA Takahiro <fwkg7679@mb.infoweb.ne.jp>
* | | gethostbyname2() can't do AF_INET6 lookups over NIS.alex2001-05-081-0/+7
| | | | | | | | | | | | | | | | | | getaddrinfo(3) must be used. Submitted by: ume
* | | When opening the file to broadcast, do it with the user's gid, not thekris2001-05-081-2/+8
| | | | | | | | | | | | | | | | | | | | | | | | egid (tty). Obtained from: OpenBSD Submitted by: Maxime Henrion <mux@qualys.com> Reviewed by: imp
* | | Polish error handling with biofinish().phk2001-05-082-28/+30
| | |
* | | Polish error handling code using biofinish()phk2001-05-081-6/+1
| | |
* | | Remove an 'optimization' I hope to never see again.alfred2001-05-081-89/+111
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The pipe code could not handle running out of kva, it would panic if that happened. Instead return ENFILE to the application which is an acceptable error return from pipe(2). There was some slightly tricky things that needed to be worked on, namely that the pipe code can 'realloc' the size of the buffer if it detects that the pipe could use a bit more room. However if it failed the reallocation it could not cope and would panic. Fix this by attempting to grow the pipe while holding onto our old resources. If all goes well free the old resources and use the new ones, otherwise continue to use the smaller buffer already allocated. While I'm here add a few blank lines for style(9) and remove 'register'.
* | | Be a little clearer all characters after a # are ignored unless thebrian2001-05-081-4/+10
| | | | | | | | | | | | | | | | | | | | | # is escaped or quoted. Add an example of # characters as part of a phone number. PR: 26605
* | | Exploit recent improvements in the disk minilayer to simplify errorphk2001-05-085-75/+39
| | | | | | | | | | | | | | | | | | | | | | | | handling a bit. Dogmatic lingupurists can celebrate that a number of gotos got removed. Reviewed by: mjacob, ken
* | | Always initialize bio_resid from bio_bcount in the disk mini-layer sophk2001-05-081-1/+1
| | | | | | | | | | | | that the drivers don't have to do it umpteen times.
* | | mdoc(7) police: fix markup, rename and reorder some sections.ru2001-05-082-78/+104
| | |
* | | Remove all the mutex stuff - suggested by jhbbrian2001-05-084-49/+12
| | | | | | | | | | | | | | | | | | Tidy up includes, credit Slawa Olhovchenkov, John Prince and Eric Hernes for their efforts and add a couple of missing parenthesis around return expressions.
* | | When running with soft updates, track the number of blocks and filesmckusick2001-05-0811-19/+125
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | that are committed to being freed and reflect these blocks in the counts returned by statfs (and thus also by the `df' command). This change allows programs such as those that do news expiration to know when to stop if they are trying to create a certain percentage of free space. Note that this change does not solve the much harder problem of making this to-be-freed space available to applications that want it (thus on a nearly full filesystem, you may still encounter out-of-space conditions even though the free space will show up eventually). Hopefully this harder problem will be the subject of a future enhancement.
* | | Several fixes for units errors:mckusick2001-05-081-10/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1) Do not assume that the superblock will be of size fs->fs_bsize. This fixes a panic when taking a snapshot on a filesystem with a block size bigger than 8K. 2) Properly calculate the number of fragments that follow the superblock summary information. This fixes a bug with inconsistent snapshots. 3) When cleaning up a snapshot that is about to be removed, properly calculate the number of blocks that need to be checked. This fixes a bug that created partially allocated inodes. 4) When moving blocks from a snapshot that is about to be removed to another snapshot, properly account for the reduced number of blocks in the snapshot from which they are taken. This fixes a bug in which the number of blocks released from a snapshot did not match the number that it claimed to have.
* | | mdoc(7) police: sort xrefs.ru2001-05-081-2/+2
| | |
* | | When syncing out snapshot metadata, we must temporarily allow recursivemckusick2001-05-081-27/+29
| | | | | | | | | | | | | | | buffer locking so as to avoid locking against ourselves if we need to write filesystem metadata.
* | | GC some dead code relating to running df on unmounted block devices,kris2001-05-082-37/+1
| | | | | | | | | | | | | | | | | | | | | | | | and remove the setgid operator bit from the installed binary: if you want to view free disk space on an unmounted device, you should have read permissions to access it. Reviewed by: phk
* | | Just notify us once when encountering a partially allocated inode.mckusick2001-05-081-1/+1
| | |
* | | Sync up with OpenBSD. Too many changes to note, but the major featureskris2001-05-0821-209/+1562
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | are: * Implement cpio compatibility mode when pax is invoked as cpio * Extend tar compatibility mode to cover many of the GNU tar single-letter options (bzip2 mode, aka -y/-j is not present in OpenBSD). When invoked as tar, pax is now full-featured enough for use by the ports collection to extract distfiles and create packages. * Many bug fixes to the operation of pax and the tar compatibility modes * Code fixes for things like correct string buffer termination. I tried to preserve existing FreeBSD fixes to this utility; please let me know if I have inadvertently spammed something.
* | | Ricoh RL5C46x cardbus bridges have the bits for 3E0 and 3E2. Theimp2001-05-082-8/+0
| | | | | | | | | | | | | | | | | | RL5C47x cards do not. Only set them for that set of bridges. Submitted by: shiba (Takeshi Shibagaki-san)
* | | Add some additional register definitions for some work I have in progress.imp2001-05-082-0/+4
| | |
* | | sys/mutex.h requires sys/lock.h for LINTbrian2001-05-071-0/+1
| | | | | | | | | | | | Re-spotted by: phk
* | | Correct prototype (entry_p -> *entry_p)jedgar2001-05-071-1/+1
| | | | | | | | | | | | Submitted by: Alex Zepeda <jazepeda@pacbell.net>
* | | Set the slot pointer in the pc98 case. Correct the name of the bridgeimp2001-05-071-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | chip to the one that the Japanese use. Now we get insert/remove events on my PC-9821Ne. More work in bus space is needed to make drivers work. MFC after: 3 days
* | | Fix typos.horikawa2001-05-073-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | o replace `of possible' with `if possible' o VOP_SETACL(9) is modified to say about `ACL' instead of `extended attributed' o EOPNOTSUPP of VOP_SETEXTATTR(9) is modified to say about VOP_SETEXTATTR(9) instead of VOP_GETEXTATTR(9) Reviewed by: Robert Watson <rwatson@FreeBSD.org>, Chris Costello <chris@calldei.com>
* | | Use constants in <pccard/cis.h> for scannign the memory window with.dmlb2001-05-071-4/+4
| | | | | | | | | | | | Approved by: imp
* | | Ensure that pccardd sets up memory windows correctly for drivers otherdmlb2001-05-071-8/+36
| | | | | | | | | | | | | | | | | | | | | than if_ed. The code for if_ed to set the offset and memory width remains. Approved by: imp
* | | Fix a minor printing bug that prints incorrect information for memorydmlb2001-05-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | block sizes. This orginally worked in PAO-3 and worked on their r330 branch but got broken in PAO-3 around December 1998! Approved by: imp Obtained from: PAO-3
* | | Minor updates:msmith2001-05-075-30/+47
| | | | | | | | | | | | | | | | | | | | | | | | - Rework of twe_report_request to use the command status value rather than the flags register. (Joel Jacobson @ 3ware) - Update to match some changes in -current vs. stable. MFC in: 1 week
* | | Pointy hat fix -- reapply the SRA PAM patch. To -current this time.nsayer2001-05-072-0/+266
| | |
* | | Add PAM support to SRA authentication. Cribbed mostly from ftpd. Thisnsayer2001-05-073-2/+6
| | | | | | | | | | | | | | | doesn't solve the problem of root being allowed to log in, but that sort of thing is something PAM should be doing anyway.
OpenPOWER on IntegriCloud