Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-06-24 | Remove leading zeros of subpart of partition's blocksize so ksh does not | Tobias Stoeckmann | |
interpret it as octal, leading to error messages like "048" is not a number. ok krw | |||
2008-06-24 | Index: src/sbin/growfs/growfs.c | Igor Sobrado | |
=================================================================== RCS file: /cvs/src/sbin/growfs/growfs.c,v retrieving revision 1.23 diff -u -p -r1.23 growfs.c --- src/sbin/growfs/growfs.c 5 Oct 2007 13:56:14 -0000 1.23 +++ src/sbin/growfs/growfs.c 4 Jun 2008 10:10:32 -0000 @@ -2227,7 +2227,7 @@ usage(void) DBG_ENTER; - fprintf(stderr, "usage: growfs [-Ny] [-s size] special\n"); + fprintf(stderr, "usage: growfs [-Nqy] [-s size] special\n"); DBG_LEAVE; exit(1); | |||
2008-06-24 | sort flags in synopsis to match "usage:" and style(9) | Igor Sobrado | |
2008-06-24 | Thinkpad -> ThinkPad | Igor Sobrado | |
2008-06-24 | missing "usage:" | Igor Sobrado | |
2008-06-24 | regen | Brad Smith | |
2008-06-24 | - Rename the QuickCam Sphere AF to Orbit since the other Orbit MP | Brad Smith | |
entries also share the same id between Orbit MP and Sphere MP models. - Fix the naming of the second QuickCam Orbit MP entry. | |||
2008-06-24 | remove recalloc; sloppy me; ok deraadt@ | Otto Moerbeek | |
2008-06-23 | Some conformance fixes: | Anders Magnusson | |
- Empty brackets forbidden in C99. - ? : and skipping middle argument is both disallowed and considered bad programming habit. OK ray@, xsa@. | |||
2008-06-23 | Do not compile the ``kbd needs to be rebuilt'' test if -DNOKVM. Should shave | Miod Vallat | |
a few bytes off the installation media filesystems. | |||
2008-06-23 | trim SEE ALSO; | Jason McIntyre | |
2008-06-23 | new sentence, new line; | Jason McIntyre | |
2008-06-23 | Don't bzero() the USB buffer before every xfer. This was just for debug | Marcus Glocker | |
purposes. | |||
2008-06-23 | amd64s bus_dma internals use a pointer to a lastaddr variable to keep | David Gwynne | |
track of where it was up to when building dmamaps. that lastaddr variable is not initialised every time you start to load a dmamap, so it was using random stack garbage as state when first writing the sg list. fortunately the way it was used meant it was extremely unlikely to cause a problem, but why allow even that possibility? this inits lastaddr to 0 in all the callers of load_buffer. ok miod@ | |||
2008-06-22 | Remove the QuickCam Pro 5000 from the quirks list now that there | Brad Smith | |
is a UVC driver. ok robert@ | |||
2008-06-22 | regen | Brad Smith | |
2008-06-22 | Add a few more QuickCam cams and touch up some of the existing entries. | Brad Smith | |
2008-06-22 | Update watchdog timer code from DragonFly. | Brad Smith | |
From sephe@DragonFly ok mglocker@ | |||
2008-06-22 | Automatically distinguish between CD-DA track and WAVE audio file writing them | av | |
in TAO mode. For WAVE files we should skip header. ok and comments by fgsch | |||
2008-06-22 | Like alpha, db_stack_dump() on mips and sh needs complete frame information | Miod Vallat | |
and can not work from a stack address only. Mention this and abort instead of printing a wrong trace. (prefer kern.splassert=3 to =2 on these platforms) | |||
2008-06-22 | If no frame gets queue for a certain time, return EINVAL to the userland | Marcus Glocker | |
application which will cause it to exit instead let it stuck forever. | |||
2008-06-22 | As discussed on ICB, do not invoke make with several targets to make | Antoine Jacoutot | |
sure nothing blows up ok krw@ espie@ jmc@ johan@ (who came up with the same diff) | |||
2008-06-22 | Enable the use of __attribute__ ((__nonnull__)) unconditionally under OpenBSD, | Miod Vallat | |
as has been done for the __sentinel__ attribute, since all toolchains support it. | |||
2008-06-22 | correct function names on some debug and panics. | Federico G. Schwindt | |
2008-06-22 | Replace MUSTEK_RETRIES, SCANJET_RETRIES and ST_RETRIES with SCSI_RETRIES, | Kenneth R Westerback | |
all defined to 4. Replace some magic number 4's with SCSI_RETRIES. Fix a few lines that were now too long. | |||
2008-06-22 | remove MALLOC and FREE macros, as they are no more used in the tree. | Charles Longeau | |
tested on non i386/amd64 archs by miod. ok miod@ | |||
2008-06-22 | One last forgotten FREE(). | Miod Vallat | |
2008-06-22 | Revert 1.203; it's not safe to blindly walk the tailq instead of the rbtree | Ryan Thomas McBride | |
for picking states to unlink as the tailq may contain unlinked states. | |||
2008-06-21 | print vendor and product in hexa on debug. | Federico G. Schwindt | |
2008-06-21 | print the correct function name. | Federico G. Schwindt | |
2008-06-21 | Oops. Forgot to actually change the retries in scsi_size() to SCSI_RETRIES. | Kenneth R Westerback | |
2008-06-21 | regen | Brad Smith | |
2008-06-21 | add Marvell Yukon PCI id for the 88E8040T chipset. | Brad Smith | |
From Linux sky2/Marvell sk98lin drivers. | |||
2008-06-21 | fgsch@ points out my last commit changed the retry limit for CD capacity | Kenneth R Westerback | |
commands. Bump limit back to the standard 4, and at the same time eliminate SDRETRIES and CDRETRIES (both defined to 4) in favour of a new define, SCSI_RETRIES, also defined to 4. | |||
2008-06-21 | Eliminate cd_size() and use scsi_size() + tweaked cd_get_params() | Kenneth R Westerback | |
instead. We do not make use of the PMI and RELADDR bits in the READ CAPACITY command, and thus there is no difference between cd and sd capacity handling. Brings cd and sd more into line, shrinks code and makes things easier to understand. Make types for blocksize and disksize consistant and MI. Make cdopen() as silent as sdopen(). ok marco@ | |||
2008-06-21 | add a hash table mechanism based upon hcreate(3) but one that allows | Joris Vink | |
us to maintain multiple hash tables concurrently. immediatly start using it to keep track of what directories we have already created and what CVS dirs we already created so we do not recreate them when we do not need to. we will be switching more internals to use this soon. rejoice for cheaper lookups. ok tobias@ | |||
2008-06-21 | rework collisionreport to allow some limited repair capabilities: | Marc Espie | |
assuming none of the files is registered, we can assume that the package registration fails, and then we remove the files, and install the package. Then we also walk installed packages to restore dependencies that would have been erased (this is fairly simple-minded and may fail in weird cases). | |||
2008-06-21 | introduce unlink operation with nice properties | Marc Espie | |
2008-06-21 | use autovivification | Marc Espie | |
2008-06-21 | Fix "-T expire"; clear pfra_fback on addresses before sending them back to | Ryan Thomas McBride | |
the kernel to be deleted. | |||
2008-06-21 | cleaning up, no functional changes | Martynas Venckus | |
- no support for National 32000, removing ns32000/national ifdefs maze - remove tahoe defs - ansify looks fine to millert@; who also noticed rint removal | |||
2008-06-21 | use optopt to get invalid flag, instead of return value of getopt, | Martynas Venckus | |
which is always '?'; ok djm@ | |||
2008-06-21 | unreac -> unreach; from Markus Lude | Jason McIntyre | |
2008-06-21 | fix probable cut and paste error when for the virtual QH link. | Federico G. Schwindt | |
from netbsd via dragonfly. pointed by theo. ok by many. | |||
2008-06-21 | Only do state key linking on the outbound path. | Ryan Thomas McBride | |
Fixes stateful filtering on enc0. Problem report, testing, and ok david@ | |||
2008-06-20 | Don't parse CVS/Root during import. | Tobias Stoeckmann | |
ok joris | |||
2008-06-20 | Another uchcom product found in the Linux driver. | Jonathan Gray | |
2008-06-20 | regen | Jonathan Gray | |
2008-06-20 | Another uchcom product found in the Linux driver. | Jonathan Gray | |
2008-06-20 | admin is only allowed on files which have an entry in CVS/Entries. | Tobias Stoeckmann | |
ok joris |