Home
last modified time | relevance | path

Searched refs:pgste_val (Results 1 – 3 of 3) sorted by relevance

/linux-4.1.27/arch/s390/mm/
Dpgtable.c646 pgstev = pgste_val(pgste); in __gmap_zap()
754 pgste_val(pgste) |= PGSTE_IN_BIT; in gmap_ipte_notify()
857 pgste_val(new) &= ~(PGSTE_GR_BIT | PGSTE_GC_BIT | in set_guest_storage_key()
859 pgste_val(new) |= (key & (_PAGE_CHANGED | _PAGE_REFERENCED)) << 48; in set_guest_storage_key()
860 pgste_val(new) |= (key & (_PAGE_ACC_BITS | _PAGE_FP_BIT)) << 56; in set_guest_storage_key()
871 pgste_val(new) |= bits << 52; in set_guest_storage_key()
874 if ((pgste_val(new) ^ pgste_val(old)) & in set_guest_storage_key()
876 pgste_val(new) |= PGSTE_UC_BIT; in set_guest_storage_key()
902 key |= (pgste_val(pgste) & PGSTE_ACC_BITS) >> 56; in get_guest_storage_key()
903 key |= (pgste_val(pgste) & PGSTE_FP_BIT) >> 56; in get_guest_storage_key()
[all …]
/linux-4.1.27/arch/s390/include/asm/
Dpgtable.h606 : "d" (pgste_val(pgste)), "Q" (ptep[PTRS_PER_PTE]) in pgste_set_unlock()
640 pgste_val(pgste) |= bits << 48; /* GR bit & GC bit */ in pgste_update_all()
642 pgste_val(pgste) &= ~(PGSTE_ACC_BITS | PGSTE_FP_BIT); in pgste_update_all()
643 pgste_val(pgste) |= (skey & (_PAGE_ACC_BITS | _PAGE_FP_BIT)) << 56; in pgste_update_all()
665 nkey = (pgste_val(pgste) & (PGSTE_ACC_BITS | PGSTE_FP_BIT)) >> 56; in pgste_set_key()
666 nkey |= (pgste_val(pgste) & (PGSTE_GR_BIT | PGSTE_GC_BIT)) >> 48; in pgste_set_key()
686 pgste_val(pgste) |= PGSTE_UC_BIT; in pgste_set_pte()
752 if (pgste_val(pgste) & PGSTE_IN_BIT) { in pgste_ipte_notify()
753 pgste_val(pgste) &= ~PGSTE_IN_BIT; in pgste_ipte_notify()
772 pgste_val(pgste) &= ~_PGSTE_GPS_ZERO; in set_pte_at()
[all …]
Dpage.h79 #define pgste_val(x) ((x).pgste) macro