| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | The argument to the DIOCGMEDIASIZE ioctl() is an off_t, not an u_int. | tmm | 2002-10-19 | 1 | -1/+1 |
* | Be consistent and return the NUL at the end of kern.geom.conf{xml,dot}. | phk | 2002-10-17 | 1 | -2/+2 |
* | NUL terminate sysctl kern.disks | phk | 2002-10-17 | 1 | -1/+1 |
* | Return an error if the drive reports heads/sectors that do not make sense. | njl | 2002-10-15 | 1 | -0/+8 |
* | Constification ? Yes, out that door, row on the left, one patch each. | phk | 2002-10-15 | 2 | -10/+10 |
* | Remove a bogus local variable. | phk | 2002-10-14 | 1 | -2/+0 |
* | Moved geom class initialization to SI_SUB_DRIVERS from SI_SUB_PSEUDO. | jake | 2002-10-14 | 1 | -1/+1 |
* | Implement the GEOMCONFIGGEOM ioctl which can be used to manually create | phk | 2002-10-14 | 3 | -41/+168 |
* | Add more KASSERTS. | phk | 2002-10-14 | 2 | -2/+8 |
* | Add the outline of the "/dev/geom.ctl" handling code. | phk | 2002-10-13 | 2 | -1/+201 |
* | Give GEOM modules a chance to specify their own init routine, in case they | phk | 2002-10-13 | 1 | -1/+4 |
* | The CAM system has it's own ideas of what locks are to be held by whom. | phk | 2002-10-11 | 1 | -19/+24 |
* | Add support g_clone_bio() and g_std_done() to spawn multiple children | phk | 2002-10-09 | 2 | -4/+7 |
* | For now, don't wait for drives to stop returning EBUSY. There is too | phk | 2002-10-08 | 1 | -35/+26 |
* | Correctly deal with non-DEVBSIZE drives. | phk | 2002-10-07 | 1 | -4/+9 |
* | Put a printf under #ifdef DIAGNOSTIC. | phk | 2002-10-07 | 1 | -0/+2 |
* | Copyin and copyout are only possible from a process-native thread, | phk | 2002-10-07 | 3 | -42/+25 |
* | This patch got lost in my trees: Pass setattr down to device drivers | phk | 2002-10-05 | 1 | -0/+8 |
* | Fix argument order mistake when decoding disklabels from on-disk format. | phk | 2002-10-05 | 1 | -1/+1 |
* | NB: This commit does *NOT* make GEOM the default in FreeBSD | phk | 2002-10-05 | 1 | -9/+5 |
* | Properly isolate the locking domains of sysctl from the topology lock | phk | 2002-10-04 | 4 | -34/+44 |
* | Implement the "kern.disks" sysctl in GEOM. | phk | 2002-10-04 | 1 | -1/+38 |
* | Properly conditionalize a debugging printf. | phk | 2002-10-04 | 1 | -1/+4 |
* | Move GEOM's sysctls under kern.geom. | phk | 2002-10-02 | 1 | -9/+11 |
* | Put some failing ioctl related printfs under a suitable debug flag. | phk | 2002-10-02 | 1 | -12/+14 |
* | Use the canonical root:operator 0640 for GEOM disk devices. | phk | 2002-10-01 | 1 | -1/+1 |
* | Don't restrict device drivers ability to sleep in the ioctl method, this | phk | 2002-10-01 | 1 | -5/+22 |
* | Include <sys/diskmbr.h> instead of <sys/disklabel.h> | phk | 2002-10-01 | 1 | -1/+1 |
* | Don the asbestos underwear and add the code which lets DIOCWDINFO | phk | 2002-09-30 | 1 | -7/+23 |
* | Retire g_io_fail() and let g_io_deliver() take an error argument instead. | phk | 2002-09-30 | 8 | -61/+43 |
* | Introduce g_write_data() function. | phk | 2002-09-30 | 2 | -0/+19 |
* | Add missing g_enc_le2(). | phk | 2002-09-30 | 2 | -0/+9 |
* | Disable the g_sanity() check unless people ask for it in the debugflags. | phk | 2002-09-30 | 2 | -0/+6 |
* | Make sure we don't loose our topology lock in a call_me() handler. | phk | 2002-09-30 | 1 | -0/+1 |
* | Zero the local-variable mutexes before we call mtx_init() on them, | phk | 2002-09-28 | 1 | -0/+2 |
* | Style, whitespace and lint fixes. | phk | 2002-09-28 | 11 | -77/+75 |
* | Void functions cannot use return(foo) even if foo is also returning void. | phk | 2002-09-28 | 1 | -14/+28 |
* | First confirmed kill from my Flexelint license: Check return value | phk | 2002-09-28 | 1 | -0/+4 |
* | Extensively rework the geom_bsd method, put a lot of comments in, betting | phk | 2002-09-27 | 1 | -104/+424 |
* | Add the new g_slice_config() call, which can add/delete/change a slice, | phk | 2002-09-27 | 8 | -5/+84 |
* | Make the UP/DOWN threads hold on to their own private mutex while doing | phk | 2002-09-27 | 1 | -2/+26 |
* | Correctly en/decode MAXPARTITIONS partitions. | phk | 2002-09-27 | 1 | -16/+8 |
* | Setattr should not retry on EBUSY, we could get EBUSY back because | phk | 2002-09-27 | 1 | -14/+15 |
* | Various no-ops: | phk | 2002-09-27 | 4 | -11/+5 |
* | Correctly calculate size of PC98 slices. | phk | 2002-09-27 | 1 | -1/+1 |
* | Allocate bio's with M_NOWAIT and let the caller deal with the problems. | phk | 2002-09-27 | 1 | -7/+9 |
* | Add checks for g_clone_bio() returning NULL, it will be possible RSN. | phk | 2002-09-27 | 2 | -1/+18 |
* | Implement g_call_me() as a way for geom methods to schedule operations | phk | 2002-09-27 | 3 | -1/+36 |
* | Ok, include also the two tests which actually does effect the claims | phk | 2002-09-27 | 1 | -0/+4 |
* | Hook into the shutdown EVENTHANDLER and stop tasting things after we | phk | 2002-09-27 | 1 | -0/+16 |