summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Regen.n_hibma2000-09-052-4/+264
|
* Fix typo'sn_hibma2000-09-051-2/+2
|
* Loads of scanner Ids.n_hibma2000-09-051-1/+45
|
* Oops! don't set errno to ENOMEM explicitly if malloc() failed.phantom2000-09-051-6/+10
| | | | Found by: ache
* Implement readahead buffering for non-raw files. This drastically improvesmsmith2000-09-055-73/+132
| | | | | | | | | the efficiency of byte-by-byte read operations on filesystems not already supported by the block cache (especially NFS). This should be a welcome change for users booting via PXE, as the loader now reads its startup files almost instantly, instead of taking tens of seconds.
* Add ZTIA001 - Zoom Internal V90 Faxmodem.sheldonh2000-09-052-0/+2
| | | | | PR: 21028 Submitted by: Glenn Johnson <glennpj@charter.net>
* Remove the SIGSYS handler and wrapper around the __getcwd() syscall.peter2000-09-051-39/+10
| | | | | | | | It was kinda silly since the sigaction() syscall that it used to setup the handler is more recent than __getcwd(), therefore it was useless as the wrapper would have died before even getting as far as __getcwd(2). Reminded by: bde
* Various cleanups towards make nullfs functional (it is still brokenbp2000-09-058-76/+260
| | | | | | | | | | | | | | | | | | | | at this point): Replace all '#ifdef DEBUG' with '#ifdef NULLFS_DEBUG' and add NULLFSDEBUG macro. Protect nullfs hash table with lockmgr. Use proper order of operations when freeing mnt_data. Return correct fsid in the null_getattr(). Add null_open() function to catch MNT_NODEV (obtained from NetBSD). Add null_rename() to catch cross-fs rename operations (submitted by Ustimenko Semen <semen@iclub.nsu.ru>) Remove duplicate $FreeBSD$ tags.
* Add acap, as per IANA.sheldonh2000-09-051-0/+2
| | | | | PR: 20990 Submitted by: Lyndon Nerenberg <lyndon@orthanc.ab.ca>
* Get rid from the __P() macros.bp2000-09-058-74/+72
| | | | Encouraged by: peter
* o vn_extattr_set() will now call appropriate vn_start_write() andrwatson2000-09-051-2/+8
| | | | | | vn_finished_write() if IO_NODELOCKED is not set. Obtained from: TrustedBSD Project
* o Remove commented out code which modified return values fromrwatson2000-09-052-20/+0
| | | | | | extattr_{get,set} syscalls in the face of partial reads or writes. Obtained from: TrustedBSD Project
* Regeneratepeter2000-09-052-2/+18
|
* Catch a few more bogosities in certain chipsets before they mess us up.peter2000-09-056-114/+534
| | | | | | | | | | | | | Some have dual host->PCI bridges for the same logical pci bus (!), eg: some of the RCC chipsets. This is a 32/64 bit 33/66MHz and dual pci voltage motherboard so persumably there are electical or signalling differences but they are otherwise the same logical bus. The new PCI probe code however was getting somewhat upset about it and ended up creating two pci bridges to the same logical bus, which caused devices on that logical bus to appear and be probed twice. The ACPI data on this box correctly identifies this stuff, so bring on ACPI! :-)
* Add compaq hotplug PCI device id.peter2000-09-051-9/+27
| | | | | Tidy up some loose ends. Be a little more consistent how the ign driver probes with the rest of the drivers in this file.
* When dumping the 'found devices' list in verbose mode, actually show thepeter2000-09-052-0/+4
| | | | | | bus/slot/function numbers. The old PCI code used other markers or something, but without it here under the new pci code it is very hard to tell which device is which (this only affects bootverbose mode).
* When we are picking the next available unit number, specifically saypeter2000-09-051-3/+3
| | | | | what we picked. Otherwise it is anybody's guess as to where the device ended up.
* o Add missing "\n" to warning output in netinet/if_loop.c, when anrwatson2000-09-041-1/+1
| | | | | | | | | unsupported address family is used on localhost interface. looutput: af=0 unexpected Speculation as to the reasons for my seeing this error are welcome, of course. :-)
* Yank out the NOPOLL conditionals. libc_r no longer needs it, and thispeter2000-09-041-106/+28
| | | | | library depends on other things that come *way* later than poll() now (sigset size changes in particular)
* Add a note about /etc/aliases moving /etc/mail/aliases and the problemsimp2000-09-041-0/+10
| | | | | | | | | that causes in updating. Submitted by: Robert Watson [[ NB: marko and I are trying an experiment: he'll try to fix typos quickly in UPDATING, while I concentrate on content. ]]
* Throw out a considerable number of cards that have never been testedwilko2000-09-041-38/+4
| | | | | | on Alpha, primarily in the storage adapter area. Things like Soundblaster-attached CDs, WD7000 etc for example. Try to get RELNOTES for alpha to reflect reality a bit more.
* Add AS1200 (Tincup) to descriptionwilko2000-09-042-2/+2
|
* LINT -> NOTESwilko2000-09-042-6/+6
|
* Off by one error.phk2000-09-041-1/+1
| | | | Submitted by: des
* Remove obsolete comment (see rev 1.84 of procfs_vnops.c)des2000-09-042-16/+0
|
* Remove a comment that has been not only obsolete but patently wrong for thedes2000-09-042-16/+0
| | | | last 31 revisions (almost three years).
* Correct minor typosmarko2000-09-041-7/+7
| | | | | PR: 21022 Submitted by: Daniel S. Lewart <d-lewart@uiuc.edu>
* enable sshd by default. This only effects *new* installs, sojkh2000-09-043-0/+3
| | | | upgraders will not receive any unpleasant surprises.
* Use .St -susv2 rather than "The Single UNIX Specification".imp2000-09-041-2/+2
| | | | Submitted by: sheldonh
* Support for RBC devices, like Sony Memory Sticks.n_hibma2000-09-041-3/+65
| | | | | | Not extensively tested yet, so be warned. Submitted by: Gerd Knops <gerti@bitart.com>
* Add the id for the Sony memory sticks.n_hibma2000-09-041-0/+4
|
* Add Boca K56Flex PnP modem.sheldonh2000-09-042-0/+2
| | | | | PR: 21000 Submitted by: Andrew Sparrow <spadger@best.com>
* * move $FreeBSD$ tag to its usual place (bottom of copyright)phantom2000-09-043-10/+30
| | | | | | | * mdoc cleanup * document missing errno values (ERRORS section) Reviewed by: sheldonh
* Finaly cleanup libc/nls code:phantom2000-09-041-196/+163
| | | | | | | | | | | | | * rewrite catopen() to remove duplicate code chunks and optimize * if empty string is passed to catopen() as name argument then catopen() will set errno to ENOENT (File not found), not EINVAL * move search code to LOOKUP() macro to shrink amount of duplicated code * move common resource freeing actions to __nls_free_resources() function * exclude from build code related to MCLoadAll defintion since it is not using at all * style(9) related whitespace changes Reviewed by: ache
* Fix bug that causes gawk to choke when parsing long source files.sheldonh2000-09-042-5/+11
| | | | | Reported by: Tony Fleisher <takhus@takhus.mind.net> Submitted by: Aharon Robbins <arnold@skeeve.com>
* Whitespace-only: remove the only hard sentence break in the file.sheldonh2000-09-041-1/+2
|
* ttyname was not being passed into do_login(), so we were erroneously pickingkris2000-09-041-3/+3
| | | | | | up the function definition from unistd.h instead. Use s->tty instead. Submitted by: peter
* Update the NTP kernel PLL code to the 2000-08-29 version of Dave Millsphk2000-09-042-89/+88
| | | | | | nanokernel. The FreeBSD private mode hardpps Type 2 PLL has been removed.
* Constify the arg to logout(3). It is const-safe.peter2000-09-042-3/+3
| | | | (cosmetic: drop some "register" qualifications too.)
* Make filt_aio() check the jobstate for JOBST_JOBBFINISHED (in additionalc2000-09-041-1/+2
| | | | | to JOBST_JOBFINISHED) in case the aio_read() or aio_write() was performed via the high-performance physio method, i.e., aio_qphysio().
* When we have both a rcsid and sccsid, ifdef 0 the sccsid. Thisimp2000-09-041-0/+2
| | | | | appears to be the standard FreeBSD way to do this. style(9) is silent about this, however.
* getopt and friends are declared in <unistd.h>imp2000-09-0419-41/+13
| | | | getopt returns -1 not EOF.
* optarg and optind are declared in unistd.h.imp2000-09-043-6/+0
| | | | h_error is declared in netdb.h
* strerror is declared in <string.h>imp2000-09-041-3/+4
| | | | errno is declared in <errno.h>
* remove redundant optreset declarationimp2000-09-041-1/+0
|
* Fix typogshapiro2000-09-041-1/+1
|
* Get errno from <errno.h>, not from extern int.imp2000-09-042-3/+6
| | | | Add $FreeBSD$ to hopefully the right place.
* Don't print an error message if the bad option is '?'. This has beenimp2000-09-041-1/+1
| | | | | | | | | in my tree for a long time. bde reviewed this once upon a time and said it was OK, iirc. This also obviates the need to put ? in the optstring argument to preclude the extra warning message which some people think confuses users. When I made my getopt cleanups of a long time ago, this was the compromise reached. I just neglected to commit it until now.
* The comparison against 0 should be against LC_ALL. category isn't aimp2000-09-041-1/+1
| | | | | | | boolean and it is LC_ALL that's special. Someone submitted this to me a long time ago, but I can't find the mail now.
* Soften the statement about select's timeout argument. This part ofimp2000-09-041-4/+2
| | | | | the system likely won't change in the future, but the warning is a good idea.
OpenPOWER on IntegriCloud