Changeset a60b2d7 in mainline
- Timestamp:
- 2010-02-09T20:32:11Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3149fc0, 5bda2f96
- Parents:
- eb73a50 (diff), fb150d78 (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/file_bd/file_bd.c
reb73a50 ra60b2d7 48 48 #include <devmap.h> 49 49 #include <sys/types.h> 50 #include <sys/typefmt.h> 50 51 #include <errno.h> 51 52 #include <bool.h> … … 207 208 int rc; 208 209 210 /* Check whether access is within device address bounds. */ 211 if (ba + cnt > num_blocks) { 212 printf(NAME ": Accessed blocks %" PRIuBN "-%" PRIuBN ", while " 213 "max block number is %" PRIuBN ".\n", ba, ba + cnt - 1, 214 num_blocks - 1); 215 return ELIMIT; 216 } 217 209 218 fibril_mutex_lock(&dev_lock); 210 219 … … 237 246 int rc; 238 247 248 /* Check whether access is within device address bounds. */ 249 if (ba + cnt > num_blocks) { 250 printf(NAME ": Accessed blocks %" PRIuBN "-%" PRIuBN ", while " 251 "max block numeber is %" PRIuBN ".\n", ba, ba + cnt - 1, 252 num_blocks - 1); 253 return ELIMIT; 254 } 255 239 256 fibril_mutex_lock(&dev_lock); 240 257
Note:
See TracChangeset
for help on using the changeset viewer.