Changeset 904b1bc in mainline for kernel/arch/sparc64/src
- Timestamp:
- 2018-05-22T10:36:58Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a4eb3ba2
- Parents:
- 4f8772d4
- git-author:
- Jiri Svoboda <jiri@…> (2018-05-21 17:36:30)
- git-committer:
- Jiri Svoboda <jiri@…> (2018-05-22 10:36:58)
- Location:
- kernel/arch/sparc64/src
- Files:
-
- 2 edited
-
mm/sun4u/tsb.c (modified) (2 diffs)
-
sun4v/md.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/src/mm/sun4u/tsb.c
r4f8772d4 r904b1bc 97 97 */ 98 98 99 tte->tag.invalid = true; /* invalidate the entry 100 * (tag target has this 101 * set to 0) */ 99 /* Invalidate the entry (tag target has this set to 0) */ 100 tte->tag.invalid = true; 102 101 103 102 write_barrier(); … … 142 141 */ 143 142 144 tte->tag.invalid = true; /* invalidate the entry 145 * (tag target has this 146 * set to 0) */ 143 /* Invalidate the entry (tag target has this set to 0) */ 144 tte->tag.invalid = true; 147 145 148 146 write_barrier(); -
kernel/arch/sparc64/src/sun4v/md.c
r4f8772d4 r904b1bc 66 66 /** machine description element (in the node block) */ 67 67 typedef struct { 68 uint8_t tag; /**< Type of element */ 69 uint8_t name_len; /**< Length in bytes of element name */ 70 uint16_t _reserved_field; /**< reserved field (zeros) */ 71 uint32_t name_offset; /**< Location offset of name associated 72 with this element relative to 73 start of name block */ 68 /** Type of element */ 69 uint8_t tag; 70 /** Length in bytes of element name */ 71 uint8_t name_len; 72 /** Reserved field (zeros) */ 73 uint16_t _reserved_field; 74 /** Location offset of name associated with this element relative to 75 * start of name block 76 */ 77 uint32_t name_offset; 78 74 79 union { 75 80 /** for elements of type “PROP_STR” and of type “PROP_DATA” */
Note:
See TracChangeset
for help on using the changeset viewer.
