Changeset 96d9cdd in mainline


Ignore:
Timestamp:
2012-02-10T09:46:53Z (12 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c617e98, e10d41a
Parents:
492ddc9
Message:

Revert most of jakub@….
The code already did the right thing; it was the author who was confused.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/mm/km.c

    r492ddc9 r96d9cdd  
    151151{
    152152        uintptr_t offs;
    153         size_t align;
    154153        ipl_t ipl;
    155154
     
    170169        page_table_unlock(AS_KERNEL, true);
    171170
    172         /*
    173          * Match the size parameter with that of km_page_alloc() in
    174          * km_map_aligned().
    175          */
    176         align = ispwr2(size) ? size : (1U << (fnzb(size) + 1));
    177         km_page_free(vaddr, max(PAGE_SIZE, align));
     171        km_page_free(vaddr, size);
    178172}
    179173
Note: See TracChangeset for help on using the changeset viewer.