Changeset d891cba in mainline
- Timestamp:
- 2012-08-17T11:03:10Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ffc1b1d
- Parents:
- f9bd2e3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/ipc/ipc.c
rf9bd2e3 rd891cba 626 626 restart: 627 627 /* 628 * Go through all phones, until they are all FREE. Locking is not629 * needed, no one else should modify it when we are in cleanup628 * Go through all phones, until they are all free. 629 * Locking is needed as there may be connection handshakes in progress. 630 630 */ 631 631 for (i = 0; i < IPC_MAX_PHONES; i++) { 632 if (TASK->phones[i].state == IPC_PHONE_HUNGUP && 633 atomic_get(&TASK->phones[i].active_calls) == 0) { 634 TASK->phones[i].state = IPC_PHONE_FREE; 635 TASK->phones[i].callee = NULL; 632 phone_t *phone = &TASK->phones[i]; 633 634 mutex_lock(&phone->lock); 635 if ((phone->state == IPC_PHONE_HUNGUP) && 636 (atomic_get(&phone->active_calls) == 0)) { 637 phone->state = IPC_PHONE_FREE; 638 phone->callee = NULL; 636 639 } 637 640 … … 645 648 * phone. 646 649 */ 647 if ((TASK->phones[i].state == IPC_PHONE_CONNECTED) || 648 (TASK->phones[i].state == IPC_PHONE_SLAMMED)) { 649 ipc_phone_hangup(&TASK->phones[i]); 650 if ((phone->state == IPC_PHONE_CONNECTED) || 651 (phone->state == IPC_PHONE_SLAMMED)) { 652 mutex_unlock(&phone->lock); 653 ipc_phone_hangup(phone); 650 654 /* 651 655 * Now there may be one extra active call, which needs … … 660 664 * IPC is now in HUNGUP state, we wait for the reply to come 661 665 */ 662 if (TASK->phones[i].state != IPC_PHONE_FREE) 666 if (phone->state != IPC_PHONE_FREE) { 667 mutex_unlock(&phone->lock); 663 668 break; 669 } 670 671 mutex_unlock(&phone->lock); 664 672 } 665 673 … … 671 679 SYNCH_FLAGS_NONE); 672 680 ASSERT(call->flags & (IPC_CALL_ANSWERED | IPC_CALL_NOTIF)); 673 674 681 ipc_call_free(call); 675 682 goto restart;
Note:
See TracChangeset
for help on using the changeset viewer.