taglinefilesource code
mtpos119include/linux/mtio.h#define  MTIOCPOS  _IOR('m', 3, struct mtpos)  /* get tape position */
mtpos1094kernel/blk_drv/scsi/st.cstruct mtpos mt_pos;
mtpos1142kernel/blk_drv/scsi/st.cif (((cmd_in & IOCSIZE_MASK) >> IOCSIZE_SHIFT) != sizeof(struct mtpos))
mtpos1149kernel/blk_drv/scsi/st.ci = verify_area(VERIFY_WRITE, (void *)arg, sizeof(struct mtpos));
mtpos1196kernel/blk_drv/scsi/st.cmemcpy_tofs((char *)arg, (char *) (&mt_pos), sizeof(struct mtpos));