Changes in / [eb40d86:1eaa3cf] in mainline


Ignore:
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/debug/panic.c

    reb40d86 r1eaa3cf  
    9696        printf("THE=%p: ", THE);
    9797        if (THE != NULL) {
    98                 printf("pd=%" PRIun " thread=%p task=%p cpu=%p as=%p"
     98                printf("pe=%" PRIun " thr=%p task=%p cpu=%p as=%p"
    9999                    " magic=%#" PRIx32 "\n", THE->preemption_disabled,
    100100                    THE->thread, THE->task, THE->cpu, THE->as, THE->magic);
    101                
    102                 if (THE->thread != NULL)
    103                         printf("thread=\"%s\"\n", THE->thread->name);
    104                
    105                 if (THE->task != NULL)
    106                         printf("task=\"%s\"\n", THE->task->name);
    107101        } else
    108102                printf("invalid\n");
  • uspace/srv/fs/ext4fs/ext4fs_ops.c

    reb40d86 r1eaa3cf  
    876876        if (rc != EOK)
    877877                return rc;
     878        if (NULL == inst)
     879                return ENOENT;
    878880
    879881        ext4_superblock_t *sb = inst->filesystem->superblock;
  • uspace/srv/fs/mfs/mfs_ops.c

    reb40d86 r1eaa3cf  
    12011201        *count = sbi->nfree_zones;
    12021202
    1203         return rc;
     1203        return EOK;
    12041204}
    12051205
Note: See TracChangeset for help on using the changeset viewer.