mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-28 18:20:23 +01:00
r600g/compute: Fix warnings
This commit is contained in:
parent
2fa6d659c3
commit
467f1585e2
2 changed files with 16 additions and 12 deletions
|
|
@ -70,7 +70,7 @@ static void compute_memory_pool_init(struct compute_memory_pool * pool,
|
|||
unsigned initial_size_in_dw)
|
||||
{
|
||||
|
||||
COMPUTE_DBG(pool->screen, "* compute_memory_pool_init() initial_size_in_dw = %ld\n",
|
||||
COMPUTE_DBG(pool->screen, "* compute_memory_pool_init() initial_size_in_dw = %u\n",
|
||||
initial_size_in_dw);
|
||||
|
||||
pool->shadow = (uint32_t*)CALLOC(initial_size_in_dw, 4);
|
||||
|
|
@ -110,7 +110,7 @@ int64_t compute_memory_prealloc_chunk(
|
|||
|
||||
assert(size_in_dw <= pool->size_in_dw);
|
||||
|
||||
COMPUTE_DBG(pool->screen, "* compute_memory_prealloc_chunk() size_in_dw = %ld\n",
|
||||
COMPUTE_DBG(pool->screen, "* compute_memory_prealloc_chunk() size_in_dw = %" PRId64 "\n",
|
||||
size_in_dw);
|
||||
|
||||
LIST_FOR_EACH_ENTRY(item, pool->item_list, link) {
|
||||
|
|
@ -139,7 +139,7 @@ struct list_head *compute_memory_postalloc_chunk(
|
|||
struct compute_memory_item *next;
|
||||
struct list_head *next_link;
|
||||
|
||||
COMPUTE_DBG(pool->screen, "* compute_memory_postalloc_chunck() start_in_dw = %ld\n",
|
||||
COMPUTE_DBG(pool->screen, "* compute_memory_postalloc_chunck() start_in_dw = %" PRId64 "\n",
|
||||
start_in_dw);
|
||||
|
||||
/* Check if we can insert it in the front of the list */
|
||||
|
|
@ -246,8 +246,8 @@ int compute_memory_finalize_pending(struct compute_memory_pool* pool,
|
|||
COMPUTE_DBG(pool->screen, "* compute_memory_finalize_pending()\n");
|
||||
|
||||
LIST_FOR_EACH_ENTRY(item, pool->item_list, link) {
|
||||
COMPUTE_DBG(pool->screen, " + list: offset = %i id = %i size = %i "
|
||||
"(%i bytes)\n",item->start_in_dw, item->id,
|
||||
COMPUTE_DBG(pool->screen, " + list: offset = %" PRId64 " id = %" PRId64 " size = %" PRId64
|
||||
" (%" PRId64 " bytes)\n",item->start_in_dw, item->id,
|
||||
item->size_in_dw, item->size_in_dw * 4);
|
||||
}
|
||||
|
||||
|
|
@ -334,8 +334,9 @@ int compute_memory_promote_item(struct compute_memory_pool *pool,
|
|||
struct pipe_resource *dst = (struct pipe_resource *)pool->bo;
|
||||
struct pipe_box box;
|
||||
|
||||
COMPUTE_DBG(pool->screen, " + Found space for Item %p id = %u "
|
||||
"start_in_dw = %u (%u bytes) size_in_dw = %u (%u bytes)\n",
|
||||
COMPUTE_DBG(pool->screen, " + Found space for Item %p id = %" PRId64
|
||||
" start_in_dw = %" PRId64 " (%" PRId64 " bytes) "
|
||||
"size_in_dw = %" PRId64 " (%" PRId64 " bytes)\n",
|
||||
item, item->id, start_in_dw, start_in_dw * 4,
|
||||
item->size_in_dw, item->size_in_dw * 4);
|
||||
|
||||
|
|
@ -429,7 +430,8 @@ void compute_memory_move_item(struct compute_memory_pool *pool,
|
|||
struct compute_memory_item *prev;
|
||||
|
||||
COMPUTE_DBG(pool->screen, "* compute_memory_move_item()\n"
|
||||
" + Moving item %i from %u (%u bytes) to %u (%u bytes)\n",
|
||||
" + Moving item %" PRId64 " from %" PRId64
|
||||
" (%" PRId64 " bytes) to %" PRId64 " (%" PRId64 " bytes)\n",
|
||||
item->id, item->start_in_dw, item->start_in_dw * 4,
|
||||
new_start_in_dw, new_start_in_dw * 4);
|
||||
|
||||
|
|
@ -501,7 +503,7 @@ void compute_memory_free(struct compute_memory_pool* pool, int64_t id)
|
|||
struct pipe_screen *screen = (struct pipe_screen *)pool->screen;
|
||||
struct pipe_resource *res;
|
||||
|
||||
COMPUTE_DBG(pool->screen, "* compute_memory_free() id + %ld \n", id);
|
||||
COMPUTE_DBG(pool->screen, "* compute_memory_free() id + %" PRId64 "\n", id);
|
||||
|
||||
LIST_FOR_EACH_ENTRY_SAFE(item, next, pool->item_list, link) {
|
||||
|
||||
|
|
@ -557,7 +559,8 @@ struct compute_memory_item* compute_memory_alloc(
|
|||
{
|
||||
struct compute_memory_item *new_item = NULL;
|
||||
|
||||
COMPUTE_DBG(pool->screen, "* compute_memory_alloc() size_in_dw = %ld (%ld bytes)\n",
|
||||
COMPUTE_DBG(pool->screen, "* compute_memory_alloc() size_in_dw = %" PRId64
|
||||
" (%" PRId64 " bytes)\n",
|
||||
size_in_dw, 4 * size_in_dw);
|
||||
|
||||
new_item = (struct compute_memory_item *)
|
||||
|
|
@ -573,7 +576,8 @@ struct compute_memory_item* compute_memory_alloc(
|
|||
|
||||
list_addtail(&new_item->link, pool->unallocated_list);
|
||||
|
||||
COMPUTE_DBG(pool->screen, " + Adding item %p id = %u size = %u (%u bytes)\n",
|
||||
COMPUTE_DBG(pool->screen, " + Adding item %p id = %" PRId64 " size = %" PRId64
|
||||
" (%" PRId64 " bytes)\n",
|
||||
new_item, new_item->id, new_item->size_in_dw,
|
||||
new_item->size_in_dw * 4);
|
||||
return new_item;
|
||||
|
|
|
|||
|
|
@ -994,7 +994,7 @@ void *r600_compute_global_transfer_map(
|
|||
"width = %u, height = %u, depth = %u)\n", level, usage,
|
||||
box->x, box->y, box->z, box->width, box->height,
|
||||
box->depth);
|
||||
COMPUTE_DBG(rctx->screen, "Buffer id = %u offset = "
|
||||
COMPUTE_DBG(rctx->screen, "Buffer id = %" PRId64 " offset = "
|
||||
"%u (box.x)\n", item->id, box->x);
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue