Lines Matching refs:q_iop
25 struct io *q_iop; in handle_g() local
29 q_iop = dip_find_sec(g_iop->dip, IOP_Q, g_iop->t.sector); in handle_g()
30 if (q_iop) { in handle_g()
31 q_iop->g_time = g_iop->t.time; in handle_g()
32 update_q2g(q_iop, tdelta(q_iop->t.time, g_iop->t.time)); in handle_g()
33 if (q_iop->s_time != 0) in handle_g()
34 update_s2g(q_iop, tdelta(q_iop->s_time, g_iop->t.time)); in handle_g()
40 struct io *q_iop = dip_find_sec(s_iop->dip, IOP_Q, s_iop->t.sector); in handle_s() local
42 if (q_iop) in handle_s()
43 q_iop->s_time = s_iop->t.time; in handle_s()
48 struct io *q_iop = dip_find_sec(i_iop->dip, IOP_Q, i_iop->t.sector); in handle_i() local
50 if (q_iop) { in handle_i()
51 q_iop->i_time = i_iop->t.time; in handle_i()
52 if (q_iop->g_time != (__u64)-1) in handle_i()
53 update_g2i(q_iop, tdelta(q_iop->g_time, i_iop->t.time)); in handle_i()
59 struct io *q_iop; in handle_m() local
63 q_iop = dip_find_sec(m_iop->dip, IOP_Q, m_iop->t.sector); in handle_m()
64 if (q_iop) { in handle_m()
65 q_iop->m_time = m_iop->t.time; in handle_m()
66 update_q2m(q_iop, tdelta(q_iop->t.time, m_iop->t.time)); in handle_m()