Lines Matching full:mv
694 struct changer_move mv; in ch_ioctl() local
696 if (copy_from_user(&mv, argp, sizeof (mv))) in ch_ioctl()
699 if (0 != ch_checkrange(ch, mv.cm_fromtype, mv.cm_fromunit) || in ch_ioctl()
700 0 != ch_checkrange(ch, mv.cm_totype, mv.cm_tounit )) { in ch_ioctl()
707 ch->firsts[mv.cm_fromtype] + mv.cm_fromunit, in ch_ioctl()
708 ch->firsts[mv.cm_totype] + mv.cm_tounit, in ch_ioctl()
709 mv.cm_flags & CM_INVERT); in ch_ioctl()
716 struct changer_exchange mv; in ch_ioctl() local
718 if (copy_from_user(&mv, argp, sizeof (mv))) in ch_ioctl()
721 if (0 != ch_checkrange(ch, mv.ce_srctype, mv.ce_srcunit ) || in ch_ioctl()
722 0 != ch_checkrange(ch, mv.ce_fdsttype, mv.ce_fdstunit) || in ch_ioctl()
723 0 != ch_checkrange(ch, mv.ce_sdsttype, mv.ce_sdstunit)) { in ch_ioctl()
731 ch->firsts[mv.ce_srctype] + mv.ce_srcunit, in ch_ioctl()
732 ch->firsts[mv.ce_fdsttype] + mv.ce_fdstunit, in ch_ioctl()
733 ch->firsts[mv.ce_sdsttype] + mv.ce_sdstunit, in ch_ioctl()
734 mv.ce_flags & CE_INVERT1, mv.ce_flags & CE_INVERT2); in ch_ioctl()