Changeset bfb87df in mainline for arch/amd64/include/mm/page.h
- Timestamp:
- 2006-02-09T17:02:36Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8f00329
- Parents:
- 874878a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/amd64/include/mm/page.h
r874878a rbfb87df 102 102 1<<PAGE_READ_SHIFT | 103 103 p->writeable<<PAGE_WRITE_SHIFT | 104 (!p->no_execute)<<PAGE_EXEC_SHIFT 104 (!p->no_execute)<<PAGE_EXEC_SHIFT | 105 p->global<<PAGE_GLOBAL_SHIFT 105 106 ); 106 107 } … … 123 124 p->writeable = (flags & PAGE_WRITE) != 0; 124 125 p->no_execute = (flags & PAGE_EXEC) == 0; 126 p->global = (flags & PAGE_GLOBAL) != 0; 125 127 } 126 128
Note:
See TracChangeset
for help on using the changeset viewer.