Changeset f651e80 in mainline for kernel/arch/ppc64/src/mm/page.c


Ignore:
Timestamp:
2009-01-08T12:07:38Z (17 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
7447572
Parents:
c571f42
Message:

Make newlines in panic messages consistent. Add periods at end of messages so that it is obvious whether they are printed entirely.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ppc64/src/mm/page.c

    rc571f42 rf651e80  
    107107                                return NULL;
    108108                        default:
    109                                 panic("unexpected rc (%d)\n", rc);
     109                                panic("Unexpected rc (%d).", rc);
    110110                }       
    111111        }
     
    124124        if (s)
    125125                sym2 = s;
    126         panic("%p: PHT Refill Exception at %p (%s<-%s)\n", badvaddr, istate->pc, symbol, sym2);
     126        panic("%p: PHT Refill Exception at %p (%s<-%s).", badvaddr, istate->pc, symbol, sym2);
    127127}
    128128
     
    234234                                return;
    235235                        default:
    236                                 panic("Unexpected pfrc (%d)\n", pfrc);
     236                                panic("Unexpected pfrc (%d).", pfrc);
    237237                }
    238238        }
     
    289289{
    290290        if (last_frame + ALIGN_UP(size, PAGE_SIZE) > KA2PA(KERNEL_ADDRESS_SPACE_END_ARCH))
    291                 panic("Unable to map physical memory %p (%" PRIs " bytes)", physaddr, size)
     291                panic("Unable to map physical memory %p (%" PRIs " bytes).", physaddr, size)
    292292       
    293293        uintptr_t virtaddr = PA2KA(last_frame);
Note: See TracChangeset for help on using the changeset viewer.