Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-11-02 | Add IPv6 support for the address and prefix parser. OK henning@ | Claudio Jeker | |
2005-11-02 | print RCS file path; | Xavier Santolaria | |
2005-11-02 | Use the new rde_filter_equal() with dir = DIR_OUT to check if a soft- | Claudio Jeker | |
reconfigure out run is needed or not. If the output filters did not change no table walk is needed. | |||
2005-11-02 | Implement filterset_equal() and rde_filter_equal(). Both return 1 if | Claudio Jeker | |
the two passed filter(set)s are equal or 0 otherwise. rde_filter_equal() has an additional argument dir to specify which direction should be considered. | |||
2005-11-02 | - sort options and sync usage() | Jason McIntyre | |
- new sentence, new line - a few other minor tweaks | |||
2005-11-02 | sync with Reality; | Xavier Santolaria | |
2005-11-02 | sync with Reality; | Xavier Santolaria | |
2005-11-02 | It is invalid to scsi_done(xs) and then return TRY_AGAIN_LATER. | Kenneth R Westerback | |
scsi_done() can release the scsi_request xs and TRY_AGAIN_LATER will refer to it and submit it for re-execution. This was being done only if bus_dmamap_load() failed. Ensure the controller resources are freed before returning TRY_AGAIN_LATER, since new resources will be allocated when the command is executed again. Don't bother setting xs->error before returning TRY_AGAIN_LATER as the code returned to sets xs->error to XS_BUSY. ok marco@ | |||
2005-11-02 | sync mbuf before unloading in gem_rxdrain(). | Brad Smith | |
From NetBSD | |||
2005-11-02 | - unmap resources allocated by pci_mapreg_map() on failure to attach | Brad Smith | |
- fixup PCI interrupt string printing and surrounding code to be more consistent with other drivers | |||
2005-11-02 | Abstract delay code out and call it directly from XX_interpret_sense. | Kenneth R Westerback | |
Makes the logic simpler by eliminating the XS_BUSY dance in xs->error, and will allow individual device types to delay different lengths on certain conditions. Allow SCSI_NOSLEEP commands to be retried without waiting. Who knows, they may work even without a delay. ok marco@ | |||
2005-11-02 | handle TX underrun and packet too long errors by resetting the chip. | Brad Smith | |
From NetBSD ok krw@ | |||
2005-11-01 | Sort filter_set with equal type as well. This affects community | Claudio Jeker | |
attributes and set nexthop. Now the full filter set list is sorted. | |||
2005-11-01 | remove Mach macros, they were unused anyway | Martin Reindl | |
2005-11-01 | wsmoused works on amd64 too; carvalholatas@gmail.com | Theo de Raadt | |
2005-11-01 | a bit of rewording; with input from jmc@. | Federico G. Schwindt | |
2005-11-01 | - `-p' option has been implemented for a while, but not documented fully in | Niall O'Higgins | |
the manual page -> document it. | |||
2005-11-01 | Relative metrics should be stored in relative and not metric. The one | Claudio Jeker | |
is singed the other not. | |||
2005-11-01 | Make sure, that the list of filter_sets is ordered. Makes comparing easier. | Claudio Jeker | |
2005-11-01 | Add -P option. This shows the pkgpath for each package. Nice for building | Bernd Ahlers | |
subdirlists. Document new option. "commit" espie@ | |||
2005-11-01 | Softreconfig out support. On config reload filter changes of outgoing rules | Claudio Jeker | |
will propagte directly to the neighbors. There is no need to restart bgpd in that case. Currently not optimal but a good start. "get it in" henning@ | |||
2005-11-01 | Major cleanup in rde_update.c. Merge equal code used in different places | Claudio Jeker | |
into own functions. Move up_dump_upcall() into rde.c and rename it rde_up_dump_upcall(). This is needed for the next step. up_test_update() tests if an update or withdraw is needed and up_generate() creates the updates. "get it in" henning@ (he is eager on softreconfig out) | |||
2005-11-01 | In uvm_swapout(), protect "p->p_swtime = 0;" with SCHED_LOCK() as is already | Aaron Campbell | |
done in uvm_swapin(). Looks like this was a mistake made while editing. No response from art@. deraadt@, miod@, pedro@ ok | |||
2005-11-01 | document show-required-by | Marc Espie | |
2005-11-01 | Switch from the per peer filter set list to a filter-only solution. | Claudio Jeker | |
The default filter_sets are converted into match filter rules that get evaluated first. Simplifies code massively -- mainly the config reload part -- and makes softreconfig out a piece of cake. "get it in" henning@ | |||
2005-11-01 | clarify the section on trunk protocols; | Jason McIntyre | |
after a mail to misc@ from gustavos rios; ok reyk@ | |||
2005-11-01 | Xr smg(4) in SEE ALSO; | Jason McIntyre | |
2005-11-01 | missing freeaddrinfo(); maticd@gmail.com | Theo de Raadt | |
2005-11-01 | these other drivers have nothing to do with vgafb | Theo de Raadt | |
2005-11-01 | lcd contains multiple screen support too; noted by sthen@spacehopper.org | Theo de Raadt | |
2005-11-01 | sync | Theo de Raadt | |
2005-11-01 | vgafb needs to be MI; noted by sthen@spacehopper.org | Theo de Raadt | |
2005-11-01 | Always sure that we have memory for the 'dst' scrub information, which may | Christopher Pascoe | |
not have been allocated at the initial state synchronisation time. ok henning@ | |||
2005-11-01 | spacing | Theo de Raadt | |
2005-11-01 | Remove the call to ieee80211_ifattach() for the moment as it | Jonathan Gray | |
makes wi prematurely depend on net80211 code which bloats the ramdisks. ok dlg@ | |||
2005-10-31 | - some DEBUG should be GEM_DEBUG | Brad Smith | |
- introduce gem_bitwait() to factor out some of the register wait code From NetBSD - remove some statics - remove parameter names from prototypes ok kettenis@ | |||
2005-10-31 | - remove MLINKS line, was commented out and is useless anyway. | Niall O'Higgins | |
pointed out by deraadt@, ok joris@ | |||
2005-10-31 | - Prefix MUTEX_TYPE_MAX with PTHREAD_ to avoid namespace pollution. | Brad Smith | |
- Remove the macros MUTEX_TYPE_FAST and MUTEX_TYPE_COUNTING_FAST. From stefanf FreeBSD ok fgsch@ | |||
2005-10-31 | Fix reading large files; from NetBSD. Somehow this was overlooked | Otto Moerbeek | |
when earlier merges were done. Fixes PR 4250. ok millert@ deraadt@ | |||
2005-10-31 | add copyright from the original FreeBSD man page. | Brad Smith | |
2005-10-31 | grammar; | Jason McIntyre | |
2005-10-31 | keep the hardware list in order; | Jason McIntyre | |
2005-10-31 | clean up the COMPILING A KERNEL section: | Jason McIntyre | |
in particular, show `make depend' as the norm. started by a diff from mpech@; ok otto@ millert@ | |||
2005-10-31 | jsg forgot to specify that wi(4) now needs wlan option; ok miod | Theo de Raadt | |
2005-10-31 | ammount -> amount | Miod Vallat | |
2005-10-31 | typo | Brad Smith | |
2005-10-31 | Missing space in printf for unknown peers. | Claudio Jeker | |
2005-10-31 | Print group names in rules in double quotes. Makes the output more parsable. | Claudio Jeker | |
2005-10-31 | mention i82559S | Brad Smith | |
2005-10-31 | sync | Theo de Raadt | |