[PATCH net-next v19 03/13] netdev: support binding dma-buf to netdevice
Jakub Kicinski
kuba at kernel.org
Fri Aug 16 00:50:24 UTC 2024
On Tue, 13 Aug 2024 21:13:05 +0000 Mina Almasry wrote:
> + if (NL_REQ_ATTR_CHECK(info->extack, attr, tb,
> + NETDEV_A_QUEUE_ID)) {
> + err = -EINVAL;
> + goto err_unlock;
> + }
> +
> + if (NL_REQ_ATTR_CHECK(info->extack, attr, tb,
> + NETDEV_A_QUEUE_TYPE)) {
> + err = -EINVAL;
> + goto err_unlock;
> + }
> +
> + if (nla_get_u32(tb[NETDEV_A_QUEUE_TYPE]) !=
> + NETDEV_QUEUE_TYPE_RX) {
> + err = -EINVAL;
> + goto err_unlock;
> + }
nit: you can || these three into as single if statement
More information about the dri-devel
mailing list