Reformat; Optimize flush.
authorbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Fri, 9 Jul 2010 16:43:14 +0000 (16:43 +0000)
committerbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Fri, 9 Jul 2010 16:43:14 +0000 (16:43 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@4021 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/io/kblock.c

index def111cb598bcfcbdfe1c6a2e1f7bc060e31c393..7355deeded97884c6c010decd54a54f7580d8a83 100644 (file)
@@ -119,6 +119,9 @@ int kblock_flush(struct KBlock *b)
 {
        ASSERT(b);
 
+       if (!kblock_buffered(b))
+               return 0;
+
        if (kblock_cacheDirty(b))
        {
                LOG_INFO("flushing block %d\n", b->priv.curr_blk);
@@ -155,7 +158,7 @@ size_t kblock_write(struct KBlock *b, block_idx_t idx, const void *buf, size_t o
        ASSERT(offset + size <= b->blk_size);
 
        LOG_INFO("blk_idx %d, offset %d, size %d\n", idx, offset, size);
-       
+
        if (kblock_buffered(b))
        {
                if (!kblock_loadPage(b, idx))
@@ -172,17 +175,17 @@ size_t kblock_write(struct KBlock *b, block_idx_t idx, const void *buf, size_t o
        }
 }
 
-int kblock_copy(struct KBlock *b, block_idx_t idx1, block_idx_t idx2)
+int kblock_copy(struct KBlock *b, block_idx_t src, block_idx_t dest)
 {
        ASSERT(b);
-       ASSERT(idx1 < b->blk_cnt);
-       ASSERT(idx2 < b->blk_cnt);
+       ASSERT(src < b->blk_cnt);
+       ASSERT(dest < b->blk_cnt);
        ASSERT(kblock_buffered(b));
 
-       if (!kblock_loadPage(b, idx1))
+       if (!kblock_loadPage(b, src))
                return EOF;
 
-       b->priv.curr_blk = idx2;
+       b->priv.curr_blk = dest;
        kblock_setDirty(b, true);
        return 0;
 }
@@ -201,7 +204,7 @@ size_t kblock_swReadBuf(struct KBlock *b, void *buf, size_t offset, size_t size)
 {
        ASSERT(buf);
        ASSERT(offset + size <= b->blk_size);
-       
+
        memcpy(buf, (uint8_t *)b->priv.buf + offset, size);
        return size;
 }