Changeset bff8619 in mainline for uspace/srv/volsrv/types/volume.h


Ignore:
Timestamp:
2024-08-20T22:07:31Z (9 months ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
master
Children:
ac9b4f2
Parents:
a3ba37d
Message:

Simplify SIF interface, remove contacts

Remove transactions, move to a load/save model. Remove contacts
application as it was never finished and not useful at all.

File:
1 edited

Legend:

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

    ra3ba37d rbff8619  
    11/*
    2  * Copyright (c) 2018 Jiri Svoboda
     2 * Copyright (c) 2024 Jiri Svoboda
    33 * All rights reserved.
    44 *
     
    4141#include <refcount.h>
    4242#include <fibril_synch.h>
    43 #include <sif.h>
    4443
    4544/** Volume */
     
    5756        /** Mount point */
    5857        char *mountp;
    59         /** SIF node for this volume */
    60         sif_node_t *nvolume;
    6158} vol_volume_t;
    6259
     
    6764        /** Volumes (list of vol_volume_t) */
    6865        list_t volumes;
    69         /** Cconfiguration repo session */
    70         sif_sess_t *repo;
    71         /** Volumes SIF node */
    72         sif_node_t *nvolumes;
    7366        /** Next ID */
    7467        sysarg_t next_id;
     68        /** Configuration file path */
     69        char *cfg_path;
    7570} vol_volumes_t;
    7671
Note: See TracChangeset for help on using the changeset viewer.