Changeset 38ee411f in mainline for kernel/generic/src/ipc/kbox.c


Ignore:
Timestamp:
2026-01-21T06:22:28Z (5 weeks ago)
Author:
GitHub <noreply@…>
Parents:
81805e0 (diff), 455241b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2026-01-21 06:22:28)
git-committer:
GitHub <noreply@…> (2026-01-21 06:22:28)
Message:

Merge 455241b37bedd3719ed3b5b025fdf26f44fd565b into 81805e06a9f080e240dbc7463874411778910389

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/ipc/kbox.c

    r81805e0 r38ee411f  
    242242        }
    243243
    244         kobject_t *phone_obj = kobject_get(TASK, phone_handle,
    245             KOBJECT_TYPE_PHONE);
     244        phone_t *phone = phone_from_kobject(
     245            kobject_get(TASK, phone_handle, KOBJECT_TYPE_PHONE));
    246246        /* Connect the newly allocated phone to the kbox */
    247247        /* Hand over phone_obj's reference to ipc_phone_connect() */
    248         (void) ipc_phone_connect(phone_obj->phone, &task->kb.box);
     248        (void) ipc_phone_connect(phone, &task->kb.box);
    249249
    250250        mutex_unlock(&task->kb.cleanup_lock);
Note: See TracChangeset for help on using the changeset viewer.