Changeset 530 for trunk/kernel/fs


Ignore:
Timestamp:
Sep 21, 2018, 10:19:38 PM (6 years ago)
Author:
nicolas.van.phan@…
Message:

Hack to compile on both IOB and LETI for now

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kernel/fs/vfs.c

    r528 r530  
    11271127cxy_t vfs_cluster_random_select( void )
    11281128{
    1129     uint32_t  x_size    = LOCAL_CLUSTER->x_size;
    1130     uint32_t  y_size    = LOCAL_CLUSTER->y_size;
     1129    uint32_t  x_max     = LOCAL_CLUSTER->x_max; // [FIXME]
     1130    uint32_t  y_max     = LOCAL_CLUSTER->y_max; // [FIXME]
    11311131    uint32_t  y_width   = LOCAL_CLUSTER->y_width;
    1132     uint32_t  index     = ( hal_get_cycles() + hal_get_gid() ) % (x_size * (y_size - 1)); // [FIXME]
    1133     uint32_t  x         = index / (y_size - 1); // [FIXME]
    1134     uint32_t  y         = index % (y_size - 1); // [FIXME]
     1132    uint32_t  index     = ( hal_get_cycles() + hal_get_gid() ) % (x_max * y_max); // [FIXME]
     1133    uint32_t  x         = index / y_max; // [FIXME]
     1134    uint32_t  y         = index % y_max; // [FIXME]
    11351135
    11361136    return (x<<y_width) + y;
Note: See TracChangeset for help on using the changeset viewer.