From b8b349010a03533432dac3acdd416c5f6f3f6024 Mon Sep 17 00:00:00 2001 From: mrg Date: Mon, 7 Sep 2020 03:12:51 +0000 Subject: [PATCH] remove __packed from struct netbsd32_lsdisable. the structure is already properly aligned (the embedded int64 already has align(4) marker applied where needed.) same size structure generated. --- sys/compat/netbsd32/netbsd32_ioctl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/compat/netbsd32/netbsd32_ioctl.h b/sys/compat/netbsd32/netbsd32_ioctl.h index 6e80b62c142e..1a94db88d48b 100644 --- a/sys/compat/netbsd32/netbsd32_ioctl.h +++ b/sys/compat/netbsd32/netbsd32_ioctl.h @@ -1,4 +1,4 @@ -/* $NetBSD: netbsd32_ioctl.h,v 1.72 2020/07/21 05:33:51 simonb Exp $ */ +/* $NetBSD: netbsd32_ioctl.h,v 1.73 2020/09/07 03:12:51 mrg Exp $ */ /* * Copyright (c) 1998, 2001 Matthew R. Green @@ -645,7 +645,7 @@ struct netbsd32_lsdisable { netbsd32_size_t ld_size; /* buffer space allocated */ struct netbsd32_timespec ld_time; /* time spent enabled */ uint64_t ld_freq[64]; /* counter HZ by CPU number */ -} __packed; +}; #define IOC_LOCKSTAT_ENABLE32 _IOW('L', 1, struct netbsd32_lsenable) #define IOC_LOCKSTAT_DISABLE32 _IOR('L', 2, struct netbsd32_lsdisable)