Lines Matching refs:pgste_val

152 		: "d" (pgste_val(pgste)), "Q" (ptep[PTRS_PER_PTE])
185 pgste_val(pgste) |= bits << 48; /* GR bit & GC bit */
187 pgste_val(pgste) &= ~(PGSTE_ACC_BITS | PGSTE_FP_BIT);
188 pgste_val(pgste) |= (skey & (_PAGE_ACC_BITS | _PAGE_FP_BIT)) << 56;
210 nkey = (pgste_val(pgste) & (PGSTE_ACC_BITS | PGSTE_FP_BIT)) >> 56;
211 nkey |= (pgste_val(pgste) & (PGSTE_GR_BIT | PGSTE_GC_BIT)) >> 48;
232 pgste_val(pgste) |= PGSTE_UC_BIT;
246 bits = pgste_val(pgste) & (PGSTE_IN_BIT | PGSTE_VSIE_BIT);
248 pgste_val(pgste) ^= bits;
276 if ((pgste_val(pgste) & _PGSTE_GPS_USAGE_MASK) ==
297 nodat = !!(pgste_val(pgste) & _PGSTE_GPS_NODAT);
339 nodat = !!(pgste_val(pgste) & _PGSTE_GPS_NODAT);
357 nodat = !!(pgste_val(pgste) & _PGSTE_GPS_NODAT);
623 pgste_val(pgste) &= ~_PGSTE_GPS_ZERO;
636 pgste_val(pgste) |= PGSTE_IN_BIT;
670 nodat = !!(pgste_val(pgste) & _PGSTE_GPS_NODAT);
681 pgste_val(pgste) |= bit;
701 pgste_val(spgste) |= PGSTE_VSIE_BIT;
721 nodat = !!(pgste_val(pgste) & _PGSTE_GPS_NODAT);
750 pgstev = pgste_val(pgste);
759 pgste_val(pgste) &= ~(_PGSTE_GPS_USAGE_MASK | _PGSTE_GPS_NODAT);
772 pgste_val(pgste) &= ~(PGSTE_ACC_BITS | PGSTE_FP_BIT);
773 pgste_val(pgste) |= PGSTE_GR_BIT | PGSTE_GC_BIT;
793 dirty = !!(pgste_val(pgste) & PGSTE_UC_BIT);
794 pgste_val(pgste) &= ~PGSTE_UC_BIT;
798 nodat = !!(pgste_val(pgste) & _PGSTE_GPS_NODAT);
856 pgste_val(new) &= ~(PGSTE_GR_BIT | PGSTE_GC_BIT |
859 pgste_val(new) |= (keyul & (_PAGE_CHANGED | _PAGE_REFERENCED)) << 48;
860 pgste_val(new) |= (keyul & (_PAGE_ACC_BITS | _PAGE_FP_BIT)) << 56;
871 pgste_val(new) |= bits << 52;
874 if ((pgste_val(new) ^ pgste_val(old)) &
876 pgste_val(new) |= PGSTE_UC_BIT;
964 pgste_val(new) &= ~PGSTE_GR_BIT;
970 pgste_val(new) |= ((unsigned long) cc << 53) & PGSTE_HR_BIT;
973 cc |= (pgste_val(old) & (PGSTE_GR_BIT | PGSTE_GC_BIT)) >> 49;
975 if ((pgste_val(new) ^ pgste_val(old)) & PGSTE_GR_BIT)
976 pgste_val(new) |= PGSTE_UC_BIT;
1027 *key = (pgste_val(pgste) & (PGSTE_ACC_BITS | PGSTE_FP_BIT)) >> 56;
1032 *key |= (pgste_val(pgste) & (PGSTE_GR_BIT | PGSTE_GC_BIT)) >> 48;
1072 pgstev = pgste_val(pgste);
1140 pgste_val(pgste) = pgstev;
1173 pgste_val(new) &= ~bits;
1174 pgste_val(new) |= value & bits;
1202 *pgstep = pgste_val(pgste_get(ptep));