Changeset bff8619 in mainline for uspace/srv/volsrv/types/volume.h
- Timestamp:
- 2024-08-20T22:07:31Z (9 months ago)
- Branches:
- master
- Children:
- ac9b4f2
- Parents:
- a3ba37d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/volsrv/types/volume.h
ra3ba37d rbff8619 1 1 /* 2 * Copyright (c) 20 18Jiri Svoboda2 * Copyright (c) 2024 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 41 41 #include <refcount.h> 42 42 #include <fibril_synch.h> 43 #include <sif.h>44 43 45 44 /** Volume */ … … 57 56 /** Mount point */ 58 57 char *mountp; 59 /** SIF node for this volume */60 sif_node_t *nvolume;61 58 } vol_volume_t; 62 59 … … 67 64 /** Volumes (list of vol_volume_t) */ 68 65 list_t volumes; 69 /** Cconfiguration repo session */70 sif_sess_t *repo;71 /** Volumes SIF node */72 sif_node_t *nvolumes;73 66 /** Next ID */ 74 67 sysarg_t next_id; 68 /** Configuration file path */ 69 char *cfg_path; 75 70 } vol_volumes_t; 76 71
Note:
See TracChangeset
for help on using the changeset viewer.