Changeset ff381a7 in mainline for uspace/srv/bd/vbd/disk.c
- Timestamp:
- 2015-11-02T20:54:19Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d8513177
- Parents:
- 3feeab2 (diff), 5265eea4 (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/bd/vbd/disk.c
r3feeab2 rff381a7 360 360 rc = vbds_disk_by_svcid(sid, &disk); 361 361 if (rc == EOK) 362 return EEXIST S;362 return EEXIST; 363 363 364 364 disk = calloc(1, sizeof(vbds_disk_t)); … … 374 374 375 375 log_msg(LOG_DEFAULT, LVL_DEBUG, "block_init(%zu)", sid); 376 rc = block_init( EXCHANGE_SERIALIZE,sid, 2048);376 rc = block_init(sid, 2048); 377 377 if (rc != EOK) { 378 378 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed opening block device %s.", … … 872 872 log_msg(LOG_DEFAULT, LVL_DEBUG, "vbds_bd_conn()"); 873 873 874 svcid = IPC_GET_ARG 1(*icall);874 svcid = IPC_GET_ARG2(*icall); 875 875 876 876 log_msg(LOG_DEFAULT, LVL_DEBUG, "vbds_bd_conn() - svcid=%zu", svcid);
Note:
See TracChangeset
for help on using the changeset viewer.