Author: jhibbits
Date: Wed Mar  2 02:29:35 2016
New Revision: 296295
URL: https://svnweb.freebsd.org/changeset/base/296295

Log:
  Use the m_extadd() function instead of deprecated MEXTADD().
  
  Suggested by: glebius

Modified:
  head/sys/dev/dpaa/if_dtsec_rm.c

Modified: head/sys/dev/dpaa/if_dtsec_rm.c
==============================================================================
--- head/sys/dev/dpaa/if_dtsec_rm.c     Wed Mar  2 02:27:53 2016        
(r296294)
+++ head/sys/dev/dpaa/if_dtsec_rm.c     Wed Mar  2 02:29:35 2016        
(r296295)
@@ -375,7 +375,7 @@ dtsec_rm_fqr_rx_callback(t_Handle app, t
        if (m == NULL)
                goto err;
 
-       MEXTADD(m, DPAA_FD_GET_ADDR(frame), FM_PORT_BUFFER_SIZE,
+       m_extadd(m, DPAA_FD_GET_ADDR(frame), FM_PORT_BUFFER_SIZE,
            dtsec_rm_fqr_mext_free, DPAA_FD_GET_ADDR(frame), sc, 0,
            EXT_NET_DRV);
 
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to