Remove owner field from struct cam_ed, unused at least since FreeBSD 7.

This commit is contained in:
Alexander Motin 2013-04-14 10:14:26 +00:00
parent e5dfa058da
commit d442caf633
2 changed files with 0 additions and 2 deletions

View File

@ -4428,7 +4428,6 @@ xpt_alloc_device(struct cam_eb *bus, struct cam_et *target, lun_id_t lun_id)
SLIST_INIT(&device->asyncs);
SLIST_INIT(&device->periphs);
device->generation = 0;
device->owner = NULL;
device->flags = CAM_DEV_UNCONFIGURED;
device->tag_delay_count = 0;
device->tag_saved_openings = 0;

View File

@ -83,7 +83,6 @@ struct cam_ed {
struct async_list asyncs; /* Async callback info for this B/T/L */
struct periph_list periphs; /* All attached devices */
u_int generation; /* Generation number */
struct cam_periph *owner; /* Peripheral driver's ownership tag */
void *quirk; /* Oddities about this device */
u_int maxtags;
u_int mintags;