summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Sort sections.ru2005-01-18119-794/+793
|
* when scanning is interrupted reset state so table entries go in the stationsam2005-01-183-6/+20
| | | | | | table and not the scan table Noticed by: Tai-hwa Liang
* do fixed rate check when considering if a scan candidate is suitable so whensam2005-01-181-9/+5
| | | | it's time to join the bss we can't get an error
* Add checks to vm_map_findspace() to test for address wrap. The conditionsalc2005-01-181-4/+8
| | | | | | | where this could occur are very rare, but possible. Submitted by: Mark W. Krentel MFC after: 2 weeks
* adjust tx buffer allocation based on empirical testing:sam2005-01-181-3/+3
| | | | | | | o increase the max per-frame tx descriptor count and the number of tx buffers for forthcoming fast frame support o correct the max scatter/gather count; it cannot be larger than the max(tx,rx,beacon) descriptor counts
* add missing statisticsam2005-01-181-2/+4
|
* disable interrupts when transitioning to INIT state so we don't rx framessam2005-01-181-1/+4
|
* replace hand-rolled code to compact an mbuf chain with m_defrag; this issam2005-01-181-17/+4
| | | | suboptimal but needed for fast frames which won't fit in a single cluster
* setup the beacon xmit queue to not interrupt; we don't use them andsam2005-01-181-1/+18
| | | | they make the led's flash unnecessarily in adhoc mode
* better led blinkingsam2005-01-182-48/+170
|
* Configure gdtoa so that floating-point numbers are correctly roundeddas2005-01-181-0/+1
| | | | when they are printed in non-default rounding modes.
* Cut out the gordian handling of subnormals by bit fiddling, anddas2005-01-181-128/+15
| | | | | | | | | | instead use the FPU to convert subnormals to normals. (NB: Further simplification is possible, such as using the FPU for the rounding step.) This fixes a bug reported by stefanf where long double subnormals in the Intel 80-bit format would be output with one fewer digit than necessary when the default precision was used.
* Typo fixes.brueffer2005-01-181-2/+2
| | | | MFC after: 3 days
* add paren's so we can supply a|b as a debug masksam2005-01-181-2/+2
|
* o disable pci retry timeout to avoid problems when operating in C3 statesam2005-01-181-29/+32
| | | | | | | | | (fix imported from madwifi by Takanori Watanabe) o eliminate save/restore of pci registers handled by the system o eliminate duplicate zero of the softc (noted by njl) o consolidate common code MFC after: 1 week
* Capitalize Windows and fix a typo.brueffer2005-01-181-2/+2
| | | | | Submitted by: markus MFC after: 3 days
* Start to support the big endian case as well.cognet2005-01-181-0/+13
|
* Correct the values of FLT_ROUNDS for the FE_UPWARD and FE_DOWNWARD cases.das2005-01-181-2/+2
|
* Don't print extra " via ", if we have already printed one. While here,glebius2005-01-181-4/+6
| | | | | | | slightly style brackets. PR: misc/75297 MFC after: 1 week
* Revert my previous errno hack, that is certainly an issue,davidxu2005-01-182-7/+13
| | | | | | | | and always has been, but the system call itself returns errno in a register so the problem is really a function of libc, not the system call. Discussed with : Matthew Dillion <dillon@apollo.backplane.com>
* Sort sections.ru2005-01-1866-511/+511
|
* Remove committer-specific entry.phk2005-01-181-4/+0
|
* Fix compile errors. Bah.scottl2005-01-181-2/+2
|
* Fix an incorrect cast.scottl2005-01-181-1/+1
| | | | | Submitted by: Andriy Gapon MFC-after: 3 days.
* Sort sections.ru2005-01-1843-345/+345
|
* Sort sections.ru2005-01-1814-94/+94
|
* Remove redundant parameter inherited from ipacctctl.glebius2005-01-181-8/+7
|
* One of the DIAGNOSTICS sections should be EXIT STATUS.ru2005-01-181-6/+6
|
* Folded two SEE ALSO sections into one.ru2005-01-182-4/+2
|
* Sort sections.ru2005-01-182-15/+16
|
* Fold two ENVIRONMENT sections into one.ru2005-01-181-32/+33
|
* Sort sections.ru2005-01-183-12/+12
|
* ioctl(2) commands are u_long not int.phk2005-01-181-5/+5
| | | | Pass zero for sysctl new argument length, not NULL);
* Detect sign-extension bugs in the ioctl(2) command argument: Truncatephk2005-01-181-0/+6
| | | | to 32 bits and print warning.
* Unbreak stack traces across double faults. In a particular edge casejhb2005-01-181-2/+8
| | | | | | | | | | | | (calling a __dead2 function such as panic() at the end of a function), the saved %eip on the stack will actually not be part of the function that executed a call instruction but instead will be the first instruction of the next function in the text. This happens with dblfault_handler() and syscall() for example. Work around this in the one place it matters by looking at the saved %eip - 1 to determine the calling function when we check for "magic" frames. MFC after: 2 weeks
* While we're building kernels -g (ie, makeoptions DEBUG=-g), use -O as itobrien2005-01-181-1/+1
| | | | | | | | | | provides truer debugger stack traces. For those that want to stick with -O2 kernel builds, one should probably add -fno-optimize-sibling-calls so that each stack frame as a frame pointer. It is semi-promissed by the Release Engineers that when RELENG_6 is created we go back to -O2. Desired by: scottl, jhb
* Fix building for non-i386 platforms.sam2005-01-181-4/+7
| | | | Submitted by: Coleman Kane
* S_ISVTX -> S_ISTXT to reflect the code.trhodes2005-01-181-1/+1
|
* Correctly hide the command arguments.dds2005-01-171-15/+2
| | | | | PR: bin/76374 MFC after: 2 weeks
* If su(1) is run without an effective uid of 0, generate an error torwatson2005-01-171-3/+33
| | | | | | | | | the user indicating that su is not running setuid, which may help suggest to the user that it should be setuid, or should not be running from a file system mounted nosuid. Suggsted by: Ivan Voras <ivoras at fer dot hr> MFC after: 2 weeks
* s/ntpdate_command/ntpdate_program/ to match rc.conf(5) andceri2005-01-171-1/+1
| | | | | | | | | /etc/defaults/rc.conf. PR: conf/76188 Submitted by: Arne Wörner <arne_woerner at yahoo dot com> Approved by: murray MFC After: 7 days
* Cleanup:delphij2005-01-172-17/+18
| | | | | - Change signedness of nxtfld() to make msgs(1) WARNS=6 clean - Add several static's
* Oops... Remove the line leaked in the last commit which is notdelphij2005-01-171-1/+0
| | | | intended to be there...
* WARNS=6 cleanup:delphij2005-01-172-17/+18
| | | | | | | - Initialize everything in the struct array, not only the mentioned ones - Unconditionally initialize hs to 0 to avoid repeatly doing so - Cast to unsigned int when comparing to unsigned variables.
* WARNS=6 cleanup:delphij2005-01-172-4/+9
| | | | | | | - signed/unsigned conform. - Better initialization of nlist[]. I think we should have something like NLIST_NULL instead of the current (ugly) form...
* Bump WARNS=6 by adding const constraint and initialize the pointerdelphij2005-01-172-2/+3
| | | | to NULL at start.
* The submitter of bin/75786 turned out to not have removable interfaces,ceri2005-01-171-1/+1
| | | | | | | | | | and so the fix committed in r1.42 was not quite correct for the case where there are two or more DHCP consuming removable interfaces - dhclient must be restarted so that the other interfaces continue to function correctly. Approved by: murray MFC After: 7 days
* Minor bit of advice.phk2005-01-171-0/+4
|
* Add -frandom-seed=RepeatabilityConsideredGood to CFLAGS for building thiscperciva2005-01-171-0/+1
| | | | | | | | | | | | | library. As the value suggests, this allows the library to be built repeatably; without this flag, gcc uses a random value in its parsing. Since the random seed is only used when handling files which do not have any externally-visible symbols, this change is not needed for any other libraries in the FreeBSD base system. Discussed on: freebsd-arch (in early November) Approved by: kan MFC after: 1 week
* MFi386: fix a comment.ru2005-01-171-1/+1
|
OpenPOWER on IntegriCloud