summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Disconnect the docs until we figure out if there are any with v3.obrien2002-06-191-1/+1
|
* Another good suggestion from Bruce, only create links if thedougb2002-06-191-2/+2
| | | | file doesn't exist already.
* Don't convert a single space before a tab stop into a tab when thetjr2002-06-191-2/+2
| | | | -i option is used.
* fix whitespace botch in previous commit.billf2002-06-191-1/+1
|
* Removed unneeded files.pdeuskar2002-06-184-5322/+0
| | | | | | | if_em_fxhw.[c,h] and if_em_phy.[c,h] have been merged into one [c,h] file. MFC after: 3 days
* setsugid() touches p->p_flag so assert that the proc is locked.alfred2002-06-181-0/+2
|
* A node that creates a device entry in /dev (yay devfs)julian2002-06-185-0/+798
| | | | | | | | | | so that /dev/mumble can be the entrypoint to some networking graph, e.g. a tunnel or a remote tape drive or whatever... Not fully tested (by me) yet. Submitted by: Mark Santcroos <marks@ripe.net> MFC after: 3 weeks
* Make the speed used by gdb over serial settable in the kernel configuration.n_hibma2002-06-188-55/+108
| | | | | | This facilitates the use in circumstances where you are using a serial console as well. GDB doesn't support anything higher than 9600 baud (19k2 if you are lucky), but the console does.
* Fix a typo in the named startup optionsgordon2002-06-181-1/+1
| | | | Submitted by: sheldonh@
* o Remove LK_CANRECURSE from the vm_map lock.alc2002-06-181-2/+2
|
* FreeBSD is one of the OS's that does not require the use of libio with Gcc 3.1.obrien2002-06-18212-41351/+0
|
* Fix style and wording bugs introduced in my last commit.chris2002-06-181-11/+9
| | | | Sponsored by: DARPA, NAI Labs
* Do vidcontrol -m on after starting moused for a usb mouse.dougb2002-06-181-1/+1
| | | | | | PR: conf/39125 Submitted by: Mike Makonnen <makonnen@pacbell.net> Not objected to by: -current and -hackers
* Remove so*_locked(), which were backed out by mistake.tanimura2002-06-189-128/+38
|
* Should have paid more attention to the PR. Update (improve?) the examplesdougb2002-06-181-2/+19
| | | | | | by doing them in /dev/, and provide more than just the one example. Submitted by: bde (for the ideas, blame for mistakes is mine)
* Only create symlink if /dev/ttyv0 exists.dougb2002-06-181-1/+3
| | | | | PR: misc/39381 Submitted by: Dirk-Willem van Gulik <dirkx@covalent.net>
* This is the same alloca() fix as was committed for i386. David O'Briendillon2002-06-181-5/+17
| | | | | | | | tested the patch on -stable. Reviewed by: obrien Approved by: jdp MFC after: 3 days
* Add support for Comtrol RocketPort 550 PCi models: 4 RJ45, 4 Quadcable,obrien2002-06-181-0/+87
| | | | | | 8 RJ11, 8 Octacable, and 8 (used with RocketPort I/F box). Note: untested due to lack of hardware
* Support the Comtrol RocketPort 550 PCi 16 (used with RocketPort I/F box).obrien2002-06-182-1/+29
| | | | Sponsored by: Feral Software
* Remove unneeded include of machine/emul.h.jake2002-06-181-1/+0
|
* ebus sio(4) attachment.obrien2002-06-181-0/+113
| | | | Submitted by: tmm
* Allow one to configure `sio'.obrien2002-06-181-0/+6
|
* Sync with i386.obrien2002-06-181-8/+10
|
* Teach mdoc about the 4.6 releasedougb2002-06-182-1/+2
|
* Honor the BUCKETCACHE flag on free as well.jeff2002-06-171-4/+9
|
* - Introduce the new M_NOVM option which tells uma to only check the currentlyjeff2002-06-177-6/+24
| | | | | | | | | | | | | | | | allocated slabs and bucket caches for free items. It will not go ask the vm for pages. This differs from M_NOWAIT in that it not only doesn't block, it doesn't even ask. - Add a new zcreate option ZONE_VM, that sets the BUCKETCACHE zflag. This tells uma that it should only allocate buckets out of the bucket cache, and not from the VM. It does this by using the M_NOVM option to zalloc when getting a new bucket. This is so that the VM doesn't recursively enter itself while trying to allocate buckets for vm_map_entry zones. If there are already allocated buckets when we get here we'll still use them but otherwise we'll skip it. - Use the ZONE_VM flag on vm map entries and pv entries on x86.
* Avoid reprobing on loading a driver. This does not work as the ivars setn_hibma2002-06-171-0/+15
| | | | | | | | | during the previous probe are stale. What really should be done is route the probe through device_probe_and_attach bit this is one of those ICBBATIASS (I can't be bothered as there is a simpler solution). The user can easily replug the device after kldloading a new device driver.
* Set the ivars _after_ checking that the bdev was correctly created insteadn_hibma2002-06-171-2/+2
| | | | of before.
* clean up some KASSERTS.n_hibma2002-06-171-13/+18
|
* Use OBJDIR instead of CURDIR. This unbreaks loading modules throughn_hibma2002-06-171-1/+1
| | | | | | | | | | | | | 'make load' if an object dir was, like it is used in /sys/modules. I.e. cd /sys/modules/umass make obj make make load works again without having to install the module. If no objdir was used the module in the current directory is used.
* Add constants for the min and max prom addresses. Use these instead ofjake2002-06-172-3/+6
| | | | | | magic numbers. Use stxa_sync instead of stxa; membar #Sync; to ensure that no instruction is placed between the two. This can cause random corruption even though interrupts are already disabled.
* e_pow.c:bde2002-06-172-2/+2
| | | | | | | | | | | | | | | | Fixed pow(x, y) when x is very close to -1.0 and y is a very large odd integer. E.g., pow(-1.0 - pow(2.0, -52.0), 1.0 + pow(2.0, 52.0)) was 0.0 instead of being very close to -exp(1.0). PR: 39236 Submitted by: Stephen L Moshier <steve@moshier.net> e_powf.c: Apply the same patch although it is just cosmetic because odd integers large enough to cause the problem are too large to be precisely represented as floats. MFC after: 1 week
* In TTEST2(), check to make sure the "l" argument isn't so large thatfenner2002-06-171-2/+10
| | | | | | | "snapend - l" underflows; this fixes a buffer overflow with malformed NFS packets, and may fix other buffer overflows with malformed packets. Obtained from: tcpdump.org CVS
* make(I) appeared in PWB UNIX.jmallett2002-06-171-2/+1
|
* Add Standards section.tjr2002-06-171-0/+5
|
* Sort sections, use Dl for the example so it stands out more.tjr2002-06-171-6/+5
|
* o Acquire and release Giant in vm_map_wakeup() to preventalc2002-06-171-0/+7
| | | | | | a lost wakeup(). Reviewed by: tegge
* Only advance the column position for printable characters, update manualtjr2002-06-172-4/+6
| | | | page to emphasise that we count column positions, not characters.
* remove bogus comment, select/poll do NOT need to fhold as they hold thealfred2002-06-171-1/+4
| | | | | filedesc lock. style(9) fixes, add blank line at start of functions with no local variables.
* Fill in my MAINTAINER info for drmanholt2002-06-171-0/+1
| | | | Approved by: des
* Kill superfluous blank line.sobomax2002-06-171-1/+0
|
* - Turn a DIAGNOSTIC check into a KASSERT(9).arr2002-06-171-4/+1
|
* - Turn a DIAGNOSTIC check into a KASSERT(9) macro.arr2002-06-171-6/+2
|
* - Explicitly pass M_WAITOK in a few calls to uma_zalloc(9).arr2002-06-171-7/+7
|
* sppp needs slcompress.c nowadays.jhay2002-06-172-1/+2
| | | | PR: 39369
* Actually document pselect(3) so that Bruce can mention it in the releasewollman2002-06-172-1/+123
| | | | notes. :-)
* Move dillon's time conversion functions to a new header <timeconv.h>.wollman2002-06-174-14/+68
| | | | | | Since they were never documented and have never appeared in a FreeBSD release, no repo-copy of the header is done. This removes namespace pollution from <time.h>.
* Clean up a bit of namespace pollution which crept in with the last rev.wollman2002-06-171-1/+1
| | | | Submitted by: bde
* Compensate for dodgy Win98/WinME MSCHAPv2 responses later in the codebrian2002-06-175-29/+34
| | | | | | | | | | | | | | | | path... after we've talked to any RADIUS servers involved, so that we haven't touched the data before it gets to the server. Make it clearer in the code that this compensation is done by setting a flag to a value of zero, a flag which rfc2759 says *MUST* be zero. While we're here, don't bother passing the peer challenge into radius_Authenticate(). It's already part of the key we're passing in (this becomes obvious now that I've structured that data...). This ``fix'' doesn't help to authenticate Win98/WinME users in my test environment as ports/net/freeradius seems to ignore the flag completely anyway, but it may help with other RADIUS servers.
* Remove 17 June as German national holiday.grog2002-06-161-1/+0
|
OpenPOWER on IntegriCloud