Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-03-15 | Check for cg_irotor and cg_frotor being negative, okay millert@ deraadt@ | Pedro Martelletto | |
2007-03-15 | Since p_flag is often manipulated in interrupts and without biglock | Artur Grabowski | |
it's a good idea to use atomic.h operations on it. This mechanic change updates all bit operations on p_flag to atomic_{set,clear}bits_int. Only exception is that P_OWEUPC is set by MI code before calling need_proftick and it's automatically cleared by ADDUPC. There's no reason for MD handling of that flag since everyone handles it the same way. kettenis@ ok | |||
2007-03-15 | regen | Jonathan Gray | |
2007-03-15 | commit the correct version this time | Jonathan Gray | |
2007-03-15 | Add a few different things found in submitted dmesgs. | Jonathan Gray | |
2007-03-15 | nfe can also be found paired with rgephy(4), ie in Gigabyte M61PM-S2 | Jonathan Gray | |
from a submitted dmesg. | |||
2007-03-15 | use warnx and not logerror in monitor, logerror is for the slave; | Damien Miller | |
ok henning@ while in lock | |||
2007-03-15 | s/orientated/oriented/, last instance of this in our tree | Chad Loder | |
2007-03-15 | s/oriented/orientated/ | Chad Loder | |
2007-03-15 | regen | Jonathan Gray | |
2007-03-15 | JMB368 has no SATA. | Jonathan Gray | |
2007-03-14 | Make SMU sensors and fan control work on PowerMac8,1. | Mark Kettenis | |
tested by Alastair Poole. | |||
2007-03-14 | Allow nmeaattach to start a sensor before starting ntpd. Many modern | Chris Kuethe | |
receivers can cold start in the time it takes the boot process to get close to starting ntpd. Even if the gps is not ready or the fix is not valid, at least the sensor has been created; ntpd won't have to wait a few minutes before scanning for the sensor. This makes using GPS as the sole source of time a bit easier. ok deraadt | |||
2007-03-14 | when using low prio MX trapping, ignore hosts connecting to the low prio | Bob Beck | |
mx for the first minute, to avoid problems if hosts legitimately try it after we are down. suggested by millert@ | |||
2007-03-14 | Don't delete grey entries when whitelisting. They expire anyway | Bob Beck | |
and this hides the evidence. Avoids a potential race when using -M traps where a retry comes in between deletion and whitelisting. ok millert@ | |||
2007-03-14 | do the adjustment of arbitrary 128 -> BLF_MAXUTILIZED in userland as well, | Alexander von Gernler | |
also discussed on tech@ a while ago. ok pedro@ tedu@ thib@ | |||
2007-03-14 | Clean up after miod. | Mark Kettenis | |
2007-03-14 | Check if there are still blocks left to be allocated _after_ we have | Pedro Martelletto | |
read in the bitmap (an operation that might cause us to sleep), and before committing to the allocation. Fixes PR 5230, okay krw@, millert@. | |||
2007-03-14 | We switched to aes cbc quite some time ago, so also use the correct | Hans-Joerg Hoexer | |
key sizes here, too. We now have to use 128 bit key instead of 160. Noticed by david@ | |||
2007-03-14 | Call ifp->if_start() at the end of the rx interrupt handling just in case | Claudio Jeker | |
ieee80211_input() enqueued a packet beforehand. malo(4) does not support hostap mode so this should not happen but perhaps mglocker@ gets it working someday. OK mglocker@ | |||
2007-03-14 | In HostAP mode, ieee80211_input() will enqueue packets in if_snd without | Claudio Jeker | |
calling if_start(). So call ifp->if_start() at the end of the RX interrupt function. This solves the porblem of getting dhcp leases from the AP if the network is quiet. OK mglocker@ | |||
2007-03-13 | Set the DN bit in the fpscr upon startup, to prevent faulting when loading | Miod Vallat | |
denormals. This is recommended by the manual, and is necessary for the gdb testsuite to pass; found by, discussed with, and ok kettenis@ (be sure to make includes before recompiling csu) | |||
2007-03-13 | Nuke __HAVE_OLD_DISKLABEL code, this was never defined anyway. | Miod Vallat | |
2007-03-13 | Add <machine/fpu.h> for upcoming userland changes. | Miod Vallat | |
2007-03-13 | Drop the second and third arguments to adb_op_sync, for they are not used; | Miod Vallat | |
while there, remove explicit global variable initializations to zero, and appease the gods by removing the most ludicrous spurious casts. No functional change (except for code shrinkage). | |||
2007-03-13 | Be more strict during probe, consider failures to get device description | Miod Vallat | |
and device status code fatal, and do not attach in these cases. | |||
2007-03-13 | When about to run X11 in 32 bpp mode, advertize correctly that we are | Miod Vallat | |
really using 24 bpp pixels on 32 bit boundaries. | |||
2007-03-13 | Reset psl to spl0 in cpu_fork(), so that kthreads start at spl0 and not | Miod Vallat | |
splhigh(); from NetBSD | |||
2007-03-13 | Don't bother checking for OLF binaries if option SMALL_KERNEL. | Miod Vallat | |
2007-03-13 | Move UKC later in the boot process, so that it can use malloc(). | Miod Vallat | |
2007-03-13 | It is safe to run tlb_exception() at the pre-fault ipl. | Miod Vallat | |
2007-03-13 | Add two more SFSR bits found on UltraSPARC-III cpus. | Mark Kettenis | |
2007-03-13 | Dangling include | Miod Vallat | |
2007-03-13 | Refactor & fix computation of offset for next partition. Now the | Otto Moerbeek | |
code is almost readable. Keep in mind that the starting offset is inclusive, but the ending offset is exclusive. I heard rumors that disklabel was misbehaving in some cases before, but espie@ was the only one to provide me with enough details to actually find the problem. ok millert@ tom@ | |||
2007-03-13 | Work around gcc optimization bug on sh (landisk). From otto@ | Todd C. Miller | |
2007-03-13 | Use separate buffers in fsort.c and msort.c. Fixes a problem with | Todd C. Miller | |
buffer corruptions for some very large files. Also fixes some TRECHEADER vs. RECHEADER mismatches. Back in after unlock. | |||
2007-03-13 | add W83627EHF | Jasper Lievisse Adriaanse | |
ok jmc@ | |||
2007-03-13 | add D-Link DGE-550T B1 | Jasper Lievisse Adriaanse | |
ok kettenis@ | |||
2007-03-13 | Don't call rtlabel_unref() twice on RTM_DELETE. kroute_remove() does it | Claudio Jeker | |
so don't unref before calling kroute_remove() or we end up with wrong reference counts. | |||
2007-03-13 | Same problem as in ospfd's kroute.c don't check rtm_tableid without verifying | Claudio Jeker | |
that rtm_type is one of RTM_ADD, RTM_CHANGE or RTM_DELETE. | |||
2007-03-13 | rtm_tableid is only valid for RTM_ADD, RTM_CHANGE and RTM_DELETE but not | Claudio Jeker | |
for stuff like RTM_IFINFO or RTM_IFANNOUNCE. So move check to a save location. Always check rtm_type before accessing some random value inside the route message. | |||
2007-03-13 | er,, no, we don't compile everything with -g | Henning Brauer | |
2007-03-13 | regen | Robert Nagy | |
2007-03-13 | Add ITM Touchscreen from Future Technology Devices | Robert Nagy | |
2007-03-13 | tlb shootdown in pmap_change_attrs was shooting the wrong va. | Artur Grabowski | |
"yes man" mickey@ (I think that meant 'ok'). | |||
2007-03-13 | typos in comments; ok millert@ | Kevin Steves | |
2007-03-13 | allow to specify the IP_TTL and IP_MINTTL options for the relays to | Reyk Floeter | |
support the Generalized TTL Security Mechanism (GTSM) according to RFC 3682. this is especially useful with inbound connections and a fixed distance to the backend servers. ok pyr@ | |||
2007-03-13 | we need a resid too | David Gwynne | |
2007-03-13 | add timeouts on ata_xfers | David Gwynne | |
2007-03-13 | Implement proper atomic.h for sparc64. | Artur Grabowski | |
ok kettenis@ |