Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/exfat/exfat_fat.c

    r1776895 r0dbe5ac  
    5050#include <malloc.h>
    5151#include <mem.h>
    52 #include <str.h>
    5352
    5453
     
    323322                            (found == 0) ?  EXFAT_CLST_EOF : lifo[found - 1]);
    324323                        if (rc != EOK)
    325                                 goto exit_error;
     324                                break;
    326325                        found++;
    327326                        rc = bitmap_set_cluster(bs, service_id, clst);
    328327                        if (rc != EOK)
    329                                 goto exit_error;
     328                                break;
    330329
    331330                }
     
    340339        }
    341340
    342         rc = ENOSPC;
    343 
    344 exit_error:
    345 
    346341        /* If something wrong - free the clusters */
    347342        while (found--) {
     
    352347        free(lifo);
    353348        fibril_mutex_unlock(&exfat_alloc_lock);
    354         return rc;
     349        return ENOSPC;
    355350}
    356351
     
    542537int exfat_sanity_check(exfat_bs_t *bs, service_id_t service_id)
    543538{
    544         if (str_cmp((char const *)bs->oem_name, "EXFAT   "))
    545                 return ENOTSUP;
    546         else if (uint16_t_le2host(bs->signature) != 0xAA55)
    547                 return ENOTSUP;
    548         else if (uint32_t_le2host(bs->fat_sector_count) == 0)
    549                 return ENOTSUP;
    550         else if (uint32_t_le2host(bs->data_clusters) == 0)
    551                 return ENOTSUP;
    552         else if (bs->fat_count != 1)
    553                 return ENOTSUP;
    554         else if ((bs->bytes_per_sector + bs->sec_per_cluster) > 25) {
    555                 /* exFAT does not support cluster size > 32 Mb */
    556                 return ENOTSUP;
    557         }
     539        /* TODO */
    558540        return EOK;
    559541}
Note: See TracChangeset for help on using the changeset viewer.