Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-02-12 | sync | Henning Brauer | |
2007-02-12 | remsize must be signed to avoid wrapping around to some huge number. | Otto Moerbeek | |
Solves a case were fsck_ffs was causing a segv. If it didn't do that it would have mangled the filesystem later, very probably. Diff from FreeBSD; ok millert@ pedro@ | |||
2007-02-12 | detect truncation of block number, which can happen which trashed | Otto Moerbeek | |
inodes; ok pedro@ millert@ | |||
2007-02-12 | max partition letter is 'a' + MAXPARTITIONS - 1, not 'h'. ok (and | Otto Moerbeek | |
help) miod@ | |||
2007-02-12 | Reduce debug. | Dale Rahn | |
2007-02-12 | If SMAC is set in the correct register, it works much better, also set | Dale Rahn | |
the direction bit correctly. More cleanup. | |||
2007-02-12 | remove unused leftovers from openrcs; OK joris@. | Xavier Santolaria | |
2007-02-12 | Enable the AES acceleration. Won't be picked up for IPsec, since we | Tom Cosgrove | |
don't support the other required operations in the driver, but will be used by OpenSSL. ok deraadt@ | |||
2007-02-12 | rde_nbr_loading() may be called with area == NULL. Check for this condition | Claudio Jeker | |
and scan all available areas in that case -- the only case when this may happen is for self announced AS-ext LSA. This solves a crash when redistributed routes were removed shortly after startup. OK norby@ | |||
2007-02-12 | Fix some log_warn() messages. | Claudio Jeker | |
2007-02-12 | 4.1-beta | Henning Brauer | |
2007-02-12 | add the HP ProLiant NC360T PCI Express Dual Port Gigabit NIC (tested | Reyk Floeter | |
ok), the NC340T is a quad port NIC, and the NC7170/NC7170LP are dual port NICs. | |||
2007-02-12 | Let this compile with 'option DEBUG' again. | Tom Cosgrove | |
ok dim@ | |||
2007-02-12 | kill extra word; | Jason McIntyre | |
2007-02-12 | spacing | Pierre-Yves Ritschard | |
2007-02-12 | Don't need a 'return' just before exiting a function. | Kenneth R Westerback | |
2007-02-11 | sync | Peter Valchev | |
2007-02-11 | typo in comment | Martin Reindl | |
2007-02-11 | Add support for fiber on 88E8021/22. | Mark Kettenis | |
2007-02-11 | Remove now unused evcnt field from struct cpu_info. | Miod Vallat | |
2007-02-11 | Add support for fiber on the 88E1112 (88E8021/22 integrated PHY). | Mark Kettenis | |
2007-02-11 | Missed this one in MDFSTYPES/MDFSOPTS commit. | Kenneth R Westerback | |
2007-02-11 | Remove _KERNEL_OPT leftovers. | Miod Vallat | |
2007-02-11 | Nuke MDFSTYPE and MDFSOPTS, 'mount -t ...' and giving the user the | Kenneth R Westerback | |
option to choose a filesystem type when mounting a disk. Rely on the filesystem information provided by the disklabel. When there is only one usable partition on the selected disk, just mount it without bothering the user with a question. Ensure that msdos filesystems are mounted with '-s' so that the names of the install sets will be in lower case and thus visible to the script. msdos problems noted by Rodolfo Gouveia, who did a lot of testing and debugging. 'mount -t ...' silliness pointed out by deraadt@. | |||
2007-02-11 | Correct return value in read(2) syscall example. ok pedro | Alexander Bluhm | |
2007-02-11 | Rework the cache handling routines again. We now try to operate on the exact | Miod Vallat | |
address range we've been given, rounded to cache line boundaries, instead of being lazy and operating on pages as soon as the range was large enough. Also, since the ranges we'll be invoked for are reasonably small, it does not make sense to check for segment sizes - we're always smaller, really. While there, hardcode the size in cmmu_flush_data_cache(), which becomes cmmu_flush_data_page(), since it was always invoked for complete pages. | |||
2007-02-11 | Rework the i/o mapping logic so that it allows the 1:1 region to not go up to | Miod Vallat | |
the end of the address space; allows the A16D16 VME space to be mapped correctly again on MVME197. | |||
2007-02-11 | Shuffle code around so that optimization of the m88110_trap() return gets | Miod Vallat | |
computed correctly. | |||
2007-02-11 | Don't enable debug spam by default. | Jonathan Gray | |
2007-02-10 | Adjust for new/renamed DLink card & Marvell chips. Based on a diff by brad@. | Mark Kettenis | |
2007-02-10 | regen | Mark Kettenis | |
2007-02-10 | Add DLink DGE-550T B1. Reorganize Marvell Yukon entries & add a few missing | Mark Kettenis | |
ones. Based on a diff by brad@. | |||
2007-02-10 | Add preliminary support for Marvell Yukon-II Extreme chips. | Mark Kettenis | |
Based on a diff from brad@. | |||
2007-02-10 | Use right flow control autonegotiation bits for 1000baseX. | Mark Kettenis | |
2007-02-10 | Cleanup, kill dead code and unused arguments. Mostly stuff that is computed | Claudio Jeker | |
and passed around but never used. OK mglocker@ | |||
2007-02-10 | Remove entry for mx driver which was removed a bit over 7 years ago. | Jonathan Gray | |
2007-02-10 | Move HASH_BITS constant to if_skreg.h as SK_HASH_BITS. Remove unused | Kenneth R Westerback | |
code and an unnecessary comment, No functional change. From brad@. | |||
2007-02-10 | Add more chipset revision ids. | Kenneth R Westerback | |
From scottl via FreeBSD and brad@. | |||
2007-02-09 | document how signalling via `k' works, after some help from theo and miod; | Jason McIntyre | |
2007-02-09 | sync somewhat to the man page; | Jason McIntyre | |
started by a diff from Mark Lumsden | |||
2007-02-09 | sync | Miod Vallat | |
2007-02-09 | clean up the interactive commands list, mainly by showing | Jason McIntyre | |
the arguments these commands take; based on some improvements from Mark Lumsden | |||
2007-02-09 | fix a fd leak that happens whe checking multiple file systems and some | Otto Moerbeek | |
of them are clean. ok pedro@ millert@ | |||
2007-02-09 | Don't both reloading the CPL into %eax before pushing it onto the stack, | Tom Cosgrove | |
since it's already in %ebx. (And %eax is reloaded immediately after the push, so CPL not needed in %eax.) Saves one load every interrupt. ok dim@, gwk@ | |||
2007-02-09 | Fix off by one in blacklist memory allocation. From tdeval@ | Todd C. Miller | |
2007-02-09 | unbreak the symset function | Reyk Floeter | |
2007-02-09 | return on ECONNREFUSED so we don't fall through to 'result < | Kevin Steves | |
BOOTP_MIN_LEN' and display discarding message. ok henning@ claudio@ | |||
2007-02-09 | correctly skip invalid entries when using | Joris Vink | |
getdirentries(2). ok otto@ | |||
2007-02-09 | remove some commas to aid readability; ok jmc@ | Kevin Steves | |
2007-02-09 | The buffer passed to getdirentries() must be at least as large as | Todd C. Miller | |
the filesystem block size. Previously we used a constant (1024) rounded to the page size. Now we use the filesystem's block size, rounded up to the nearest page. |