| Commit message (Expand) | Author | Age | Files | Lines |
* | Pass the file->flags down to geom ioctl handlers. | phk | 2004-12-12 | 1 | -2/+2 |
* | Tag all geom classes in the tree with a version number. | phk | 2004-08-08 | 1 | -0/+1 |
* | Use default method initialization on geoms. | phk | 2004-08-08 | 1 | -4/+7 |
* | Fix regression in last commit. | phk | 2004-06-29 | 1 | -1/+1 |
* | Make sure to kill the devstat entry for disappearing disks. | phk | 2004-06-27 | 1 | -1/+3 |
* | Zap a redundant NULL | phk | 2004-05-30 | 1 | -1/+1 |
* | Dont try to finish devstat's if the disk pointer is NULL, this can happen | sos | 2004-05-11 | 1 | -2/+2 |
* | Change the disk(9) API in order to make device removal more robust. | phk | 2004-02-18 | 1 | -23/+31 |
* | don't call sbuf_clear() right after sbuf_new(), it is not necessary. | phk | 2004-02-10 | 1 | -1/+0 |
* | Allow decreasing access count even if there is no disk anymore. | pjd | 2004-02-06 | 1 | -3/+11 |
* | Remove no longer necessary debug printfs | phk | 2004-01-23 | 1 | -6/+0 |
* | Correct usage of mtx_init() API. This is not a functional change since | truckman | 2003-12-07 | 1 | -1/+1 |
* | Retire bio_blkno entirely. | phk | 2003-10-18 | 1 | -1/+0 |
* | Return ENODEV in case the driver has no dump routine. | phk | 2003-09-29 | 1 | -0/+4 |
* | Be more careful in dumpconf: softc may be NULL for departing devices. | phk | 2003-09-23 | 1 | -3/+6 |
* | Simplify the ioctl handling in GEOM. | phk | 2003-09-01 | 1 | -10/+20 |
* | Try to close the race between disk_destroy() and a subsequent disk_create(). | phk | 2003-09-01 | 1 | -19/+17 |
* | Use __FBSDID(). | obrien | 2003-06-11 | 1 | -2/+3 |
* | Introduce a init and fini member functions on a class. | phk | 2003-05-31 | 1 | -5/+14 |
* | Remove the G_CLASS_INITIALIZER, we do not need it anymore. | phk | 2003-05-31 | 1 | -1/+0 |
* | Don't do silly thing if the disk_create() event gets canceled. | phk | 2003-05-25 | 1 | -1/+3 |
* | Return ENXIO if the softc pointer is NULL, in all likelyhood the | phk | 2003-05-21 | 1 | -0/+4 |
* | When a disk disappears, destroy the class from the event thread | phk | 2003-05-12 | 1 | -1/+10 |
* | Use g_wither_geom() for cleanup. | phk | 2003-05-02 | 1 | -2/+1 |
* | Introduce a g_waitfor_event() function which posts an event and waits for | phk | 2003-04-23 | 1 | -5/+1 |
* | Rename g_call_me() to g_post_event(), and give it a flag | phk | 2003-04-23 | 1 | -5/+4 |
* | Remove all references to BIO_SETATTR. We will not be using it. | phk | 2003-04-03 | 1 | -3/+0 |
* | Add handling for cancelled events in the g_call_me() methods. | phk | 2003-04-02 | 1 | -2/+15 |
* | Change events to have an array of "void *" references, and give the | phk | 2003-04-02 | 1 | -4/+4 |
* | Include <geom/geom_disk.h> not <sys/disk.h> | phk | 2003-04-01 | 1 | -1/+1 |
* | Check return value of g_call_me() | phk | 2003-03-27 | 1 | -4/+5 |
* | Premptively change initializations of struct g_class to use C99 | phk | 2003-03-24 | 1 | -3/+1 |
* | Mitigate deadlock situation pending a more complete solution. | phk | 2003-03-21 | 1 | -1/+3 |
* | Including <sys/stdint.h> is (almost?) universally only to be able to use | phk | 2003-03-18 | 1 | -1/+0 |
* | Use devstat_{start,end}_transaction_bio(). | phk | 2003-03-15 | 1 | -10/+3 |
* | Allocate devstat structure with devstat_new_entry(). | phk | 2003-03-08 | 1 | -2/+1 |
* | Centralize the devstat handling for all GEOM disk device drivers | phk | 2003-03-08 | 1 | -1/+29 |
* | NO_GEOM cleanup: | phk | 2003-02-28 | 1 | -54/+10 |
* | NO_GEOM cleanup: | phk | 2003-02-21 | 1 | -2/+2 |
* | NO_GEOM cleanup: | phk | 2003-02-21 | 1 | -4/+2 |
* | Back out M_* changes, per decision of the TRB. | imp | 2003-02-19 | 1 | -1/+1 |
* | Correctly set bio_data in cloned children when cutting up large requests. | tegge | 2003-02-12 | 1 | -1/+1 |
* | Check disk->d_maxsize/dev->si_iosize_max at open time rather than in strategy. | phk | 2003-02-11 | 1 | -10/+7 |
* | Make a mutex to stop the race coming into geom_disk's done routine. | phk | 2003-02-11 | 1 | -25/+61 |
* | Better names for struct disk elements: d_maxsize, d_stripeoffset | phk | 2003-02-11 | 1 | -0/+2 |
* | Propagate DISKFLAG_CANDELETE from struct disk to G_PF_CANDELETE on the | phk | 2003-02-11 | 1 | -8/+11 |
* | Check return value of g_clone_bio(). | phk | 2003-02-06 | 1 | -0/+4 |
* | Experimentally don't let go of Giant in geom_disk's done. | phk | 2003-02-06 | 1 | -0/+5 |
* | Implement the new "struct disk" centered API for device drivers. | phk | 2003-02-05 | 1 | -12/+23 |
* | Pave the road to removing the fixed size limit on device nodes: | phk | 2003-02-04 | 1 | -0/+2 |