Changeset b7a4d06 in mainline for uspace/lib/c/generic/vol.c
- Timestamp:
- 2015-07-18T12:55:12Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c43db5f
- Parents:
- 70815a24
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/vol.c
r70815a24 rb7a4d06 192 192 { 193 193 async_exch_t *exch; 194 sysarg_t dcnt, ltype ;194 sysarg_t dcnt, ltype, flags; 195 195 int retval; 196 196 197 197 exch = async_exchange_begin(vol->sess); 198 retval = async_req_1_2(exch, VOL_DISK_INFO, sid, &dcnt, <ype); 198 retval = async_req_1_3(exch, VOL_DISK_INFO, sid, &dcnt, <ype, 199 &flags); 199 200 async_exchange_end(exch); 200 201 … … 204 205 vinfo->dcnt = (label_disk_cnt_t)dcnt; 205 206 vinfo->ltype = (label_type_t)ltype; 207 vinfo->flags = (label_flags_t)flags; 206 208 return EOK; 207 209 }
Note:
See TracChangeset
for help on using the changeset viewer.