diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-11-07 09:04:56 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-11-07 09:04:56 +0000 |
commit | 35eff45350be179c55ee2d291a976e5ccbd25f8e (patch) | |
tree | e412e40d666df75e436ef5d1067d6e75d8cd596a /sys/uvm/uvm_swap.c | |
parent | 90e21201cf7ed5a8c1a63af936004a495cae8f26 (diff) |
de-macro SWAP_KEY_*; ok miod@ mpi@
Diffstat (limited to 'sys/uvm/uvm_swap.c')
-rw-r--r-- | sys/uvm/uvm_swap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/uvm/uvm_swap.c b/sys/uvm/uvm_swap.c index 25a2e8c8e98..934d049492c 100644 --- a/sys/uvm/uvm_swap.c +++ b/sys/uvm/uvm_swap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uvm_swap.c,v 1.172 2024/10/30 06:16:27 jsg Exp $ */ +/* $OpenBSD: uvm_swap.c,v 1.173 2024/11/07 09:04:55 jsg Exp $ */ /* $NetBSD: uvm_swap.c,v 1.40 2000/11/17 11:39:39 mrg Exp $ */ /* @@ -1624,7 +1624,7 @@ uvm_swap_free(int startslot, int nslots) key = SWD_KEY(sdp, startslot + i); if (key->refcount != 0) - SWAP_KEY_PUT(sdp, key); + swap_key_put(key); } /* Mark range as not decrypt */ @@ -1813,7 +1813,7 @@ uvm_swap_io(struct vm_page **pps, int startslot, int npages, int flags) if (encrypt) { key = SWD_KEY(sdp, startslot + i); - SWAP_KEY_GET(sdp, key); /* add reference */ + swap_key_get(key); /* add reference */ swap_encrypt(key, src, dst, block, PAGE_SIZE); block += btodb(PAGE_SIZE); |