Changeset 2133e02 in mainline for uspace/srv/fs


Ignore:
Timestamp:
2015-08-18T20:14:05Z (10 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1a522e5
Parents:
84dc30c
Message:

canonically reserve the first argument of IPC_M_CONNECT_ME_TO for interface type
naming service: service handle in IPC_M_CONNECT_ME_TO needs to be shifted to the second argument
service connections that use the untyped (fallback) port can only provide one additional argument now

Location:
uspace/srv/fs
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/cdfs/cdfs.c

    r84dc30c r2133e02  
    7474       
    7575        async_sess_t *vfs_sess = service_connect_blocking(EXCHANGE_SERIALIZE,
    76             SERVICE_VFS, 0, 0);
     76            SERVICE_VFS, 0);
    7777        if (!vfs_sess) {
    7878                printf("%s: Unable to connect to VFS\n", NAME);
  • uspace/srv/fs/exfat/exfat.c

    r84dc30c r2133e02  
    7676
    7777        async_sess_t *vfs_sess = service_connect_blocking(EXCHANGE_SERIALIZE,
    78             SERVICE_VFS, 0, 0);
     78            SERVICE_VFS, 0);
    7979        if (!vfs_sess) {
    8080                printf(NAME ": failed to connect to VFS\n");
  • uspace/srv/fs/ext4fs/ext4fs.c

    r84dc30c r2133e02  
    6666       
    6767        async_sess_t *vfs_sess = service_connect_blocking(EXCHANGE_SERIALIZE,
    68             SERVICE_VFS, 0, 0);
     68            SERVICE_VFS, 0);
    6969        if (!vfs_sess) {
    7070                printf("%s: Failed to connect to VFS\n", NAME);
  • uspace/srv/fs/fat/fat.c

    r84dc30c r2133e02  
    7676       
    7777        async_sess_t *vfs_sess = service_connect_blocking(EXCHANGE_SERIALIZE,
    78             SERVICE_VFS, 0, 0);
     78            SERVICE_VFS, 0);
    7979        if (!vfs_sess) {
    8080                printf(NAME ": failed to connect to VFS\n");
  • uspace/srv/fs/locfs/locfs.c

    r84dc30c r2133e02  
    7878       
    7979        async_sess_t *vfs_sess = service_connect_blocking(EXCHANGE_SERIALIZE,
    80             SERVICE_VFS, 0, 0);
     80            SERVICE_VFS, 0);
    8181        if (!vfs_sess) {
    8282                printf("%s: Unable to connect to VFS\n", NAME);
  • uspace/srv/fs/mfs/mfs.c

    r84dc30c r2133e02  
    7474
    7575        async_sess_t *vfs_sess = service_connect_blocking(EXCHANGE_SERIALIZE,
    76             SERVICE_VFS, 0, 0);
     76            SERVICE_VFS, 0);
    7777
    7878        if (!vfs_sess) {
  • uspace/srv/fs/tmpfs/tmpfs.c

    r84dc30c r2133e02  
    8181       
    8282        async_sess_t *vfs_sess = service_connect_blocking(EXCHANGE_SERIALIZE,
    83             SERVICE_VFS, 0, 0);
     83            SERVICE_VFS, 0);
    8484        if (!vfs_sess) {
    8585                printf(NAME ": Unable to connect to VFS\n");
  • uspace/srv/fs/udf/udf.c

    r84dc30c r2133e02  
    7474       
    7575        async_sess_t *vfs_sess =
    76             service_connect_blocking(EXCHANGE_SERIALIZE, SERVICE_VFS, 0, 0);
     76            service_connect_blocking(EXCHANGE_SERIALIZE, SERVICE_VFS, 0);
    7777        if (!vfs_sess) {
    7878                log_msg(LOG_DEFAULT, LVL_FATAL, "Failed to connect to VFS");
Note: See TracChangeset for help on using the changeset viewer.