Home
last modified time | relevance | path

Searched refs:pd_disk (Results 1 – 2 of 2) sorted by relevance

/freebsd/sys/dev/mfi/
H A Dmfi_syspd.c127 sc->pd_disk = disk_alloc(); in mfi_syspd_attach()
128 sc->pd_disk->d_drv1 = sc; in mfi_syspd_attach()
129 sc->pd_disk->d_maxsize = min(sc->pd_controller->mfi_max_io * secsize, in mfi_syspd_attach()
131 sc->pd_disk->d_name = "mfisyspd"; in mfi_syspd_attach()
132 sc->pd_disk->d_open = mfi_syspd_open; in mfi_syspd_attach()
133 sc->pd_disk->d_close = mfi_syspd_close; in mfi_syspd_attach()
134 sc->pd_disk->d_strategy = mfi_syspd_strategy; in mfi_syspd_attach()
135 sc->pd_disk->d_dump = mfi_syspd_dump; in mfi_syspd_attach()
136 sc->pd_disk->d_unit = sc->pd_unit; in mfi_syspd_attach()
137 sc->pd_disk->d_sectorsize = secsize; in mfi_syspd_attach()
[all …]
H A Dmfivar.h158 struct disk *pd_disk; member