Changeset c477c80 in mainline for kernel


Ignore:
Timestamp:
2019-01-03T22:23:00Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
06412ba
Parents:
7acd787
Message:

Fix some common misspellings

Location:
kernel
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/arm32/src/mm/tlb.c

    r7acd787 rc477c80  
    7676/** Invalidate single entry in TLB
    7777 *
    78  * @param page Virtual adress of the page
     78 * @param page Virtual address of the page
    7979 */
    8080static inline void invalidate_page(uintptr_t page)
  • kernel/arch/ppc32/include/arch/istate_struct.h

    r7acd787 rc477c80  
    8686        /* imitation of frame pointer linkage */
    8787        uint32_t sp_frame;
    88         /* imitation of return adress linkage */
     88        /* imitation of return address linkage */
    8989        uint32_t lr_frame;
    9090        uint32_t r0;
  • kernel/generic/src/mm/as.c

    r7acd787 rc477c80  
    194194}
    195195
    196 /** Destroy adress space.
     196/** Destroy address space.
    197197 *
    198198 * When there are no tasks referencing this address space (i.e. its refcount is
     
    13471347}
    13481348
    1349 /** Change adress space area flags.
     1349/** Change address space area flags.
    13501350 *
    13511351 * The idea is to have the same data, but with a different access mode.
     
    21502150}
    21512151
    2152 /** Get list of adress space areas.
     2152/** Get list of address space areas.
    21532153 *
    21542154 * @param as    Address space.
  • kernel/generic/src/proc/thread.c

    r7acd787 rc477c80  
    180180         * covered by the kernel identity mapping, which guarantees not to
    181181         * nest TLB-misses infinitely (either via some hardware mechanism or
    182          * by the construciton of the assembly-language part of the TLB-miss
     182         * by the construction of the assembly-language part of the TLB-miss
    183183         * handler).
    184184         *
    185185         * This restriction can be lifted once each architecture provides
    186          * a similar guarantee, for example by locking the kernel stack
     186         * a similar guarantee, for example, by locking the kernel stack
    187187         * in the TLB whenever it is allocated from the high-memory and the
    188188         * thread is being scheduled to run.
Note: See TracChangeset for help on using the changeset viewer.