Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/block/libblock.c

    r956d4df8 r96b02eb9  
    4444#include <sys/mman.h>
    4545#include <async.h>
     46#include <ipc/ipc.h>
    4647#include <as.h>
    4748#include <assert.h>
     
    176177        if (rc != EOK) {
    177178                munmap(comm_area, comm_size);
    178                 async_hangup(dev_phone);
     179                ipc_hangup(dev_phone);
    179180                return rc;
    180181        }
     
    182183        if (get_block_size(dev_phone, &bsize) != EOK) {
    183184                munmap(comm_area, comm_size);
    184                 async_hangup(dev_phone);
     185                ipc_hangup(dev_phone);
    185186                return rc;
    186187        }
     
    189190        if (rc != EOK) {
    190191                munmap(comm_area, comm_size);
    191                 async_hangup(dev_phone);
     192                ipc_hangup(dev_phone);
    192193                return rc;
    193194        }
     
    210211
    211212        munmap(devcon->comm_area, devcon->comm_size);
    212         async_hangup(devcon->dev_phone);
     213        ipc_hangup(devcon->dev_phone);
    213214
    214215        free(devcon);   
     
    294295
    295296        /* Allow 1:1 or small-to-large block size translation */
    296         if (cache->lblock_size % devcon->pblock_size != 0) {
    297                 free(cache);
     297        if (cache->lblock_size % devcon->pblock_size != 0)
    298298                return ENOTSUP;
    299         }
    300299
    301300        cache->blocks_cluster = cache->lblock_size / devcon->pblock_size;
     
    438437                        if (!b->data) {
    439438                                free(b);
    440                                 b = NULL;
    441439                                goto recycle;
    442440                        }
     
    566564        assert(devcon);
    567565        assert(devcon->cache);
    568         assert(block->refcnt >= 1);
    569566
    570567        cache = devcon->cache;
     
    626623                        unsigned long key = block->lba;
    627624                        hash_table_remove(&cache->block_hash, &key, 1);
    628                         fibril_mutex_unlock(&block->lock);
     625                        free(block);
    629626                        free(block->data);
    630                         free(block);
    631627                        cache->blocks_cached--;
    632628                        fibril_mutex_unlock(&cache->lock);
Note: See TracChangeset for help on using the changeset viewer.