Changeset 98000fb in mainline for kernel/generic/include/mm/tlb.h


Ignore:
Timestamp:
2009-06-03T19:34:45Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
301ff30
Parents:
69e68e3
Message:

remove redundant index_t and count_t types (which were always quite ambiguous and not actually needed)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/mm/tlb.h

    r69e68e3 r98000fb  
    6262        asid_t asid;                    /**< Address space identifier. */
    6363        uintptr_t page;                 /**< Page address. */
    64         count_t count;                  /**< Number of pages to invalidate. */
     64        size_t count;                   /**< Number of pages to invalidate. */
    6565} tlb_shootdown_msg_t;
    6666
     
    6969#ifdef CONFIG_SMP
    7070extern void tlb_shootdown_start(tlb_invalidate_type_t type, asid_t asid,
    71     uintptr_t page, count_t count);
     71    uintptr_t page, size_t count);
    7272extern void tlb_shootdown_finalize(void);
    7373extern void tlb_shootdown_ipi_recv(void);
     
    8585extern void tlb_invalidate_all(void);
    8686extern void tlb_invalidate_asid(asid_t asid);
    87 extern void tlb_invalidate_pages(asid_t asid, uintptr_t page, count_t cnt);
     87extern void tlb_invalidate_pages(asid_t asid, uintptr_t page, size_t cnt);
    8888#endif
    8989
Note: See TracChangeset for help on using the changeset viewer.