My WLI-UC-GNM up crash
Warner Losh
imp at bsdimp.com
Mon Jul 29 15:00:08 UTC 2013
The __aligned(8) likely isn't going to do anything. It says that you are guaranteeing to the compiler that you'll only ever allocate / cast pointers to this data type on a 8-byte boundary. __packed might help, but likely won't because that's for on-wire things and anything thing that wasn't already not marked packed that should be would already be broken, but broken giving bad data, not broken segfaulting.
__aligned(1) is what you want. But that has other performance problems...
Warner
On Jul 28, 2013, at 4:35 AM, Hans Petter Selasky wrote:
> Hi,
>
> Can you try the attached patch?
>
> --HPS
> <radiotap.diff>_______________________________________________
> freebsd-arm at freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-arm
> To unsubscribe, send any mail to "freebsd-arm-unsubscribe at freebsd.org"
More information about the freebsd-wireless
mailing list