Home
last modified time | relevance | path

Searched refs:mu_datasize (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/usr.sbin/mlxctl/
H A Dutil.c100 mu.mu_datasize = sizeof(*enq); in mlx_enquiry()
116 mu.mu_datasize = sizeof(meo); in mlx_enquiry()
138 mu.mu_datasize = sizeof(*cfg); in mlx_configuration()
154 mu.mu_datasize = sizeof(*pd); in mlx_get_device_state()
180 mu.mu_datasize = sizeof(dcdb_cmd); in mlx_scsi_inquiry()
/netbsd-src/sys/dev/ic/
H A Dmlx.c1744 if (mu->mu_datasize > 0) { in mlx_user_command()
1745 if (mu->mu_datasize > MAXPHYS) in mlx_user_command()
1748 kbuf = malloc(mu->mu_datasize, M_DEVBUF, M_WAITOK); in mlx_user_command()
1756 rv = copyin(mu->mu_buf, kbuf, mu->mu_datasize); in mlx_user_command()
1765 rv = mlx_ccb_map(mlx, mc, kbuf, mu->mu_datasize, mu->mu_bufdir); in mlx_user_command()
1793 if (mu->mu_datasize > 0) { in mlx_user_command()
1825 if (mu->mu_datasize > 0 && (mu->mu_bufdir & MU_XFER_IN) != 0) { in mlx_user_command()
1826 rv = copyout(kbuf, mu->mu_buf, mu->mu_datasize); in mlx_user_command()
H A Dmlxio.h62 size_t mu_datasize; /* size of buffer */ member