static void get_pdu_remap(struct blk_io_trace *t, struct blk_io_trace_remap *r)
{
struct blk_io_trace_remap *__r = pdu_start(t);
- __u64 sector = __r->sector;
+ __u64 sector_from = __r->sector_from;
- r->device = be32_to_cpu(__r->device);
r->device_from = be32_to_cpu(__r->device_from);
- r->sector = be64_to_cpu(sector);
+ r->device_to = be32_to_cpu(__r->device_to);
+ r->sector_from = be64_to_cpu(sector_from);
}
static void print_field(char *act, struct per_cpu_info *pci,
struct blk_io_trace *t, unsigned long long elapsed,
int pdu_len, unsigned char *pdu_buf)
{
- struct blk_io_trace_remap r = { .device = 0, };
+ struct blk_io_trace_remap r = { .device_from = 0, };
char rwbs[6];
char *name;
fill_rwbs(rwbs, t);
+ /*
+ * For remaps we have to modify the device using the remap structure
+ * passed up.
+ */
+ if (act[0] == 'A') {
+ get_pdu_remap(t, &r);
+ t->device = r.device_to;
+ }
+
/*
* The header is always the same
*/
- if (act[0] == 'A') { /* Remap */
- get_pdu_remap(t, &r);
- t->device = r.device_from;
- }
-
fprintf(ofp, "%3d,%-3d %2d %8d %5d.%09lu %5u %2s %3s ",
MAJOR(t->device), MINOR(t->device), pci->cpu, t->sequence,
(int) SECONDS(t->time), (unsigned long) NANO_SECONDS(t->time),
break;
case 'A': /* remap */
+ get_pdu_remap(t, &r);
fprintf(ofp, "%llu + %u <- (%d,%d) %llu\n",
(unsigned long long) t->sector, t_sec(t),
- MAJOR(r.device), MINOR(r.device),
- (unsigned long long) r.sector);
+ MAJOR(r.device_from), MINOR(r.device_from),
+ (unsigned long long) r.sector_from);
break;
case 'X': /* Split */
static inline void cvt_pdu_remap(struct blk_io_trace_remap *rp)
{
- rp->device = be32_to_cpu(rp->device);
rp->device_from = be32_to_cpu(rp->device_from);
- rp->sector = be64_to_cpu(rp->sector);
+ rp->device_to = be32_to_cpu(rp->device_to);
+ rp->sector_from = be64_to_cpu(rp->sector_from);
}
/*
rp = a_iop->pdu;
cvt_pdu_remap(rp);
- a_iop->t.device = rp->device_from;
if (!io_setup(a_iop, IOP_A))
goto out;
- q_dip = __dip_find(rp->device);
+ q_dip = __dip_find(rp->device_from);
if (!q_dip)
goto out;
- q_iop = dip_find_sec(q_dip, IOP_Q, rp->sector);
+ q_iop = dip_find_sec(q_dip, IOP_Q, rp->sector_from);
if (q_iop)
update_q2a(q_iop, tdelta(q_iop->t.time, a_iop->t.time));