mmu.h 505 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 as
  6. * published by the Free Software Foundation.
  7. */
  8. #ifndef _ASM_ARC_MMU_H
  9. #define _ASM_ARC_MMU_H
  10. #ifndef __ASSEMBLY__
  11. typedef struct {
  12. unsigned long asid; /* Pvt Addr-Space ID for mm */
  13. #ifdef CONFIG_ARC_TLB_DBG
  14. struct task_struct *tsk;
  15. #endif
  16. } mm_context_t;
  17. #endif
  18. #endif