summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2005-10-13Hide more definitions from userland and from locore.Miod Vallat
2005-10-13Use dired mode automatically if file specified for loading isKjell Wooding
a directory. Modified version of patch from Han Boetes. ok cloder@
2005-10-13Put the register clobbering constraints on the BUG trap instruction,Miod Vallat
not the first ldcr; hopefully gcc did not dare optimizing too much around here, so this should not change anything in practice. test martin@
2005-10-13unneeded #include, unused declaration, little knf; ok deraadt@Kevin Steves
2005-10-13unused declarations; ok deraadt@Kevin Steves
2005-10-13be sure to always set fifolen to at least 1 and if the code probes a 0 byteFederico G. Schwindt
fifo (ie., a 16450 misdetected as 16550a) the HW_FIFO bit is disabled. reported and ok by miod@. work with him.
2005-10-13In realitexpire(), do not re-add the itimer timeout if the process is inAaron Campbell
the midst of exiting. This solves a race condition that causes freed memory to be left referenced in the master kernel timeout worklist, leading to a uvm_fault. The same race condition was already fixed earlier in r1.53 of kern_clock.c for the process virtual and profile timeout structs. deraadt@ ok, testing by krw@
2005-10-13Over the years, different UARTs have appeared in the market.Federico G. Schwindt
Unfortunately most vendors implement hidden bits/features and ships with buggy buffers. This is our first attempt to fix this. Test the fifo size by putting the fifo into loopback mode and reading back what we wrote. It seems to be very much accurate and has correctly identified several buggy UARTs. Commented out for now. Tested by several people with different hardware, many thanks. Idea from Theo, code by myself.
2005-10-13spelling in commentsKevin Steves
2005-10-13remove unneeded #includes; ok markus@Kevin Steves
2005-10-13unused parametersHenning Brauer
2005-10-13dead definesHenning Brauer
2005-10-13To be fully compatibly with the GNU RCS tools we need to have theJoris Vink
same way of parsing commandline options. Since getopt(3) allows spaces between arguments and GNU RCS tools does not we needed to roll out our own way of option handling, and here it is. ok niallo@
2005-10-13comment out the "filter drop" option because it has never been fullyReyk Floeter
implemented and is not useable at all. ok henning@
2005-10-13Fix a memory leak in the ospf engine. First of all ospfd did not track if aClaudio Jeker
LSA was already queued on nbr self. So after the first round -- where the lsa was queued -- ospfd would remove it again in a second run. That was not enough but the LSA was removed from the wrong neighbor -- nbr instead of iface->self. LIST_REMOVE does not track the queue and so that resulted in some strangeness (especially the lsa_cache did not get cleared). OK norby@
2005-10-13consistency, remove a few explanations documented in the manpage.Alexandre Anriot
ok reyk@
2005-10-13Correctly queue ls updates on the retransmission lists.Claudio Jeker
First of all it is not clever to set queued before we actually queue something -- unless queued is set. If ospfd is running as BDR don't add updates to the retransmission list to the DR. OK norby@
2005-10-13Simplify poll loop as well. "grrr, OK" henning@Claudio Jeker
2005-10-13Simplify poll loop, there is no need for nfds tracking. While there killClaudio Jeker
some comments that are totaly wrong. OK henning@
2005-10-13add the (emacs) toggle-readonly keybinding (C-x C-q).Kjell Wooding
Also, remove a silly non-emacsism.
2005-10-13check if current line is null. fixes a core in dired.Kjell Wooding
2005-10-13Fix dired mode. Make deletions work, and keystrokes match emacs.Kjell Wooding
* dired-other-window should default to current buffer's path. * Remove redundant code (from Han Boetes) * Move initialization (and since we're here, fix mail-mode initialization too) * Remove redundant keymap in dired.c, and replace it with the better one that was being ignored in keymap.c.
2005-10-13KNF and minor cleanup. Remove an impossible condition check.Kjell Wooding
Also, remove annoying "now readonly" message, as this information is already reflected in the statusbar
2005-10-13Make mg's grep and compile more path-aware, by defaulting toKjell Wooding
the path of the invoking buffer. Also, make subshell output look more like emacs (show directory, completion time). oked at one point by deraadt@
2005-10-13first thing found by the fifo tester; pxa2x0 uarts are actually 64 bytesFederico G. Schwindt
deep. ok by uwe@ who confirmed this against specs.
2005-10-13sync multicast code with the FreeBSD sis driver.Brad Smith
2005-10-12add a cast when doing cvs_buf_release();Niall O'Higgins
2005-10-12have sis strip off the Ethernet FCS before passing it to bpf.Brad Smith
ok fgsch@
2005-10-12Define IPL_SCHED and spslsched(), matching the statclock level.Miod Vallat
2005-10-12add missing grpref unload propogation (sync with library_mquery)Kurt Miller
2005-10-12sync with web page, provides more details.Miod Vallat
2005-10-12Split grpsym_list creation away from child_list creation and changeKurt Miller
grpsym_list order to match Sun's docs. Also corrects bugs where grpsym_list was either not created or partially created.
2005-10-12document new max array sizeBernd Ahlers
ok otto@
2005-10-12regenBrad Smith
2005-10-12add Radeon X600 (RV380), Radeon 9550 and Radeon Mobility M300 M22Brad Smith
2005-10-12Kill unused global variable.Miod Vallat
2005-10-12Move sigcode to the m88k-agnostic location. No functional change.Miod Vallat
2005-10-12Remove commented out dead wrong FPU handling code in setregs().Miod Vallat
2005-10-12regenMichael Shalayeff
2005-10-12add few other ancient cpu types we have not seen yetMichael Shalayeff
2005-10-12Stop mapping the u area at fixed UADDR in addition to its actual va.Miod Vallat
While there, attempt to clean and comment stack usage in the kernel. No functional change. From the m88k SMP tree; help&test martin@
2005-10-12General scheduler cleanup:Miod Vallat
- at the end of switch_exit(), jump in a better location inside cpu_switch() - skip unnecessary curproc == NULL tests, and remove other dead code - simplify the idle loop - optimize whichqs bit operations - and add comments at strategic places help&test martin@
2005-10-12syncTheo de Raadt
2005-10-12three new .so libraries to help the ports people who need (or might need)Theo de Raadt
them for perl modules; discussion with pvalchev
2005-10-12unconflict (one day legacy) wavelan ioctl's from the vlan ioctl'sTheo de Raadt
so that vlan's can be done on wavelan (if you are crazy enough to want to). spotted by fgs, but my fix, ok a few people
2005-10-12minor knf;Xavier Santolaria
2005-10-12various usage cleanup; ok jorisTheo de Raadt
2005-10-12sync SEE ALSO sections;Xavier Santolaria
2005-10-12rlog man page;Xavier Santolaria
2005-10-12add uu_lock_txfr to .Nm list;Jason McIntyre