Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/udf/udf_file.c

    r5c702a8 rcde999a  
    3838#include <libfs.h>
    3939#include <errno.h>
    40 #include <malloc.h>
     40#include <stdlib.h>
    4141#include <inttypes.h>
    4242#include <io/log.h>
     
    5454 * @param pos      Position with which we read
    5555 *
    56  * @return EOK on success or a negative error code.
     56 * @return EOK on success or an error code.
    5757 *
    5858 */
     
    7171            FLE32(exd->extent_location.lblock_num);
    7272       
    73         log_msg(LVL_DEBUG,
     73        log_msg(LOG_DEFAULT, LVL_DEBUG,
    7474            "Extended allocator: start=%d, block_num=%d, len=%d", start,
    7575            FLE32(exd->extent_location.lblock_num), FLE32(exd->info_length));
     
    9090 * @param len         Length of sequence
    9191 *
    92  * @return EOK on success or a negative error code.
     92 * @return EOK on success or an error code.
    9393 *
    9494 */
     
    100100        switch (icb_flag) {
    101101        case UDF_SHORT_AD:
    102                 log_msg(LVL_DEBUG,
     102                log_msg(LOG_DEFAULT, LVL_DEBUG,
    103103                    "ICB: sequence of allocation descriptors - icbflag = short_ad_t");
    104104               
     
    167167               
    168168        case UDF_LONG_AD:
    169                 log_msg(LVL_DEBUG,
     169                log_msg(LOG_DEFAULT, LVL_DEBUG,
    170170                    "ICB: sequence of allocation descriptors - icbflag = long_ad_t");
    171171               
     
    203203               
    204204        case UDF_EXTENDED_AD:
    205                 log_msg(LVL_DEBUG,
     205                log_msg(LOG_DEFAULT, LVL_DEBUG,
    206206                    "ICB: sequence of allocation descriptors - icbflag = extended_ad_t");
    207207                break;
    208208               
    209209        case UDF_DATA_AD:
    210                 log_msg(LVL_DEBUG,
     210                log_msg(LOG_DEFAULT, LVL_DEBUG,
    211211                    "ICB: sequence of allocation descriptors - icbflag = 3, node contains data itself");
    212212               
     
    231231 * @param node    UDF node
    232232 *
    233  * @return    EOK on success or a negative error code.
     233 * @return    EOK on success or an error code.
    234234 */
    235235int udf_read_icb(udf_node_t *node)
     
    253253                switch (FLE16(data->id)) {
    254254                case UDF_FILE_ENTRY:
    255                         log_msg(LVL_DEBUG, "ICB: File entry descriptor found");
     255                        log_msg(LOG_DEFAULT, LVL_DEBUG, "ICB: File entry descriptor found");
    256256                       
    257257                        udf_file_entry_descriptor_t *file =
     
    267267                       
    268268                case UDF_EFILE_ENTRY:
    269                         log_msg(LVL_DEBUG, "ICB: Extended file entry descriptor found");
     269                        log_msg(LOG_DEFAULT, LVL_DEBUG, "ICB: Extended file entry descriptor found");
    270270                       
    271271                        udf_extended_file_entry_descriptor_t *efile =
     
    281281                       
    282282                case UDF_ICB_TERMINAL:
    283                         log_msg(LVL_DEBUG, "ICB: Terminal entry descriptor found");
     283                        log_msg(LOG_DEFAULT, LVL_DEBUG, "ICB: Terminal entry descriptor found");
    284284                        block_put(block);
    285285                        return EOK;
     
    300300 * @param node UDF node
    301301 *
    302  * @return EOK on success or a negative error code.
     302 * @return EOK on success or an error code.
    303303 *
    304304 */
     
    315315 * @param pos  Number of FID which we need to find
    316316 *
    317  * @return EOK on success or a negative error code.
     317 * @return EOK on success or an error code.
    318318 *
    319319 */
     
    366366 * @param pos   Number of FID which we need to find
    367367 *
    368  * @return EOK on success or a negative error code.
     368 * @return EOK on success or an error code.
    369369 *
    370370 */
     
    385385 * @param pos   Number of FID which we need to find
    386386 *
    387  * @return EOK on success or a negative error code.
     387 * @return EOK on success or an error code.
    388388 *
    389389 */
     
    466466 * @param len   Length of buf
    467467 *
    468  * @return EOK on success or a negative error code.
     468 * @return EOK on success or an error code.
    469469 *
    470470 */
     
    573573 * @param len      Length of data for reading
    574574 *
    575  * @return EOK on success or a negative error code.
     575 * @return EOK on success or an error code.
    576576 *
    577577 */
Note: See TracChangeset for help on using the changeset viewer.