Changeset f5837524 in mainline for kernel/generic/src/ipc/ipc.c
- Timestamp:
- 2018-10-29T17:15:02Z (6 years ago)
- Children:
- eec201d
- Parents:
- 184f2f8a
- git-author:
- Jakub Jermar <jakub@…> (2018-10-28 12:42:35)
- git-committer:
- Jakub Jermar <jakub@…> (2018-10-29 17:15:02)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/ipc/ipc.c
r184f2f8a rf5837524 205 205 phone->state = IPC_PHONE_FREE; 206 206 atomic_store(&phone->active_calls, 0); 207 phone->label = 0; 207 208 phone->kobject = NULL; 208 209 } … … 371 372 } 372 373 373 call->data. phone = phone;374 call->data.request_label = phone->label; 374 375 call->data.task_id = caller->taskid; 375 376 } … … 520 521 521 522 if (mode & IPC_FF_ROUTE_FROM_ME) { 522 call->data. phone = newphone;523 call->data.request_label = newphone->label; 523 524 call->data.task_id = TASK->taskid; 524 525 } … … 670 671 list_remove(&phone->link); 671 672 phone->state = IPC_PHONE_SLAMMED; 673 phone->label = 0; 672 674 673 675 if (notify_box) {
Note:
See TracChangeset
for help on using the changeset viewer.