Changeset d3b2ffa in mainline for uspace/srv/volsrv/types/part.h


Ignore:
Timestamp:
2018-06-29T15:40:10Z (6 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5e904dd
Parents:
1e472ee (diff), 1a9174e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge volume management improvements (still WIP).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/volsrv/types/part.h

    r1e472ee rd3b2ffa  
    3939
    4040#include <adt/list.h>
     41#include <atomic.h>
     42#include <stdbool.h>
    4143#include <types/label.h>
    4244
     
    4547        /** Link to vol_parts */
    4648        link_t lparts;
     49        /** Reference count */
     50        atomic_t refcnt;
    4751        /** Service ID */
    4852        service_id_t svc_id;
     
    5559        /** Volume label */
    5660        char *label;
     61        /** Where volume is currently mounted */
     62        char *cur_mp;
     63        /** Mounted at automatic mount point */
     64        bool cur_mp_auto;
    5765} vol_part_t;
    5866
Note: See TracChangeset for help on using the changeset viewer.