Changeset c08c355 in mainline for uspace/lib/libc/generic/vfs/vfs.c


Ignore:
Timestamp:
2009-04-18T13:37:59Z (15 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c259b9b
Parents:
58d7280
Message:

Make IPC_M_PING part of the VFS_MOUNT protocol again.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/libc/generic/vfs/vfs.c

    r58d7280 rc08c355  
    194194                return (int) rc;
    195195        }
     196
     197        /* Ask VFS whether it likes fs_name. */
     198        rc = async_req_0_0(vfs_phone, IPC_M_PING);
     199        if (rc != EOK) {
     200                async_wait_for(req, NULL);
     201                async_serialize_end();
     202                futex_up(&vfs_phone_futex);
     203                free(mpa);
     204                return (int) rc;
     205        }
    196206       
    197207        async_wait_for(req, &rc);
Note: See TracChangeset for help on using the changeset viewer.