aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 1) Add non-blocking I/O on readNick Hibma1999-06-131-6/+32
| | | | | | | | 2) Add checks to make sure we do not dereference the softc when not found because the device has been removed. Notes: svn path=/head/; revision=47896
* 1) Add the USB controllers (will now print pretty strings when no usbNick Hibma1999-06-131-32/+64
| | | | | | | | | support is compiled in) 2) Add probing for generic USB host controllers as well so we get them all 3) make the returned strings look alike in the whole file Notes: svn path=/head/; revision=47895
* Shorten the strings a bit (remove 'Host')Nick Hibma1999-06-134-30/+32
| | | | Notes: svn path=/head/; revision=47894
* Fix placement of signal trampoline.Dmitrij Tejblum1999-06-131-2/+2
| | | | Notes: svn path=/head/; revision=47893
* Use pmap_kenter instead of pmap_enter to map the message buffer.Alan Cox1999-06-132-6/+4
| | | | Notes: svn path=/head/; revision=47892
* Removed checking for unit>NBKTR.Roger Hardiman1999-06-132-34/+4
| | | | | | | | No longer need when using device_get_softc. (also fixed bug where loadable bktr module could only access 1st device) Notes: svn path=/head/; revision=47891
* Add bktr_load for the loadable Bt848/Bt878 driver.Roger Hardiman1999-06-131-1/+2
| | | | Notes: svn path=/head/; revision=47890
* vm_map_protect:Alan Cox1999-06-121-2/+2
| | | | | | | | The wrong vm_map_entry is used to determine if writes must not be allowed due to COW. Notes: svn path=/head/; revision=47888
* Add bktr (Bt848/Bt878 driver loadable module) to the Makefile i386 only sectionRoger Hardiman1999-06-121-2/+2
| | | | Notes: svn path=/head/; revision=47887
* Change perl5 to perl (same change as made in the fxp module)Roger Hardiman1999-06-121-5/+5
| | | | Notes: svn path=/head/; revision=47886
* Makefile to build a loadable bktr Bt848/Bt878 device driverRoger Hardiman1999-06-121-0/+47
| | | | | | | | This allows the bt848 grabber to be loaded in the boot loader or after bootup without the need for a custom kernel Notes: svn path=/head/; revision=47885
* Updated to use the new 4.x newbus APIRoger Hardiman1999-06-124-438/+592
| | | | | | | | | Also removed the BSDI support (for now) This allows the driver to be loaded/unloaded as a KLD and loaded in the boot loader phase whithout making a custom kernel. Notes: svn path=/head/; revision=47884
* Fix a minor style nit in the NAME section.Mike Pritchard1999-06-111-1/+1
| | | | Notes: svn path=/head/; revision=47881
* Move the description of the strncmp() function from the RETURN VALUESMike Pritchard1999-06-111-6/+6
| | | | | | | | | | section to the DESCRIPTION section. PR: 12133 Submitted by: Sheldon Hearn <sheldonh@uunet.co.za> Notes: svn path=/head/; revision=47879
* Show the correct error if we fail to open a device.Brian Somers1999-06-111-7/+17
| | | | Notes: svn path=/head/; revision=47878
* Don't accept divert/tee/pipe rules without corresponding option.Ruslan Ermilov1999-06-111-3/+11
| | | | | | | | PR: 10324 Reviewed by: luigi Notes: svn path=/head/; revision=47877
* Describe why a ``magic'' enddisc is not always a good idea.Brian Somers1999-06-112-4/+22
| | | | Notes: svn path=/head/; revision=47876
* Larger, space separated fields in the output of repquota.Joseph Koshy1999-06-111-5/+5
| | | | | | | | PR: 8730 Submitted by: Andre Albsmeier <andre.albsmeier@mchp.siemens.de> Notes: svn path=/head/; revision=47875
* Workaround the problem that the first (and only first) port nameRuslan Ermilov1999-06-111-9/+26
| | | | | | | | | | | | | | can't have a dash character (it is treated as a ``range'' operator). One could now use such a name by escaping the ``-'' characters. For example: # ipfw add 1 count tcp from any to any "ms\-sql\-s" # ipfw add 2 count tcp from any ftp\\-data-ftp to any PR: 7101 Notes: svn path=/head/; revision=47874
* Compile when NO_REGEX is defined.Tim Vanderhoek1999-06-111-0/+2
| | | | | | | Submitted by: Geordy Kitchen <gkitchen@cs.ubc.ca> (gnu/12117) Notes: svn path=/head/; revision=47872
* Improvement in the description of what this does.Mark Murray1999-06-101-10/+10
| | | | | | | Prompted by (and thanks to): W Richard Stevens Notes: svn path=/head/; revision=47870
* Replace my previous fix of saving the FP state with a much simpler one: whenDmitrij Tejblum1999-06-108-36/+22
| | | | | | | | | we swap out fpcurproc, save its FP state. Suggested by: bde Notes: svn path=/head/; revision=47869
* For vendor-specific commands sent using the 'camcontrol cmd' facility,Kenneth D. Merry1999-06-101-4/+4
| | | | | | | | | use the passed in CDB length, not 1. Submitted by: Jean-Marc Zucconi <jmz@FreeBSD.ORG> Notes: svn path=/head/; revision=47867
* Remove 'SET_ASM_OP' macro, which is unused now and rather harmfulHidetoshi Shimokawa1999-06-101-2/+0
| | | | | | | for recent egcs. Notes: svn path=/head/; revision=47866
* Allow reserved substitution strings to be escaped by preceeding themBrian Somers1999-06-101-5/+7
| | | | | | | with a backslash. Notes: svn path=/head/; revision=47865
* Never bring a link back up after receiving a terminating signal,Brian Somers1999-06-101-2/+2
| | | | | | | don't rely on already being in PHASE_DEAD. Notes: svn path=/head/; revision=47863
* Change variable used for calculating ending address of physical memoryJonathan Lemon1999-06-102-4/+4
| | | | | | | | | from 'int' to 'vm_offset_t'. Spotted by: Richard Cownie <tich@ma.ikos.com> Notes: svn path=/head/; revision=47862
* Don't delete quota files when clean-tmps is enabled.Brian Somers1999-06-101-2/+3
| | | | Notes: svn path=/head/; revision=47861
* Allow a remote IP and port range specification in theBrian Somers1999-06-104-96/+178
| | | | | | | ``alias port'' command. Notes: svn path=/head/; revision=47860
* Initialise `mp'.Brian Somers1999-06-091-1/+2
| | | | Notes: svn path=/head/; revision=47859
* Allow our endpoint discriminator to be enabled, disabled, acceptedBrian Somers1999-06-096-20/+56
| | | | | | | | | and denied. This is necessary for some MP implementations that get confused if you accept their endpoint discriminator but reject their MRRU. Notes: svn path=/head/; revision=47858
* Add a rather complicated but impressive example of howBrian Somers1999-06-098-0/+380
| | | | | | | | | | | | to implement multi-link ppp over more than one ISP with the ability to lose ISPs without loss of connectivity. It *requires* that you either have administrative access to a machine that's already connected to the 'net or at least know a really nice person that does. Notes: svn path=/head/; revision=47857
* Add detection code for NVidia Riva 128,TNT,TNT2Andrey A. Chernov1999-06-091-1/+19
| | | | | | | | | | (TNT2 from me) PR: 12094 Submitted by: Ilya Naumov camel@avias.com Notes: svn path=/head/; revision=47856
* where_arge is allocated on stack and return address is overwrittenJordan K. Hubbard1999-06-091-3/+3
| | | | | | | | | by buffer overflow. Submitted by: Hidetoshi Shimokawa <simokawa@sat.t.u-tokyo.ac.jp> Notes: svn path=/head/; revision=47853
* Remove apple.com from time server list.Jordan K. Hubbard1999-06-093-18/+9
| | | | | | | Submitted by: Mike Haro Notes: svn path=/head/; revision=47852
* Various edits to shrink fixit and enable dhcp-clientJordan K. Hubbard1999-06-097-6/+21
| | | | Notes: svn path=/head/; revision=47851
* Use the correct pid when substituting PROCESSID.Brian Somers1999-06-095-18/+22
| | | | | | | Problem reported by: Amedeo Beck Peccoz <gea@gressoney.it> Notes: svn path=/head/; revision=47849
* little optimization of locale sensing codeAndrey A. Chernov1999-06-091-28/+29
| | | | Notes: svn path=/head/; revision=47845
* Don't use static variables if we don't have to.Brian Somers1999-06-082-8/+11
| | | | Notes: svn path=/head/; revision=47844
* Don't drop the last character from lines in ppp.secret unless it's '\n'.Brian Somers1999-06-081-3/+5
| | | | Notes: svn path=/head/; revision=47843
* Use kmem_alloc_nofault() rather than kmem_alloc_pageable() to allocateDmitrij Tejblum1999-06-083-6/+6
| | | | | | | kernel virtual address space for UPAGES. Notes: svn path=/head/; revision=47842
* Add a function kmem_alloc_nofault() - same as kmem_alloc_pageable(), butDmitrij Tejblum1999-06-082-2/+27
| | | | | | | | | create a nofault entry. It will be used to allocate kmem for upages. (I am not too happy with all this, but it's better than nothing). Notes: svn path=/head/; revision=47841
* Keep fpcurproc locked in memory, so that we always can save the FP stateDmitrij Tejblum1999-06-087-14/+35
| | | | | | | | | | | correctly. This should fix the "pmap_changebit didn't" panic that some people see. Reviewed by: dfr Notes: svn path=/head/; revision=47840
* Just ignore malformed locale variable unless -d specifiedAndrey A. Chernov1999-06-081-12/+16
| | | | Notes: svn path=/head/; revision=47839
* If amd_flags is empty, don't add -p as it makes amd abend.Brian Somers1999-06-087-14/+49
| | | | Notes: svn path=/head/; revision=47838
* Don't IPCP TLD if we're already doing it. This preventsBrian Somers1999-06-081-19/+23
| | | | | | | | recursion by doing something like ``down'' or ``quit all'' in ppp.linkdown. Notes: svn path=/head/; revision=47835
* Make the ``load'', ``dial'' and ``open'' commands a big clearer.Brian Somers1999-06-082-52/+100
| | | | | | | Requested by: Michael Heitmeier <MICHAEL_HEITMEIER@HP-Germany-om12.om.hp.com> Notes: svn path=/head/; revision=47834
* Change locale name of Traditional Chinese : zh_TW.BIG5 -> zh_TW.Big5.Foxfair Hu1999-06-0811-15/+288
| | | | | | | | | | It makes compatible with IANA charset defination, and let existent I18N app happier. Ref: <http://www.isi.edu/in-notes/iana/assignments/character-sets> Notes: svn path=/head/; revision=47831
* From the submitter:Mike Smith1999-06-072-21/+18
| | | | | | | | | | | | | | | | | | | | - this causes POSIX locking to use the thread group leader (p->p_leader) as the locking thread for all advisory locks. In non-kernel-threaded code p->p_leader == p, so this will have no effect. This results in (more) correct POSIX threaded flock-ing semantics. It also prevents the leader from exiting before any of the children. (so that p->p_leader will never be stale) in exit1(). We have been running this patch for over a month now in our lab under load and at customer sites. Submitted by: John Plevyak <jplevyak@inktomi.com> Notes: svn path=/head/; revision=47829
* Fix -T doublingAndrey A. Chernov1999-06-072-6/+6
| | | | Notes: svn path=/head/; revision=47828