aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuslan Bukin <br@FreeBSD.org>2022-05-09 10:24:47 +0000
committerRuslan Bukin <br@FreeBSD.org>2022-05-09 10:24:47 +0000
commit0a8e88fa73033d4a6d5bc11668c053ecdad58746 (patch)
treee1f5b49f3e3871f4d62bf7a026a9d0952764db4e
parentc6df21760381c3e48bcd412705de6f0ded9e4aae (diff)
downloadsrc-0a8e88fa73033d4a6d5bc11668c053ecdad58746.tar.gz
src-0a8e88fa73033d4a6d5bc11668c053ecdad58746.zip
Change __unused to __diagused.
Pointed out by: jhb Sponsored by: UKRI
-rw-r--r--sys/arm64/iommu/iommu.c2
-rw-r--r--sys/arm64/iommu/iommu_pmap.c6
-rw-r--r--sys/arm64/iommu/smmu.c2
3 files changed, 5 insertions, 5 deletions
diff --git a/sys/arm64/iommu/iommu.c b/sys/arm64/iommu/iommu.c
index 36f3dad290d5..447f3e141610 100644
--- a/sys/arm64/iommu/iommu.c
+++ b/sys/arm64/iommu/iommu.c
@@ -300,7 +300,7 @@ iommu_domain_unload(struct iommu_domain *iodom,
struct iommu_map_entries_tailq *entries, bool cansleep)
{
struct iommu_map_entry *entry, *entry1;
- int error __unused;
+ int error __diagused;
TAILQ_FOREACH_SAFE(entry, entries, dmamap_link, entry1) {
KASSERT((entry->flags & IOMMU_MAP_ENTRY_MAP) != 0,
diff --git a/sys/arm64/iommu/iommu_pmap.c b/sys/arm64/iommu/iommu_pmap.c
index 06775efedfe9..5f3873044f02 100644
--- a/sys/arm64/iommu/iommu_pmap.c
+++ b/sys/arm64/iommu/iommu_pmap.c
@@ -560,7 +560,7 @@ _pmap_alloc_l3(pmap_t pmap, vm_pindex_t ptepindex)
void
iommu_pmap_release(pmap_t pmap)
{
- boolean_t rv __unused;
+ boolean_t rv __diagused;
struct spglist free;
vm_page_t m;
@@ -604,7 +604,7 @@ pmap_gpu_enter(pmap_t pmap, vm_offset_t va, vm_paddr_t pa,
{
pd_entry_t *pde;
pt_entry_t new_l3;
- pt_entry_t orig_l3 __unused;
+ pt_entry_t orig_l3 __diagused;
pt_entry_t *l3;
vm_page_t mpte;
pd_entry_t *l1p;
@@ -722,7 +722,7 @@ pmap_smmu_enter(pmap_t pmap, vm_offset_t va, vm_paddr_t pa,
{
pd_entry_t *pde;
pt_entry_t new_l3;
- pt_entry_t orig_l3 __unused;
+ pt_entry_t orig_l3 __diagused;
pt_entry_t *l3;
vm_page_t mpte;
int lvl;
diff --git a/sys/arm64/iommu/smmu.c b/sys/arm64/iommu/smmu.c
index 74b68ce1d07a..f3e434c02e3f 100644
--- a/sys/arm64/iommu/smmu.c
+++ b/sys/arm64/iommu/smmu.c
@@ -1874,7 +1874,7 @@ smmu_ctx_lookup_by_sid(device_t dev, u_int sid)
static struct iommu_ctx *
smmu_ctx_lookup(device_t dev, device_t child)
{
- struct iommu_unit *iommu __unused;
+ struct iommu_unit *iommu __diagused;
struct smmu_softc *sc;
struct smmu_domain *domain;
struct smmu_unit *unit;