radeon: fix realloc of packets.
This should use ndw not cdw, using cdw leads to realloc alignment going wrongmain
parent
fbac5891b9
commit
af90222c45
|
@ -227,7 +227,7 @@ static int cs_gem_begin(struct radeon_cs *cs,
|
||||||
uint32_t tmp, *ptr;
|
uint32_t tmp, *ptr;
|
||||||
int num = (ndw > 0x3FF) ? ndw : 0x3FF;
|
int num = (ndw > 0x3FF) ? ndw : 0x3FF;
|
||||||
|
|
||||||
tmp = (cs->cdw + 1 + num) & (~num);
|
tmp = (cs->ndw + 1 + num) & (~num);
|
||||||
ptr = (uint32_t*)realloc(cs->packets, 4 * tmp);
|
ptr = (uint32_t*)realloc(cs->packets, 4 * tmp);
|
||||||
if (ptr == NULL) {
|
if (ptr == NULL) {
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
Loading…
Reference in New Issue