Changeset d30e067 in mainline for uspace/srv/volsrv/volsrv.c
- Timestamp:
- 2025-03-02T20:02:33Z (5 months ago)
- Children:
- 8cdf360
- Parents:
- 7debda3 (diff), 4285f384 (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/volsrv/volsrv.c
r7debda3 rd30e067 1 1 /* 2 * Copyright (c) 202 4Jiri Svoboda2 * Copyright (c) 2025 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 205 205 { 206 206 service_id_t sid; 207 vol_eject_flags_t flags; 207 208 vol_part_t *part; 208 209 errno_t rc; 209 210 210 211 sid = ipc_get_arg1(icall); 211 log_msg(LOG_DEFAULT, LVL_DEBUG, "vol_part_eject_srv(%zu)", sid); 212 flags = ipc_get_arg2(icall); 213 214 log_msg(LOG_DEFAULT, LVL_DEBUG, "vol_part_eject_srv(%zu, %x)", 215 sid, flags); 212 216 213 217 rc = vol_part_find_by_id_ref(parts, sid, &part); … … 217 221 } 218 222 219 rc = vol_part_eject_part(part );223 rc = vol_part_eject_part(part, flags); 220 224 if (rc != EOK) { 221 225 async_answer_0(icall, EIO);
Note:
See TracChangeset
for help on using the changeset viewer.