Ignore:
Timestamp:
2011-07-08T17:01:01Z (13 years ago)
Author:
Martin Sucha <sucha14@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
cc1a727
Parents:
4e36219 (diff), 026793d (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.
Message:

Merge mainline changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/bd/part/guid_part/guid_part.c

    r4e36219 rc028b22  
    9999static part_t *gpt_part_new(void);
    100100static void gpt_pte_to_part(const gpt_entry_t *pte, part_t *part);
    101 static void gpt_connection(ipc_callid_t iid, ipc_call_t *icall);
     101static void gpt_connection(ipc_callid_t iid, ipc_call_t *icall, void *arg);
    102102static int gpt_bd_read(part_t *p, aoff64_t ba, size_t cnt, void *buf);
    103103static int gpt_bd_write(part_t *p, aoff64_t ba, size_t cnt, const void *buf);
     
    139139        }
    140140
    141         rc = block_init(indev_handle, 2048);
     141        rc = block_init(EXCHANGE_SERIALIZE, indev_handle, 2048);
    142142        if (rc != EOK)  {
    143143                printf(NAME ": could not init libblock.\n");
     
    307307}
    308308
    309 static void gpt_connection(ipc_callid_t iid, ipc_call_t *icall)
     309static void gpt_connection(ipc_callid_t iid, ipc_call_t *icall, void *arg)
    310310{
    311311        size_t comm_size;
     
    356356        (void) async_share_out_finalize(callid, fs_va);
    357357
    358         while (1) {
     358        while (true) {
    359359                callid = async_get_call(&call);
    360360                method = IPC_GET_IMETHOD(call);
    361                 switch (method) {
    362                 case IPC_M_PHONE_HUNGUP:
     361               
     362                if (!method) {
    363363                        /* The other side has hung up. */
    364364                        async_answer_0(callid, EOK);
    365365                        return;
     366                }
     367               
     368                switch (method) {
    366369                case BD_READ_BLOCKS:
    367370                        ba = MERGE_LOUP32(IPC_GET_ARG1(call),
Note: See TracChangeset for help on using the changeset viewer.