Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-01-04 | don't pass -1 as a netmask; report vicviq at gmail.com | Markus Friedl | |
2007-01-04 | <sys/un.h> not needed | Kevin Steves | |
2007-01-04 | ignore SIGPIPE, like the other 2 processes already do. we detect broken | Henning Brauer | |
pipes without the signal just fine. ok claudio | |||
2007-01-04 | extend make grammar slightly: | Marc Espie | |
- make it possible to have constructs like .if $A$B == "value" instead of simpler .if $A == "value" - make it possible to have explicit strings comparisons like: .if "string" == "string2" this comes in handy in .for loops, where the variable is expanded, and thus there is no longer any variable for make to look at. So in the end, the "" can sometimes be removed, but not always... small price to pay to get `better' expressions. okay otto@ | |||
2007-01-04 | having a function that iterates through node's datum so that we retrieve | Marc Espie | |
the list item with lst_member is non-sensical, create a new function (Lst_ForEachNodeWhile) that iterates through lstnodes directly and use it. Less obfuscated, slightly more efficient... okay otto@ | |||
2007-01-04 | Do not run rde_shutdown() unless bgpd is started with -d. | Claudio Jeker | |
On some of my systems rde_shutdown() takes more than 3min doing nothing more than calling free(3) over and over again. | |||
2007-01-04 | use the right variable when finding a ports register window, not one that | David Gwynne | |
contains random garbage on the stack. | |||
2007-01-04 | stash the dva for each command in the ccb, and program the hardware with | David Gwynne | |
the dva of the rfis and command list. | |||
2007-01-04 | actually echo what's being executed; ok espie@ | Otto Moerbeek | |
2007-01-04 | fix up some port regs so their names are more in line with what is in the | David Gwynne | |
spec. | |||
2007-01-04 | allocate the dmamem that each port will need, and hopefully point our | David Gwynne | |
structs at all the right bits of it. the dma addresses arent taken care of yet, just the kva ones. | |||
2007-01-04 | use ISSET instead of &, cos it looks cleaner | David Gwynne | |
2007-01-04 | Revert 1.11 and load .shstrtab, as it is currently needed for /dev/ksyms | Miod Vallat | |
proper operation. | |||
2007-01-03 | In sk_marv_miibus_writereg, wait for busy flag to clear instead of | Mark Kettenis | |
continuing when busy flag set. | |||
2007-01-03 | make sure remove -f also works in remote setup | Joris Vink | |
2007-01-03 | add support for 'remove' in a remote setup. | Joris Vink | |
testing appriciated, as always. | |||
2007-01-03 | shorten dmesg a bit | Martin Reindl | |
2007-01-03 | revert changes made in 1.40 - it breaks add in a remote setup | Joris Vink | |
because opencvs server does not support 'wrapper-sendme-rcsOptions' for the moment. | |||
2007-01-03 | if we are commiting a file, do not let the server resend it | Joris Vink | |
with an 'Updated' response, seeing as the client will already have the latest version. Instead, send the correct 'Checked-in' response. | |||
2007-01-03 | Fix format string misuse in kssl_err_set(), which is not | Moritz Jodeit | |
called with user-supplied strings at the moment. ok markus@ | |||
2007-01-03 | Missing Xr in It | Miod Vallat | |
2007-01-03 | Fix format string bugs by using strlcpy() instead of | Moritz Jodeit | |
snprintf() and fix truncation checks. ok miod@ deraadt@ | |||
2007-01-03 | fix CVS_CLIENT_LOG logging, we were missing parts | Joris Vink | |
which was making it very hard to correctly debug remote connections. | |||
2007-01-03 | Fix mbg comment: time base -> radio clocks. | Marc Balmer | |
2007-01-03 | Missing 'T' in interactive command list. From Mark Lumsden. | Otto Moerbeek | |
2007-01-03 | Add a 'g' command to only show processes having a string in their | Otto Moerbeek | |
command name. ok deraadt@ | |||
2007-01-03 | After the firmware has been loaded to the chip, read the exact firmware | Marcus Glocker | |
revision from the chip and print it in a debug line. Verify that the firmware has the right revision for us. | |||
2007-01-03 | Bump firmware package; The previous firmware revision was to new for | Marcus Glocker | |
the "specs" we are using to write the driver. Therefore done a small downgrade (reduces firmware about two files). | |||
2007-01-03 | Sync with reality. m_tag_free() and m_tag_unlink() where removed and | Claudio Jeker | |
m_tag_delete_chain() was a simplified. OK dhartmei@ | |||
2007-01-03 | Remove two "unused" mbuf tag functions and kill the superfluous argument | Claudio Jeker | |
to the m_tag_delete_chain() function. m_tag_free() and m_tag_unlink() are only used by m_tag_delete() and I see no need to have these functions around. m_tag_delete_chain() has a second argument to specifiy a starting point from where the chain should be deleted. This feature is never used and is more complex because it is not possible to remove a SLIST element without doing a list walk. Instead use SLIST_FIRST() and SLIST_REMOVE_HEAD() to remove all items from the list. OK dhartmei@ | |||
2007-01-03 | M_DUP_PKTHDR() cleanup. On static mbufs M_DUP_PKTHDR() will leak mbuf tags. | Claudio Jeker | |
See similar commit to dev/usb/if_rum.c for more info. With this commit all drivers have been switched away from the incorrect M_DUP_PKTHDR() usage. OK mglocker@ | |||
2007-01-03 | M_DUP_PKTHDR() cleanup. On static buffers M_DUP_PKTHDR() will leak mbuf tags. | Claudio Jeker | |
See similar rum(4) commit for more info. OK mglocker@ | |||
2007-01-03 | fix bug that sorted the groups and thus broke ottos group file: | Simon Bertrang | |
* stop sorting the group file * push the empty YP group to the end * leave other group entries where they are input & ok ray@, tested & ok otto@ | |||
2007-01-03 | Limit fscanf. From Ulf Harnhammar (metaur at telia dot com) | Bjorn Sandell | |
2007-01-03 | Rename bcw_shm_write_4() to bcw_shm_ctl_word(). We need the original | Marcus Glocker | |
name space for the new routines. | |||
2007-01-03 | bring back cvs_yesno() as is it going to be used pretty soon now. | Xavier Santolaria | |
2007-01-03 | also bail if sc_chipc is NULL; spotted by miod | Theo de Raadt | |
2007-01-03 | mbg(4) cards with ASIC take the internal timestamp at the very moment the | Marc Balmer | |
first command byte is written to the card over the pci bus. the driver has to capture this moment to get a precise timedelta. so make sure the code fragment that takes the internal timestamp and sends the command byte can not be interrupted. this function is called with a low frequency (currently 0.1 Hz). ok claudio, mglocker | |||
2007-01-03 | Support for continuous reading of syslog memory buffers. | Marco Pfatschbacher | |
Works like ``tail -f'' on a log file. OK markus@, djm@ | |||
2007-01-03 | manual page should not mention options which are not yet implemented. | Niall O'Higgins | |
pointed out by Igor Sobrado <igor at string1.ciencias.uniovi.es> discussed with xsa@ ray@ jmc@ | |||
2007-01-03 | do not print secret keys by default, -k restores old behaviour; ok hshoexer | Markus Friedl | |
2007-01-03 | Don't say 'Marvell' twice for each sk/msk device in dmesg. No functional | Kenneth R Westerback | |
change. from brad@ ok mglocker@ | |||
2007-01-03 | Pretty printing of debug messages. | Marcus Glocker | |
2007-01-03 | Don't wrap line before printing MAC address. | Marcus Glocker | |
2007-01-03 | set permissions back on the file after it got copied from the | Xavier Santolaria | |
CVS/Base/ directory. | |||
2007-01-03 | spacing | Reyk Floeter | |
2007-01-03 | allow the sticky-address option for round-robin pools. | Reyk Floeter | |
From Pierre-Yves Ritschard (pyr at spootnik dot org) | |||
2007-01-03 | spaces | Kevin Steves | |
2007-01-03 | Change IF_DEQUEUE to IFQ_DEQUEUE for ALTQ, and some purely cosmetic | Gordon Willem Klok | |
0 -> NULL fixes. From brad@ Tested on PM 9600MP. | |||
2007-01-03 | Avoid mixing of u_int* and uint* in the same code. uint* wins. | Marcus Glocker | |