[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 06/13] s390x/mmu_helper: fixup mmu_translate() documentation
From: |
David Hildenbrand |
Subject: |
[PATCH v2 06/13] s390x/mmu_helper: fixup mmu_translate() documentation |
Date: |
Wed, 11 Aug 2021 11:05:20 +0200 |
Looks like we forgot to adjust documentation of one parameter.
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: David Hildenbrand <david@redhat.com>
---
target/s390x/mmu_helper.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/target/s390x/mmu_helper.c b/target/s390x/mmu_helper.c
index 167f1b1455..ca25dadb5b 100644
--- a/target/s390x/mmu_helper.c
+++ b/target/s390x/mmu_helper.c
@@ -374,7 +374,8 @@ static void mmu_handle_skey(target_ulong addr, int rw, int
*flags)
* @param asc address space control (one of the PSW_ASC_* modes)
* @param raddr the translated address is stored to this pointer
* @param flags the PAGE_READ/WRITE/EXEC flags are stored to this pointer
- * @param exc true = inject a program check if a fault occurred
+ * @param tec the translation exception code if stored to this pointer if
+ * there is an exception to raise
* @return 0 = success, != 0, the exception to raise
*/
int mmu_translate(CPUS390XState *env, target_ulong vaddr, int rw, uint64_t asc,
--
2.31.1
- [PATCH v2 00/13] s390x: skey related fixes, cleanups, and memory device preparations, David Hildenbrand, 2021/08/11
- [PATCH v2 01/13] s390x/tcg: wrap address for RRBE, David Hildenbrand, 2021/08/11
- [PATCH v2 02/13] s390x/tcg: fix ignoring bit 63 when setting the storage key in SSKE, David Hildenbrand, 2021/08/11
- [PATCH v2 03/13] s390x/tcg: convert real to absolute address for RRBE, SSKE and ISKE, David Hildenbrand, 2021/08/11
- [PATCH v2 04/13] s390x/tcg: check for addressing exceptions for RRBE, SSKE and ISKE, David Hildenbrand, 2021/08/11
- [PATCH v2 05/13] s390x/mmu_helper: no need to pass access type to mmu_translate_asce(), David Hildenbrand, 2021/08/11
- [PATCH v2 06/13] s390x/mmu_helper: fixup mmu_translate() documentation,
David Hildenbrand <=
- [PATCH v2 07/13] s390x/mmu_helper: move address validation into mmu_translate*(), David Hildenbrand, 2021/08/11
- [PATCH v2 08/13] s390x/mmu_helper: avoid setting the storage key if nothing changed, David Hildenbrand, 2021/08/11
- [PATCH v2 09/13] hw/s390x/s390-skeys: use memory mapping to detect which storage keys to migrate, David Hildenbrand, 2021/08/11
- [PATCH v2 10/13] hw/s390x/s390-skeys: use memory mapping to detect which storage keys to dump, David Hildenbrand, 2021/08/11
- [PATCH v2 11/13] hw/s390x/s390-skeys: check if an address is valid before dumping the key, David Hildenbrand, 2021/08/11
- [PATCH v2 12/13] hw/s390x/s390-skeys: rename skeys_enabled to skeys_are_enabled, David Hildenbrand, 2021/08/11
- [PATCH v2 13/13] hw/s390x/s390-skeys: lazy storage key enablement under TCG, David Hildenbrand, 2021/08/11