Ignore:
File:
1 edited

Legend:

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

    red903174 r08232ee  
    11/*
    2  * Copyright (c) 2008 Jakub Jermar
    3  * Copyright (c) 2008 Martin Decky
     2 * Copyright (c) 2008 Jakub Jermar 
     3 * Copyright (c) 2008 Martin Decky 
    44 * All rights reserved.
    55 *
     
    5252#include <macros.h>
    5353#include <mem.h>
    54 #include <sys/typefmt.h>
    55 #include <stacktrace.h>
    5654
    5755/** Lock protecting the device connection list */
     
    8179        size_t comm_size;
    8280        void *bb_buf;
    83         aoff64_t bb_addr;
     81        bn_t bb_addr;
    8482        size_t pblock_size;             /**< Physical block size. */
    8583        cache_t *cache;
    8684} devcon_t;
    8785
    88 static int read_blocks(devcon_t *devcon, aoff64_t ba, size_t cnt);
    89 static int write_blocks(devcon_t *devcon, aoff64_t ba, size_t cnt);
     86static int read_blocks(devcon_t *devcon, bn_t ba, size_t cnt);
     87static int write_blocks(devcon_t *devcon, bn_t ba, size_t cnt);
    9088static int get_block_size(int dev_phone, size_t *bsize);
    91 static int get_num_blocks(int dev_phone, aoff64_t *nblocks);
     89static int get_num_blocks(int dev_phone, bn_t *nblocks);
    9290
    9391static devcon_t *devcon_search(dev_handle_t dev_handle)
     
    200198        assert(devcon);
    201199       
    202         if (devcon->cache)
    203                 (void) block_cache_fini(dev_handle);
    204 
    205200        devcon_remove(devcon);
    206201
     
    208203                free(devcon->bb_buf);
    209204
     205        if (devcon->cache) {
     206                hash_table_destroy(&devcon->cache->block_hash);
     207                free(devcon->cache);
     208        }
     209
    210210        munmap(devcon->comm_area, devcon->comm_size);
    211211        ipc_hangup(devcon->dev_phone);
     
    214214}
    215215
    216 int block_bb_read(dev_handle_t dev_handle, aoff64_t ba)
     216int block_bb_read(dev_handle_t dev_handle, bn_t ba)
    217217{
    218218        void *bb_buf;
     
    305305}
    306306
    307 int block_cache_fini(dev_handle_t dev_handle)
    308 {
    309         devcon_t *devcon = devcon_search(dev_handle);
    310         cache_t *cache;
    311         int rc;
    312 
    313         if (!devcon)
    314                 return ENOENT;
    315         if (!devcon->cache)
    316                 return EOK;
    317         cache = devcon->cache;
    318        
    319         /*
    320          * We are expecting to find all blocks for this device handle on the
    321          * free list, i.e. the block reference count should be zero. Do not
    322          * bother with the cache and block locks because we are single-threaded.
    323          */
    324         while (!list_empty(&cache->free_head)) {
    325                 block_t *b = list_get_instance(cache->free_head.next,
    326                     block_t, free_link);
    327 
    328                 list_remove(&b->free_link);
    329                 if (b->dirty) {
    330                         memcpy(devcon->comm_area, b->data, b->size);
    331                         rc = write_blocks(devcon, b->boff, 1);
    332                         if (rc != EOK)
    333                                 return rc;
    334                 }
    335 
    336                 unsigned long key = b->boff;
    337                 hash_table_remove(&cache->block_hash, &key, 1);
    338                
    339                 free(b->data);
    340                 free(b);
    341         }
    342 
    343         hash_table_destroy(&cache->block_hash);
    344         devcon->cache = NULL;
    345         free(cache);
    346 
    347         return EOK;
    348 }
    349 
    350307#define CACHE_LO_WATERMARK      10     
    351308#define CACHE_HI_WATERMARK      20     
     
    382339 * @return                      EOK on success or a negative error code.
    383340 */
    384 int block_get(block_t **block, dev_handle_t dev_handle, aoff64_t boff, int flags)
     341int block_get(block_t **block, dev_handle_t dev_handle, bn_t boff, int flags)
    385342{
    386343        devcon_t *devcon;
     
    657614 * @return              EOK on success or a negative return code on failure.
    658615 */
    659 int block_seqread(dev_handle_t dev_handle, size_t *bufpos, size_t *buflen,
    660     aoff64_t *pos, void *dst, size_t size)
    661 {
    662         size_t offset = 0;
     616int block_seqread(dev_handle_t dev_handle, off_t *bufpos, size_t *buflen,
     617    off_t *pos, void *dst, size_t size)
     618{
     619        off_t offset = 0;
    663620        size_t left = size;
    664621        size_t block_size;
     
    690647                }
    691648               
    692                 if (*bufpos == *buflen) {
     649                if (*bufpos == (off_t) *buflen) {
    693650                        /* Refill the communication buffer with a new block. */
    694651                        int rc;
     
    718675 * @return              EOK on success or negative error code on failure.
    719676 */
    720 int block_read_direct(dev_handle_t dev_handle, aoff64_t ba, size_t cnt, void *buf)
     677int block_read_direct(dev_handle_t dev_handle, bn_t ba, size_t cnt, void *buf)
    721678{
    722679        devcon_t *devcon;
     
    746703 * @return              EOK on success or negative error code on failure.
    747704 */
    748 int block_write_direct(dev_handle_t dev_handle, aoff64_t ba, size_t cnt,
     705int block_write_direct(dev_handle_t dev_handle, bn_t ba, size_t cnt,
    749706    const void *data)
    750707{
     
    789746 * @return              EOK on success or negative error code on failure.
    790747 */
    791 int block_get_nblocks(dev_handle_t dev_handle, aoff64_t *nblocks)
     748int block_get_nblocks(dev_handle_t dev_handle, bn_t *nblocks)
    792749{
    793750        devcon_t *devcon;
     
    808765 * @return              EOK on success or negative error code on failure.
    809766 */
    810 static int read_blocks(devcon_t *devcon, aoff64_t ba, size_t cnt)
     767static int read_blocks(devcon_t *devcon, bn_t ba, size_t cnt)
    811768{
    812769        int rc;
     
    815772        rc = async_req_3_0(devcon->dev_phone, BD_READ_BLOCKS, LOWER32(ba),
    816773            UPPER32(ba), cnt);
    817         if (rc != EOK) {
    818                 printf("Error %d reading %d blocks starting at block %" PRIuOFF64
    819                     " from device handle %d\n", rc, cnt, ba,
    820                     devcon->dev_handle);
    821 #ifndef NDEBUG
    822                 stacktrace_print();
    823 #endif
    824         }
    825774        return rc;
    826775}
     
    835784 * @return              EOK on success or negative error code on failure.
    836785 */
    837 static int write_blocks(devcon_t *devcon, aoff64_t ba, size_t cnt)
     786static int write_blocks(devcon_t *devcon, bn_t ba, size_t cnt)
    838787{
    839788        int rc;
     
    842791        rc = async_req_3_0(devcon->dev_phone, BD_WRITE_BLOCKS, LOWER32(ba),
    843792            UPPER32(ba), cnt);
    844         if (rc != EOK) {
    845                 printf("Error %d writing %d blocks starting at block %" PRIuOFF64
    846                     " to device handle %d\n", rc, cnt, ba, devcon->dev_handle);
    847 #ifndef NDEBUG
    848                 stacktrace_print();
    849 #endif
    850         }
    851793        return rc;
    852794}
     
    866808
    867809/** Get total number of blocks on block device. */
    868 static int get_num_blocks(int dev_phone, aoff64_t *nblocks)
     810static int get_num_blocks(int dev_phone, bn_t *nblocks)
    869811{
    870812        ipcarg_t nb_l, nb_h;
     
    873815        rc = async_req_0_2(dev_phone, BD_GET_NUM_BLOCKS, &nb_l, &nb_h);
    874816        if (rc == EOK) {
    875                 *nblocks = (aoff64_t) MERGE_LOUP32(nb_l, nb_h);
     817                *nblocks = (bn_t) MERGE_LOUP32(nb_l, nb_h);
    876818        }
    877819
Note: See TracChangeset for help on using the changeset viewer.