Index: sys/net80211/ieee80211_radiotap.h =================================================================== RCS file: /cvsroot/src/sys/net80211/ieee80211_radiotap.h,v retrieving revision 1.24 diff -p -u -r1.24 ieee80211_radiotap.h --- sys/net80211/ieee80211_radiotap.h 25 Feb 2011 10:45:57 -0000 1.24 +++ sys/net80211/ieee80211_radiotap.h 5 Oct 2019 03:04:14 -0000 @@ -78,7 +78,7 @@ struct ieee80211_radiotap_header { * Additional extensions are made * by setting bit 31. */ -} __packed __aligned(8); +} __aligned(8); /* * Name Data type Units Index: sys/dev/ic/anvar.h =================================================================== RCS file: /cvsroot/src/sys/dev/ic/anvar.h,v retrieving revision 1.21 diff -p -u -r1.21 anvar.h --- sys/dev/ic/anvar.h 2 Feb 2017 10:05:35 -0000 1.21 +++ sys/dev/ic/anvar.h 5 Oct 2019 03:04:14 -0000 @@ -86,7 +86,7 @@ struct an_rx_radiotap_header { u_int16_t ar_chan_freq; u_int16_t ar_chan_flags; int8_t ar_antsignal; -} __packed; +}; #define AN_TX_RADIOTAP_PRESENT ((1 << IEEE80211_RADIOTAP_FLAGS) | \ (1 << IEEE80211_RADIOTAP_RATE) | \ @@ -98,7 +98,7 @@ struct an_tx_radiotap_header { u_int8_t at_rate; u_int16_t at_chan_freq; u_int16_t at_chan_flags; -} __packed; +}; #define AN_GAPLEN_MAX 8 Index: sys/dev/ic/athnvar.h =================================================================== RCS file: /cvsroot/src/sys/dev/ic/athnvar.h,v retrieving revision 1.7 diff -p -u -r1.7 athnvar.h --- sys/dev/ic/athnvar.h 13 Sep 2019 07:55:06 -0000 1.7 +++ sys/dev/ic/athnvar.h 5 Oct 2019 03:04:14 -0000 @@ -75,7 +75,7 @@ struct athn_rx_radiotap_header { uint16_t wr_chan_flags; int8_t wr_dbm_antsignal; uint8_t wr_antenna; -} __packed; +}; #define ATHN_RX_RADIOTAP_PRESENT \ (1 << IEEE80211_RADIOTAP_TSFT | \ @@ -91,7 +91,7 @@ struct athn_tx_radiotap_header { uint8_t wt_rate; uint16_t wt_chan_freq; uint16_t wt_chan_flags; -} __packed; +}; #define ATHN_TX_RADIOTAP_PRESENT \ (1 << IEEE80211_RADIOTAP_FLAGS | \ Index: sys/dev/ic/atwvar.h =================================================================== RCS file: /cvsroot/src/sys/dev/ic/atwvar.h,v retrieving revision 1.39 diff -p -u -r1.39 atwvar.h --- sys/dev/ic/atwvar.h 19 Apr 2018 21:50:08 -0000 1.39 +++ sys/dev/ic/atwvar.h 5 Oct 2019 03:04:14 -0000 @@ -146,7 +146,7 @@ struct atw_rx_radiotap_header { uint16_t ar_chan_freq; uint16_t ar_chan_flags; uint8_t ar_antsignal; -} __packed; +}; #define ATW_TX_RADIOTAP_PRESENT ((1 << IEEE80211_RADIOTAP_RATE) | \ (1 << IEEE80211_RADIOTAP_CHANNEL)) @@ -157,7 +157,7 @@ struct atw_tx_radiotap_header { uint8_t at_pad; uint16_t at_chan_freq; uint16_t at_chan_flags; -} __packed; +}; enum atw_revision { ATW_REVISION_AB = 0x11, /* ADM8211A */ Index: sys/dev/ic/malovar.h =================================================================== RCS file: /cvsroot/src/sys/dev/ic/malovar.h,v retrieving revision 1.3 diff -p -u -r1.3 malovar.h --- sys/dev/ic/malovar.h 2 Feb 2017 10:05:35 -0000 1.3 +++ sys/dev/ic/malovar.h 5 Oct 2019 03:04:14 -0000 @@ -59,7 +59,7 @@ struct malo_rx_radiotap_hdr { uint8_t wr_flags; uint16_t wr_chan_freq; uint16_t wr_chan_flags; -} __packed; +}; #define MALO_TX_RADIOTAP_PRESENT \ ((1 << IEEE80211_RADIOTAP_FLAGS) | \ @@ -72,7 +72,7 @@ struct malo_tx_radiotap_hdr { uint8_t wt_rate; uint16_t wt_chan_freq; uint16_t wt_chan_flags; -} __packed; +}; struct malo_softc { device_t sc_dev; Index: sys/dev/ic/mfireg.h =================================================================== RCS file: /cvsroot/src/sys/dev/ic/mfireg.h,v retrieving revision 1.9 diff -p -u -r1.9 mfireg.h --- sys/dev/ic/mfireg.h 24 Nov 2018 18:10:29 -0000 1.9 +++ sys/dev/ic/mfireg.h 5 Oct 2019 03:04:14 -0000 @@ -269,7 +269,7 @@ union mfi_mbox { uint8_t b[MFI_MBOX_SIZE]; uint16_t s[6]; uint32_t w[3]; -} __packed __aligned(4); +}; /* mfi completion codes */ typedef enum { @@ -417,13 +417,13 @@ typedef enum { /* sense buffer */ struct mfi_sense { uint8_t mse_data[MFI_SENSE_SIZE]; -} __packed; +}; /* scatter gather elements */ struct mfi_sg32 { uint32_t addr; uint32_t len; -} __packed; +}; struct mfi_sg64 { uint64_t addr; @@ -434,14 +434,14 @@ struct mfi_sg_ieee { uint64_t addr; uint32_t len; uint32_t flags; -} __packed; +}; union mfi_sgl { struct mfi_sg32 sg32[1]; struct mfi_sg64 sg64[1]; struct mfi_sg_ieee sg_ieee[1]; -} __packed; +}; /* message frame */ struct mfi_frame_header { @@ -458,7 +458,7 @@ struct mfi_frame_header { uint16_t mfh_flags; uint16_t mfh_timeout; uint32_t mfh_data_len; -} __packed; +}; union mfi_sgl_frame { struct mfi_sg32 sge32[8]; @@ -514,7 +514,7 @@ struct mfi_dcmd_frame { uint32_t mdf_opcode; union mfi_mbox mdf_mbox; union mfi_sgl mdf_sgl; -} __packed; +}; #define MFI_DCMD_MBOX_PEND_FLAG 0x1 struct mfi_abort_frame { @@ -524,7 +524,7 @@ struct mfi_abort_frame { uint32_t maf_abort_mfi_addr_lo; uint32_t maf_abort_mfi_addr_hi; uint32_t maf_reserved[6]; -} __packed; +}; struct mfi_smp_frame { struct mfi_frame_header msf_header; @@ -562,10 +562,9 @@ union mfi_evt_class_locale { uint16_t locale; uint8_t reserved; int8_t class; - } __packed mec_members; - + } mec_members; uint32_t mec_word; -} __packed; +}; struct mfi_evt_log_info { uint32_t mel_newest_seq_num; @@ -573,30 +572,30 @@ struct mfi_evt_log_info { uint32_t mel_clear_seq_num; uint32_t mel_shutdown_seq_num; uint32_t mel_boot_seq_num; -} __packed; +}; struct mfi_progress { uint16_t mp_progress; uint16_t mp_elapsed_seconds; -} __packed; +}; struct mfi_evtarg_ld { uint16_t mel_target_id; uint8_t mel_ld_index; uint8_t mel_reserved; -} __packed; +}; struct mfi_evtarg_pd { uint16_t mep_device_id; uint8_t mep_encl_index; uint8_t mep_slot_number; -} __packed; +}; struct mfi_evtarg_pd_state { struct mfi_evtarg_pd pd; uint32_t prev_state; uint32_t new_state; -} __packed; +}; struct mfi_evtarg_pd_address { uint16_t device_id; @@ -606,22 +605,22 @@ struct mfi_evtarg_pd_address { struct { uint8_t encl_index; uint8_t slot_number; - } __packed pd_address; + } pd_address; struct { uint8_t encl_position; uint8_t encl_connector_index; - } __packed encl_address; - } __packed address; + } encl_address; + } address; uint8_t scsi_dev_type; union { uint8_t port_bitmap; uint8_t port_numbers; - } __packed connected; + } connected; uint64_t sas_addr[2]; -} __packed __aligned(8); +}; struct mfi_evt_detail { uint32_t med_seq_num; Index: sys/dev/ic/nvmereg.h =================================================================== RCS file: /cvsroot/src/sys/dev/ic/nvmereg.h,v retrieving revision 1.13 diff -p -u -r1.13 nvmereg.h --- sys/dev/ic/nvmereg.h 1 Dec 2018 18:25:39 -0000 1.13 +++ sys/dev/ic/nvmereg.h 5 Oct 2019 03:04:14 -0000 @@ -136,7 +136,7 @@ struct nvme_sqe { union { uint64_t prp[2]; struct nvme_sge sge; - } __packed entry; + } entry; uint32_t cdw10; uint32_t cdw11; @@ -189,7 +189,7 @@ struct nvme_sqe_io { union { uint64_t prp[2]; struct nvme_sge sge; - } __packed entry; + } entry; uint64_t slba; /* Starting LBA */ Index: sys/dev/ic/rt2560var.h =================================================================== RCS file: /cvsroot/src/sys/dev/ic/rt2560var.h,v retrieving revision 1.10 diff -p -u -r1.10 rt2560var.h --- sys/dev/ic/rt2560var.h 2 Feb 2017 10:05:35 -0000 1.10 +++ sys/dev/ic/rt2560var.h 5 Oct 2019 03:04:14 -0000 @@ -27,7 +27,7 @@ struct rt2560_rx_radiotap_header { uint16_t wr_chan_flags; uint8_t wr_antenna; uint8_t wr_antsignal; -} __packed; +}; #define RT2560_RX_RADIOTAP_PRESENT \ ((1 << IEEE80211_RADIOTAP_TSFT) | \ @@ -44,7 +44,7 @@ struct rt2560_tx_radiotap_header { uint16_t wt_chan_freq; uint16_t wt_chan_flags; uint8_t wt_antenna; -} __packed; +}; #define RT2560_TX_RADIOTAP_PRESENT \ ((1 << IEEE80211_RADIOTAP_FLAGS) | \ Index: sys/dev/ic/rt2661var.h =================================================================== RCS file: /cvsroot/src/sys/dev/ic/rt2661var.h,v retrieving revision 1.12 diff -p -u -r1.12 rt2661var.h --- sys/dev/ic/rt2661var.h 2 Feb 2017 10:05:35 -0000 1.12 +++ sys/dev/ic/rt2661var.h 5 Oct 2019 03:04:14 -0000 @@ -26,7 +26,7 @@ struct rt2661_rx_radiotap_header { uint16_t wr_chan_freq; uint16_t wr_chan_flags; uint8_t wr_antsignal; -} __packed; +}; #define RT2661_RX_RADIOTAP_PRESENT \ ((1 << IEEE80211_RADIOTAP_TSFT) | \ @@ -41,7 +41,7 @@ struct rt2661_tx_radiotap_header { uint8_t wt_rate; uint16_t wt_chan_freq; uint16_t wt_chan_flags; -} __packed; +}; #define RT2661_TX_RADIOTAP_PRESENT \ ((1 << IEEE80211_RADIOTAP_FLAGS) | \ Index: sys/dev/ic/rt2860var.h =================================================================== RCS file: /cvsroot/src/sys/dev/ic/rt2860var.h,v retrieving revision 1.5 diff -p -u -r1.5 rt2860var.h --- sys/dev/ic/rt2860var.h 25 Jul 2017 23:17:20 -0000 1.5 +++ sys/dev/ic/rt2860var.h 5 Oct 2019 03:04:14 -0000 @@ -42,7 +42,7 @@ struct rt2860_rx_radiotap_header { uint8_t wr_dbm_antsignal; uint8_t wr_antenna; uint8_t wr_antsignal; -} __packed __aligned(8); +} __aligned(8); #define RT2860_RX_RADIOTAP_PRESENT \ (1 << IEEE80211_RADIOTAP_FLAGS | \ @@ -59,7 +59,7 @@ struct rt2860_tx_radiotap_header { uint16_t wt_chan_freq; uint16_t wt_chan_flags; uint8_t wt_hwqueue; -} __packed __aligned(8); +} __aligned(8); #define RT2860_TX_RADIOTAP_PRESENT \ (1 << IEEE80211_RADIOTAP_FLAGS | \ Index: sys/dev/ic/rtwvar.h =================================================================== RCS file: /cvsroot/src/sys/dev/ic/rtwvar.h,v retrieving revision 1.47 diff -p -u -r1.47 rtwvar.h --- sys/dev/ic/rtwvar.h 19 Apr 2018 21:50:08 -0000 1.47 +++ sys/dev/ic/rtwvar.h 5 Oct 2019 03:04:14 -0000 @@ -295,7 +295,7 @@ struct rtw_rx_radiotap_header { uint8_t p_antsignal; } u_philips; } rr_u; -} __packed; +}; #define RTW_TX_RADIOTAP_PRESENT \ ((1 << IEEE80211_RADIOTAP_RATE) | \ @@ -308,7 +308,7 @@ struct rtw_tx_radiotap_header { uint8_t rt_pad; uint16_t rt_chan_freq; uint16_t rt_chan_flags; -} __packed; +}; enum rtw_attach_state {FINISHED, FINISH_DESCMAP_LOAD, FINISH_DESCMAP_CREATE, FINISH_DESC_MAP, FINISH_DESC_ALLOC, FINISH_RXMAPS_CREATE, Index: sys/dev/ic/wivar.h =================================================================== RCS file: /cvsroot/src/sys/dev/ic/wivar.h,v retrieving revision 1.66 diff -p -u -r1.66 wivar.h --- sys/dev/ic/wivar.h 2 Feb 2017 10:05:35 -0000 1.66 +++ sys/dev/ic/wivar.h 5 Oct 2019 03:04:14 -0000 @@ -52,7 +52,7 @@ struct wi_rx_radiotap_header { u_int16_t wr_chan_flags; int8_t wr_antsignal; int8_t wr_antnoise; -} __packed; +}; #define WI_TX_RADIOTAP_PRESENT ((1 << IEEE80211_RADIOTAP_FLAGS) | \ (1 << IEEE80211_RADIOTAP_RATE) | \ @@ -64,7 +64,7 @@ struct wi_tx_radiotap_header { u_int8_t wt_rate; u_int16_t wt_chan_freq; u_int16_t wt_chan_flags; -} __packed; +}; struct wi_rssdesc { struct ieee80211_rssdesc rd_desc; Index: sys/dev/pci/if_ipwvar.h =================================================================== RCS file: /cvsroot/src/sys/dev/pci/if_ipwvar.h,v retrieving revision 1.18 diff -p -u -r1.18 if_ipwvar.h --- sys/dev/pci/if_ipwvar.h 2 Feb 2017 10:05:35 -0000 1.18 +++ sys/dev/pci/if_ipwvar.h 5 Oct 2019 03:04:14 -0000 @@ -67,7 +67,7 @@ struct ipw_rx_radiotap_header { uint16_t wr_chan_freq; uint16_t wr_chan_flags; uint8_t wr_antsignal; -} __packed; +}; #define IPW_RX_RADIOTAP_PRESENT \ ((1 << IEEE80211_RADIOTAP_CHANNEL) | \ @@ -77,7 +77,7 @@ struct ipw_tx_radiotap_header { struct ieee80211_radiotap_header wt_ihdr; uint16_t wt_chan_freq; uint16_t wt_chan_flags; -} __packed; +}; #define IPW_TX_RADIOTAP_PRESENT \ ((1 << IEEE80211_RADIOTAP_CHANNEL)) Index: sys/dev/pci/if_iwmvar.h =================================================================== RCS file: /cvsroot/src/sys/dev/pci/if_iwmvar.h,v retrieving revision 1.18 diff -p -u -r1.18 if_iwmvar.h --- sys/dev/pci/if_iwmvar.h 14 Mar 2017 23:59:26 -0000 1.18 +++ sys/dev/pci/if_iwmvar.h 5 Oct 2019 03:04:14 -0000 @@ -113,7 +113,7 @@ struct iwm_rx_radiotap_header { uint16_t wr_chan_flags; int8_t wr_dbm_antsignal; int8_t wr_dbm_antnoise; -} __packed; +}; #define IWM_RX_RADIOTAP_PRESENT \ ((1 << IEEE80211_RADIOTAP_TSFT) | \ @@ -130,7 +130,7 @@ struct iwm_tx_radiotap_header { uint16_t wt_chan_freq; uint16_t wt_chan_flags; uint8_t wt_hwqueue; -} __packed; +}; #define IWM_TX_RADIOTAP_PRESENT \ ((1 << IEEE80211_RADIOTAP_FLAGS) | \ Index: sys/dev/pci/if_iwnvar.h =================================================================== RCS file: /cvsroot/src/sys/dev/pci/if_iwnvar.h,v retrieving revision 1.20 diff -p -u -r1.20 if_iwnvar.h --- sys/dev/pci/if_iwnvar.h 19 Jul 2017 16:55:12 -0000 1.20 +++ sys/dev/pci/if_iwnvar.h 5 Oct 2019 03:04:14 -0000 @@ -30,7 +30,7 @@ struct iwn_rx_radiotap_header { uint16_t wr_chan_flags; int8_t wr_dbm_antsignal; int8_t wr_dbm_antnoise; -} __packed; +}; #define IWN_RX_RADIOTAP_PRESENT \ ((1 << IEEE80211_RADIOTAP_TSFT) | \ @@ -47,7 +47,7 @@ struct iwn_tx_radiotap_header { uint16_t wt_chan_freq; uint16_t wt_chan_flags; uint8_t wt_hwqueue; -} __packed; +}; #define IWN_TX_RADIOTAP_PRESENT \ ((1 << IEEE80211_RADIOTAP_FLAGS) | \ Index: sys/dev/pci/if_rtwnreg.h =================================================================== RCS file: /cvsroot/src/sys/dev/pci/if_rtwnreg.h,v retrieving revision 1.5 diff -p -u -r1.5 if_rtwnreg.h --- sys/dev/pci/if_rtwnreg.h 29 Jun 2018 04:02:10 -0000 1.5 +++ sys/dev/pci/if_rtwnreg.h 5 Oct 2019 03:04:14 -0000 @@ -76,7 +76,7 @@ struct rtwn_rx_radiotap_header { uint16_t wr_chan_freq; uint16_t wr_chan_flags; uint8_t wr_dbm_antsignal; -} __packed; +}; #define RTWN_RX_RADIOTAP_PRESENT \ (1 << IEEE80211_RADIOTAP_FLAGS | \ @@ -89,7 +89,7 @@ struct rtwn_tx_radiotap_header { uint8_t wt_flags; uint16_t wt_chan_freq; uint16_t wt_chan_flags; -} __packed; +}; #define RTWN_TX_RADIOTAP_PRESENT \ (1 << IEEE80211_RADIOTAP_FLAGS | \ Index: sys/dev/usb/if_otusvar.h =================================================================== RCS file: /cvsroot/src/sys/dev/usb/if_otusvar.h,v retrieving revision 1.9 diff -p -u -r1.9 if_otusvar.h --- sys/dev/usb/if_otusvar.h 13 Sep 2019 07:55:07 -0000 1.9 +++ sys/dev/usb/if_otusvar.h 5 Oct 2019 03:04:14 -0000 @@ -86,7 +86,7 @@ struct otus_rx_radiotap_header { uint16_t wr_chan_freq; uint16_t wr_chan_flags; uint8_t wr_antsignal; -} __packed; +}; #define OTUS_RX_RADIOTAP_PRESENT \ (1 << IEEE80211_RADIOTAP_FLAGS | \ @@ -100,7 +100,7 @@ struct otus_tx_radiotap_header { uint8_t wt_rate; uint16_t wt_chan_freq; uint16_t wt_chan_flags; -} __packed; +}; #define OTUS_TX_RADIOTAP_PRESENT \ (1 << IEEE80211_RADIOTAP_FLAGS | \ Index: sys/dev/usb/if_rumvar.h =================================================================== RCS file: /cvsroot/src/sys/dev/usb/if_rumvar.h,v retrieving revision 1.10 diff -p -u -r1.10 if_rumvar.h --- sys/dev/usb/if_rumvar.h 23 Apr 2016 10:15:31 -0000 1.10 +++ sys/dev/usb/if_rumvar.h 5 Oct 2019 03:04:14 -0000 @@ -29,7 +29,7 @@ struct rum_rx_radiotap_header { uint16_t wr_chan_flags; uint8_t wr_antenna; uint8_t wr_antsignal; -} __packed; +}; #define RT2573_RX_RADIOTAP_PRESENT \ ((1 << IEEE80211_RADIOTAP_FLAGS) | \ @@ -45,7 +45,7 @@ struct rum_tx_radiotap_header { uint16_t wt_chan_freq; uint16_t wt_chan_flags; uint8_t wt_antenna; -} __packed; +}; #define RT2573_TX_RADIOTAP_PRESENT \ ((1 << IEEE80211_RADIOTAP_FLAGS) | \ Index: sys/dev/usb/if_runvar.h =================================================================== RCS file: /cvsroot/src/sys/dev/usb/if_runvar.h,v retrieving revision 1.4 diff -p -u -r1.4 if_runvar.h --- sys/dev/usb/if_runvar.h 17 Nov 2017 13:08:48 -0000 1.4 +++ sys/dev/usb/if_runvar.h 5 Oct 2019 03:04:14 -0000 @@ -49,7 +49,7 @@ struct run_rx_radiotap_header { uint8_t wr_dbm_antsignal; uint8_t wr_antenna; uint8_t wr_antsignal; -} __packed; +}; #define RUN_RX_RADIOTAP_PRESENT \ (1 << IEEE80211_RADIOTAP_FLAGS | \ @@ -66,7 +66,7 @@ struct run_tx_radiotap_header { uint16_t wt_chan_freq; uint16_t wt_chan_flags; uint8_t wt_hwqueue; -} __packed; +}; #define RUN_TX_RADIOTAP_PRESENT \ (1 << IEEE80211_RADIOTAP_FLAGS | \ Index: sys/dev/usb/if_upgtvar.h =================================================================== RCS file: /cvsroot/src/sys/dev/usb/if_upgtvar.h,v retrieving revision 1.3 diff -p -u -r1.3 if_upgtvar.h --- sys/dev/usb/if_upgtvar.h 14 Sep 2019 12:53:24 -0000 1.3 +++ sys/dev/usb/if_upgtvar.h 5 Oct 2019 03:04:14 -0000 @@ -29,7 +29,7 @@ struct upgt_rx_radiotap_header { uint16_t wr_chan_freq; uint16_t wr_chan_flags; uint8_t wr_antsignal; -} __packed; +}; #define UPGT_RX_RADIOTAP_PRESENT \ ((1 << IEEE80211_RADIOTAP_FLAGS) | \ @@ -43,7 +43,7 @@ struct upgt_tx_radiotap_header { uint8_t wt_rate; uint16_t wt_chan_freq; uint16_t wt_chan_flags; -} __packed; +}; #define UPGT_TX_RADIOTAP_PRESENT \ ((1 << IEEE80211_RADIOTAP_FLAGS) | \ Index: sys/dev/usb/if_uralvar.h =================================================================== RCS file: /cvsroot/src/sys/dev/usb/if_uralvar.h,v retrieving revision 1.13 diff -p -u -r1.13 if_uralvar.h --- sys/dev/usb/if_uralvar.h 14 Sep 2019 12:42:36 -0000 1.13 +++ sys/dev/usb/if_uralvar.h 5 Oct 2019 03:04:14 -0000 @@ -29,7 +29,7 @@ struct ural_rx_radiotap_header { uint16_t wr_chan_flags; uint8_t wr_antenna; uint8_t wr_antsignal; -} __packed; +}; #define RAL_RX_RADIOTAP_PRESENT \ ((1 << IEEE80211_RADIOTAP_FLAGS) | \ @@ -45,7 +45,7 @@ struct ural_tx_radiotap_header { uint16_t wt_chan_freq; uint16_t wt_chan_flags; uint8_t wt_antenna; -} __packed; +}; #define RAL_TX_RADIOTAP_PRESENT \ ((1 << IEEE80211_RADIOTAP_FLAGS) | \ Index: sys/dev/usb/if_urtwnvar.h =================================================================== RCS file: /cvsroot/src/sys/dev/usb/if_urtwnvar.h,v retrieving revision 1.13 diff -p -u -r1.13 if_urtwnvar.h --- sys/dev/usb/if_urtwnvar.h 15 Jun 2019 04:00:17 -0000 1.13 +++ sys/dev/usb/if_urtwnvar.h 5 Oct 2019 03:04:14 -0000 @@ -44,7 +44,7 @@ struct urtwn_rx_radiotap_header { uint16_t wr_chan_freq; uint16_t wr_chan_flags; uint8_t wr_dbm_antsignal; -} __packed; +}; #define URTWN_RX_RADIOTAP_PRESENT \ (1 << IEEE80211_RADIOTAP_FLAGS | \ @@ -57,7 +57,7 @@ struct urtwn_tx_radiotap_header { uint8_t wt_flags; uint16_t wt_chan_freq; uint16_t wt_chan_flags; -} __packed; +}; #define URTWN_TX_RADIOTAP_PRESENT \ (1 << IEEE80211_RADIOTAP_FLAGS | \ Index: sys/dev/usb/if_urtwreg.h =================================================================== RCS file: /cvsroot/src/sys/dev/usb/if_urtwreg.h,v retrieving revision 1.3 diff -p -u -r1.3 if_urtwreg.h --- sys/dev/usb/if_urtwreg.h 14 Sep 2019 12:40:31 -0000 1.3 +++ sys/dev/usb/if_urtwreg.h 5 Oct 2019 03:04:14 -0000 @@ -287,7 +287,7 @@ struct urtw_rx_radiotap_header { uint16_t wr_chan_freq; uint16_t wr_chan_flags; int8_t wr_dbm_antsignal; -} __packed; +}; #define URTW_RX_RADIOTAP_PRESENT \ ((1 << IEEE80211_RADIOTAP_FLAGS) | \ @@ -300,7 +300,7 @@ struct urtw_tx_radiotap_header { uint8_t wt_rate; uint16_t wt_chan_freq; uint16_t wt_chan_flags; -} __packed; +}; #define URTW_TX_RADIOTAP_PRESENT \ ((1 << IEEE80211_RADIOTAP_FLAGS) | \ Index: sys/dev/usb/if_zydreg.h =================================================================== RCS file: /cvsroot/src/sys/dev/usb/if_zydreg.h,v retrieving revision 1.9 diff -p -u -r1.9 if_zydreg.h --- sys/dev/usb/if_zydreg.h 30 Apr 2018 01:14:07 -0000 1.9 +++ sys/dev/usb/if_zydreg.h 5 Oct 2019 03:04:14 -0000 @@ -1133,7 +1133,7 @@ struct zyd_rx_radiotap_header { uint16_t wr_chan_freq; uint16_t wr_chan_flags; uint8_t wr_rssi; -} __packed; +}; #define ZYD_RX_RADIOTAP_PRESENT \ ((1 << IEEE80211_RADIOTAP_FLAGS) | \ @@ -1146,7 +1146,7 @@ struct zyd_tx_radiotap_header { uint8_t wt_rate; uint16_t wt_chan_freq; uint16_t wt_chan_flags; -} __packed; +}; #define ZYD_TX_RADIOTAP_PRESENT \ ((1 << IEEE80211_RADIOTAP_FLAGS) | \