From: Keir Fraser Date: Mon, 8 Sep 2008 14:50:33 +0000 (+0100) Subject: xentrace 2/7: Lost-records record includes currently running vcpu, X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~14111^2~31 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=5c55dc3c8b018f4c2bbc5626e8fd84b2fcf27a73;p=xen.git xentrace 2/7: Lost-records record includes currently running vcpu, and tsc of first lost record. Including the current vcpu helps us identify who's currently running on each processor, even if we've lost records. The tsc of the first lost record helps us identify how much time we've spent lost, and also when a pcpu started experiencing lost records. Signed-off-by: George Dunlap Signed-off-by: Trolle Selander --- diff --git a/xen/common/trace.c b/xen/common/trace.c index 6275f10e27..3a0b25cc29 100644 --- a/xen/common/trace.c +++ b/xen/common/trace.c @@ -58,6 +58,7 @@ static int t_buf_highwater; /* Number of records lost due to per-CPU trace buffer being full. */ static DEFINE_PER_CPU(unsigned long, lost_records); +static DEFINE_PER_CPU(unsigned long, lost_records_first_tsc); /* a flag recording whether initialization has been done */ /* or more properly, if the tbuf subsystem is enabled right now */ @@ -354,22 +355,27 @@ static inline int insert_wrap_record(struct t_buf *buf, int size) NULL); } -#define LOST_REC_SIZE 8 +#define LOST_REC_SIZE (4 + 8 + 16) /* header + tsc + sizeof(struct ed) */ static inline int insert_lost_records(struct t_buf *buf) { struct { u32 lost_records; - } ed; + u32 did:16, vid:16; + u64 first_tsc; + } __attribute__((packed)) ed; + ed.vid = current->vcpu_id; + ed.did = current->domain->domain_id; ed.lost_records = this_cpu(lost_records); + ed.first_tsc = this_cpu(lost_records_first_tsc); this_cpu(lost_records) = 0; return __insert_record(buf, TRC_LOST_RECORDS, sizeof(ed), - 0 /* !cycles */, + 1 /* cycles */, LOST_REC_SIZE, (unsigned char *)&ed); } @@ -479,7 +485,8 @@ void __trace_var(u32 event, int cycles, int extra, unsigned char *extra_data) /* Do we have enough space for everything? */ if ( total_size > bytes_to_tail ) { - this_cpu(lost_records)++; + if ( ++this_cpu(lost_records) == 1 ) + this_cpu(lost_records_first_tsc)=(u64)get_cycles(); local_irq_restore(flags); return; }