summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* remove unneeded includesmjacob2000-09-211-4/+0
| | | | (obtained from phk@freebsd.org)
* comment vfs_export functions, requested by: eivindalfred2000-09-212-2/+24
|
* add ``check free resource rage code''sanpei2000-09-213-10/+32
| | | | for PC-Card which has no address in cis.
* Fix LINT breakage by options ACPI_NO_OSDFUNC_INLINE.iwasaki2000-09-214-8/+14
| | | | | | | Also space/tab-fix in NOTE. Grrr, my bad. Pointed-out by: eivind
* Remove unneeded #include that was a remnant of an earlier version oftruckman2000-09-211-1/+0
| | | | | | my uidinfo patch. Found by: phk
* The final entry should be `required', not `sufficient'.ru2000-09-211-1/+1
|
* Add in and document two new debugging options used in the mutex code:jhb2000-09-212-0/+16
| | | | SMP_DEBUG and WITNESS.
* Fixed the calculations with UDP header length field.ru2000-09-212-4/+4
| | | | | | | The field is in network byte order and contains the size of the header. Reviewed by: brian
* Add in documentation and examples of the KTR kernel config options.jhb2000-09-212-0/+38
| | | | Prompted by: phk's kernel include script
* Remove unneeded includes.markm2000-09-218-18/+0
| | | | Submitted by: phk
* Fix PR #21245: handle wep keys correctly and pretty print hex keyswpaul2000-09-212-36/+42
| | | | | as appropriate. Nick: this sort of does what your changes did, except the hex/text printing is done automatically using isprint().
* Fix buffer overflow when DISPLAY is longer than 43 characters. Thisimp2000-09-201-4/+7
| | | | | | | | | | is not exploitable because telnet doesn't run with elevated privs. Didn't fix all the other potential buffer overflows. Would be a good task for someone who has lots of time to carefully study each case because cut and paste solutions are dangerous for this code base. Added $FreeBSD$ in the same way that command.c did it.
* Add new function in AML interpreter; aml_invoke_method().iwasaki2000-09-208-12/+32
| | | | | | | | Also remove unneeded includes in aml_obj.c and aml_parse.c. This new function takes 'struct aml_name *' as a argument rather than 'char *' where aml_invoke_method_by_name() does. It's worth to have these two interfaces in many cases.
* o Remove 9 unnecessary includes.imp2000-09-203-12/+8
| | | | | | | | o Add Vpp power at 5.0V rather than 0. Setting it to zero violates the pccard spec. Most pcic devices in use today don't let us violate the spec, but some older ones do. Bill Paul sent this to me a long time ago and I thought I'd commit it before now. o Add some debug stuff hidden behind bootverbose.
* Fix a typobrian2000-09-201-1/+1
| | | | Spotted by: Manfred Antar <null@pozo.com>
* No need to generate opt_compat_oldisa.himp2000-09-201-5/+1
|
* remove 5 unnecessary includes, per phk's scriptimp2000-09-204-5/+0
|
* Remove 7 unnecessary includes frmo phk's scriptimp2000-09-204-8/+0
|
* Remove 8 unnecessary includes from phk's scriptimp2000-09-202-8/+0
|
* IN_CLASS*() macros assume host order and s_addr is network byteps2000-09-201-2/+2
| | | | order, so we must convert them to host order.
* Add support for the "nullconsole" console type, for systems witharchie2000-09-207-1/+109
| | | | | | | | neither a video console nor a serial port. Use it if the RB_MUTE flag is set. Submitted by: Doug Ambrisko <ambrisko@whistle.com> Reviewed by: jhb
* Remove one debug line that snuck in by accident.wpaul2000-09-201-1/+0
|
* Add a new driver for the AMD PCnet/FAST, FAST+ and Home PCI adapters.wpaul2000-09-2014-1/+2042
| | | | | | | | | | | | | | Previously, these cards were supported by the lnc driver (and they still are, but the pcn driver will claim them first), which is fine except the lnc driver runs them in 16-bit LANCE compatibility mode. The pcn driver runs these chips in 32-bit mode and uses the RX alignment feature to achieve zero-copy receive. (Which puts it in the same class as the xl, fxp and tl chipsets.) This driver is also MI, so it will work on the x86 and alpha platforms. (The lnc driver is still needed to support non-PCI cards. At some point, I'll need to newbusify it so that it too will me MI.) The Am79c978 HomePNA adapter is also supported.
* o Add additional comment describing vaccess() behavior.rwatson2000-09-202-0/+14
| | | | | Requested by: eivind Reviewed by: eivind, adrian
* Add a homePNA PHY driver. This is really only a stub: MII-based homePNAwpaul2000-09-203-1/+284
| | | | | PHYs tend to look like 10mbps PHYs with no autonegotiation. This allows us to display the proper media type and link status however.
* regeneratewpaul2000-09-201-1/+3
|
* Add the ID for the built-in homePNA PHY in the AMD 79C798 controller.wpaul2000-09-201-0/+1
|
* Null commit to force an update after clearing the "-ko" keywordjdp2000-09-200-0/+0
| | | | expansion, which somehow accidentally became set.
* fix previous PIOCSRESOURCE code in assign_card_indexsanpei2000-09-201-7/+10
|
* Clean up the VIA id's a bit and add the K[TX]133 chipsetssos2000-09-201-7/+12
|
* Remove unneeded includessos2000-09-206-11/+3
| | | | Pointed out by: phk
* Oops, un-spam this file - the last commit was an accident.brian2000-09-201-1/+0
| | | | Pointed out by: phk
* Remove the last two uses of ahc->unit in the FreeBSD version of the driver.gibbs2000-09-202-4/+6
| | | | | | | | | ahc->unit is depricated and will be going away as soon as the Linux driver catches up. In the FreeBSD case, it is always initialized to 0 and this caused some strangeness in registering multiple ahc controllers with CAM. Noticed by: Tor.Egge@fast.no
* Only realloc() environ if we're sure that we know where it came from.brian2000-09-202-5/+5
| | | | | | The recent problems with sshd were due to sshd reassigning `environ' when setenv() thinks it owns it. setenv() subsequently realloc()s the new version of environ and *boom*
* Ignore power button and sleep button events for 5 sec.iwasaki2000-09-202-2/+24
| | | | | | | Wakeup event is generated by power button and/or sleep button on some laptops but this also generates SCI interrupt, and shutdown the system as result. So this kind of mechanism is introduced so that acpi driver ignore given events for certain period.
* Improve region I/O sub-routines by re-writing most of low level partiwasaki2000-09-2015-745/+1347
| | | | | | | | | | | | | | | | | | | of AML interpreter. - Delete and cleanup a lot of almost duplicated code in kernel/userland. - Add new common functions for kernel/userland code. aml_adjust_readvalue(), aml_adjust_updatevalue(), aml_region_handle_alloc(), aml_region_handle_free() and aml_region_io(). - Add primitive functions for both versions of kernel/userland in order to have shared code as much as possible. aml_region_read_simple(), aml_region_write_simple(), aml_region_prompt_read(), aml_region_prompt_write() and aml_region_prompt_update_value(). - Consider update rule and access type in field flags. Also add a lot of definitions for the flags. - Fix bugs on bit manipulation for read/write operations. - Fix bugs on IndexField I/O part. Also add workaround for temporary object corruption during StoreOp interpretation.
* If this is a Davicom DM9102A and we're enabling the homePNA link, forcewpaul2000-09-202-8/+18
| | | | | dc_link to 1 and don't activate the tick routine. Without this, dc_start() always thinks the link is down and never transmits in homePNA mode.
* Mention the AAC_COMPAT_LINUX optionmsmith2000-09-192-0/+10
|
* Fully initialize msqids[]. This could lead to ENOSPC and other strangepeter2000-09-191-0/+1
| | | | | | | stuff. PR: 21085 Submitted by: Marcin Cieslak <saper@SYSTEM.PL>
* Put temporary output in ${TMPDIR:-/tmp}brian2000-09-193-9/+8
| | | | | | If $<basedir>_output is not set, don't redirect output PR: 21395
* Don't clobber $? before using it.brian2000-09-191-1/+2
| | | | Submitted by: James Barkley <jbarkley@wgate.com>
* NGM_BPF_{G,S}ET_FILTER should be NGM_BPF_{G,S}ET_PROGRAM.archie2000-09-191-4/+4
|
* Fix unexploitable off by one error as mentioned on Bugtraq.imp2000-09-191-2/+1
|
* o Whitespace reduction appled to FreeBSD CVS IDrwatson2000-09-192-2/+2
| | | | Obtained from: TrustedBSD Project
* o General warning fixing commitrwatson2000-09-1914-18/+12
| | | | | | | | - Include <stdlib.h> and <string.h> as needed for prototypes - Remove unneeded "error" variables o Make cap_init() use cap_clear() instead of bzero() Obtained from: TrustedBSD Project
* o Add cap_from_text(3) and cap_to_text(3) man pages.rwatson2000-09-196-0/+464
| | | | | | | o Implementations will remain in the seperately distributed capability patch until the cap_t type changes are synchronized. Obtained from: TrustedBSD Project
* o EACCES is not a possible error for acl_from_text(), so fixrwatson2000-09-1920-28/+22
| | | | | | | | acl_from_text.3 o Minor whitespace cleanups relative to the TrustedBSD tree to reduce content-free differences. Obtained from: TrustedBSD Project
* Add thread-safe wrapper for fpathconf(2) syscall.sobomax2000-09-197-0/+52
| | | | Reviewed by: jlemon
* Use .Cm macro where appropriate.ru2000-09-191-8/+8
|
* Add card_if.himp2000-09-191-1/+2
|
OpenPOWER on IntegriCloud