svn commit: r330451 - in stable/11/sys: dev/iwm dev/otus dev/usb/wlan net80211

John Baldwin jhb at freebsd.org
Mon Mar 5 18:20:51 UTC 2018


On Monday, March 05, 2018 07:54:58 AM Eitan Adler wrote:
> Author: eadler
> Date: Mon Mar  5 07:54:57 2018
> New Revision: 330451
> URL: https://svnweb.freebsd.org/changeset/base/330451
> 
> Log:
>   MFC r306837:
>   
>   [net80211] extend the ieee80211_rx_stats struct to include more information.

Have you thought about the KBI implications of this change and some of the
other changes you've merged?  In theory we try to not break existing kernel
modules on a stable branch.  That is, one should be able to kldload an
if_iwn.ko built on 11.0 on a 11-stable kernel.  If this structure is used by
any device drivers directly then changing its layout would seem to break
existing modules that were built against the old ABI and pass in pointers to
the old structures to functions in the kernel.  There are some fuzzy areas in
the ABI we try to preserve, but we generally try to keep drivers working.

Also, we may choose to break the ABI if there is a strong argument for it,
but then that is usually something discussed with re@ and noted in the commit
log and UPDATING.

-- 
John Baldwin


More information about the svn-src-all mailing list