PGRAPH_INTR_ERROR and not PGRAPH_INTR_NOTIFY is used for software method calls?

This commit is contained in:
espes 2015-10-17 01:59:04 +11:00
parent a0c76c5b5b
commit 80b440414d
1 changed files with 3 additions and 3 deletions

View File

@ -4099,7 +4099,7 @@ static void pgraph_method(NV2AState *d,
* but nothing obvious sticks out. Weird.
*/
if (parameter != 0) {
assert(!(pg->pending_interrupts & NV_PGRAPH_INTR_NOTIFY));
assert(!(pg->pending_interrupts & NV_PGRAPH_INTR_ERROR));
pg->trapped_channel_id = pg->channel_id;
@ -4107,7 +4107,7 @@ static void pgraph_method(NV2AState *d,
pg->trapped_method = method;
pg->trapped_data[0] = parameter;
pg->notify_source = NV_PGRAPH_NSOURCE_NOTIFICATION; /* TODO: check this */
pg->pending_interrupts |= NV_PGRAPH_INTR_NOTIFY;
pg->pending_interrupts |= NV_PGRAPH_INTR_ERROR;
qemu_mutex_unlock(&pg->lock);
qemu_mutex_lock_iothread();
@ -4115,7 +4115,7 @@ static void pgraph_method(NV2AState *d,
qemu_mutex_lock(&pg->lock);
qemu_mutex_unlock_iothread();
while (pg->pending_interrupts & NV_PGRAPH_INTR_NOTIFY) {
while (pg->pending_interrupts & NV_PGRAPH_INTR_ERROR) {
qemu_cond_wait(&pg->interrupt_cond, &pg->lock);
}
}