Changeset ebb1489 in mainline for uspace/srv/volsrv/types/volume.h
- Timestamp:
- 2024-10-13T08:23:40Z (2 months ago)
- Children:
- 0472cf17
- Parents:
- 2a0c827c (diff), b3b79981 (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. - git-author:
- boba-buba <120932204+boba-buba@…> (2024-10-13 08:23:40)
- git-committer:
- GitHub <noreply@…> (2024-10-13 08:23:40)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/volsrv/types/volume.h
r2a0c827c rebb1489 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.