Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 23 Dec 2022 10:35:54 -0800
From:      Gleb Smirnoff <glebius@freebsd.org>
To:        Justin Hibbits <jhibbits@freebsd.org>
Cc:        src-committers@freebsd.org, dev-commits-src-all@freebsd.org, dev-commits-src-main@freebsd.org
Subject:   Re: git: eb1da3e52582 - main - DrvAPI: Extend driver KPI with more accessors
Message-ID:  <Y6X1CjNBuXtFxSBD@FreeBSD.org>
In-Reply-To: <202212201623.2BKGNZDV020962@gitrepo.freebsd.org>
References:  <202212201623.2BKGNZDV020962@gitrepo.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
  Justin,

On Tue, Dec 20, 2022 at 04:23:35PM +0000, Justin Hibbits wrote:
J> The branch main has been updated by jhibbits:
J> 
J> URL: https://cgit.FreeBSD.org/src/commit/?id=eb1da3e5258238e1c0555c6a006a341df0821d8e
J> 
J> commit eb1da3e5258238e1c0555c6a006a341df0821d8e
J> Author:     Justin Hibbits <jhibbits@FreeBSD.org>
J> AuthorDate: 2022-12-09 20:54:51 +0000
J> Commit:     Justin Hibbits <jhibbits@FreeBSD.org>
J> CommitDate: 2022-12-20 16:18:50 +0000
J> 
J>     DrvAPI: Extend driver KPI with more accessors
J>     
J>     Summary:
J>     Add the following accessors to hide some more netstack details:
J>     * if_get/setcapabilities2 and *bits analogue
J>     * if_setdname
J>     * if_getxname
J>     * if_transmit - wrapper for call to ifp->if_transmit()
J>     - This required changing the existing if_transmit to
J>     if_transmit_default, since that's its purpose.
J>     * if_getalloctype
J>     * if_getindex
J>     * if_foreach_addr_type - Like if_foreach_lladdr() but for any address
J>       family type.  Used by some drivers to iterate over all AF_INET
J>       addresses.
J>     * if_init() - wrapper for ifp->if_init() call
J>     * if_setinputfn
J>     * if_setsndtagallocfn
J>     * if_togglehwassist
J>     
J>     Reviewers: #transport, #network, glebius, melifaro
J>     
J>     Reviewed by:    #network, melifaro
J>     Sponsored by:   Juniper Networks, Inc.
J>     Differential Revision: https://reviews.freebsd.org/D37664

sorry for not reviewing in time. I got a question. Lots of added code
uses (struct ifnet *) cast on an argument that is already if_t. Why
could this be necessary? Example:

void
if_setsndtagallocfn(if_t ifp, if_snd_tag_alloc_t alloc_fn)
{
        ((struct ifnet *)ifp)->if_snd_tag_alloc = alloc_fn;
}

-- 
Gleb Smirnoff



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Y6X1CjNBuXtFxSBD>