Changes in uspace/srv/fs/udf/udf_file.c [5c702a8:38d150e] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/udf/udf_file.c
r5c702a8 r38d150e 38 38 #include <libfs.h> 39 39 #include <errno.h> 40 #include < malloc.h>40 #include <stdlib.h> 41 41 #include <inttypes.h> 42 42 #include <io/log.h> … … 71 71 FLE32(exd->extent_location.lblock_num); 72 72 73 log_msg(L VL_DEBUG,73 log_msg(LOG_DEFAULT, LVL_DEBUG, 74 74 "Extended allocator: start=%d, block_num=%d, len=%d", start, 75 75 FLE32(exd->extent_location.lblock_num), FLE32(exd->info_length)); … … 100 100 switch (icb_flag) { 101 101 case UDF_SHORT_AD: 102 log_msg(L VL_DEBUG,102 log_msg(LOG_DEFAULT, LVL_DEBUG, 103 103 "ICB: sequence of allocation descriptors - icbflag = short_ad_t"); 104 104 … … 167 167 168 168 case UDF_LONG_AD: 169 log_msg(L VL_DEBUG,169 log_msg(LOG_DEFAULT, LVL_DEBUG, 170 170 "ICB: sequence of allocation descriptors - icbflag = long_ad_t"); 171 171 … … 203 203 204 204 case UDF_EXTENDED_AD: 205 log_msg(L VL_DEBUG,205 log_msg(LOG_DEFAULT, LVL_DEBUG, 206 206 "ICB: sequence of allocation descriptors - icbflag = extended_ad_t"); 207 207 break; 208 208 209 209 case UDF_DATA_AD: 210 log_msg(L VL_DEBUG,210 log_msg(LOG_DEFAULT, LVL_DEBUG, 211 211 "ICB: sequence of allocation descriptors - icbflag = 3, node contains data itself"); 212 212 … … 253 253 switch (FLE16(data->id)) { 254 254 case UDF_FILE_ENTRY: 255 log_msg(L VL_DEBUG, "ICB: File entry descriptor found");255 log_msg(LOG_DEFAULT, LVL_DEBUG, "ICB: File entry descriptor found"); 256 256 257 257 udf_file_entry_descriptor_t *file = … … 267 267 268 268 case UDF_EFILE_ENTRY: 269 log_msg(L VL_DEBUG, "ICB: Extended file entry descriptor found");269 log_msg(LOG_DEFAULT, LVL_DEBUG, "ICB: Extended file entry descriptor found"); 270 270 271 271 udf_extended_file_entry_descriptor_t *efile = … … 281 281 282 282 case UDF_ICB_TERMINAL: 283 log_msg(L VL_DEBUG, "ICB: Terminal entry descriptor found");283 log_msg(LOG_DEFAULT, LVL_DEBUG, "ICB: Terminal entry descriptor found"); 284 284 block_put(block); 285 285 return EOK;
Note:
See TracChangeset
for help on using the changeset viewer.