Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 267782 | Differences between
and this patch

Collapse All | Expand All

(-)intel-gpu-tools-1.0-orig/lib/intel_batchbuffer.c (-1 / +1 lines)
Lines 117-123 Link Here
117
	int ret;
117
	int ret;
118
118
119
	if (batch->ptr - batch->map > batch->bo->size)
119
	if (batch->ptr - batch->map > batch->bo->size)
120
		printf("bad relocation ptr %p map %p offset %d size %ld\n",
120
		printf("bad relocation ptr %p map %p offset %ld size %ld\n",
121
		       batch->ptr, batch->map, batch->ptr - batch->map,
121
		       batch->ptr, batch->map, batch->ptr - batch->map,
122
		       batch->bo->size);
122
		       batch->bo->size);
123
123
(-)intel-gpu-tools-1.0-orig/tools/intel_gpu_top.c (-1 / +1 lines)
Lines 185-191 Link Here
185
		qsort(top_bits_sorted, num_top_bits, sizeof(struct top_bit *),
185
		qsort(top_bits_sorted, num_top_bits, sizeof(struct top_bit *),
186
		      top_bits_sort);
186
		      top_bits_sort);
187
187
188
		printf(clear_screen);
188
		printf("%s",clear_screen);
189
		printf("ring idle: %3d%%  ring space: %d/%d (%d%%)\n",
189
		printf("ring idle: %3d%%  ring space: %d/%d (%d%%)\n",
190
		       ring_idle,
190
		       ring_idle,
191
		       total_ring_full / 100, ring_size,
191
		       total_ring_full / 100, ring_size,

Return to bug 267782