Home
last modified time | relevance | path

Searched refs:add_config (Results 1 – 4 of 4) sorted by relevance

/linux/drivers/vdpa/pds/
H A Dvdpa_dev.c612 const struct vdpa_dev_set_config *add_config) in pds_vdpa_dev_add() argument
658 if (add_config->mask & BIT_ULL(VDPA_ATTR_DEV_FEATURES)) { in pds_vdpa_dev_add()
660 add_config->device_features & ~pdsv->supported_features; in pds_vdpa_dev_add()
668 pdsv->supported_features = add_config->device_features; in pds_vdpa_dev_add()
687 if (add_config->mask & (1 << VDPA_ATTR_DEV_NET_CFG_MAX_VQP)) in pds_vdpa_dev_add()
688 vq_pairs = add_config->net.max_vq_pairs; in pds_vdpa_dev_add()
714 if (add_config->mask & BIT_ULL(VDPA_ATTR_DEV_NET_CFG_MACADDR)) { in pds_vdpa_dev_add()
715 ether_addr_copy(pdsv->mac, add_config->net.mac); in pds_vdpa_dev_add()
/linux/drivers/vdpa/virtio_pci/
H A Dvp_vdpa.c495 const struct vdpa_dev_set_config *add_config) in vp_vdpa_dev_add() argument
523 if (add_config->mask & BIT_ULL(VDPA_ATTR_DEV_FEATURES)) { in vp_vdpa_dev_add()
524 if (add_config->device_features & ~device_features) { in vp_vdpa_dev_add()
529 device_features, add_config->device_features); in vp_vdpa_dev_add()
532 device_features = add_config->device_features; in vp_vdpa_dev_add()
/linux/drivers/vdpa/mlx5/net/
H A Dmlx5_vnet.c3838 const struct vdpa_dev_set_config *add_config) in mlx5_vdpa_dev_add() argument
3856 if (add_config->mask & BIT_ULL(VDPA_ATTR_DEV_FEATURES)) { in mlx5_vdpa_dev_add()
3857 if (add_config->device_features & ~device_features) { in mlx5_vdpa_dev_add()
3860 add_config->device_features, device_features); in mlx5_vdpa_dev_add()
3863 device_features &= add_config->device_features; in mlx5_vdpa_dev_add()
3890 if (add_config->mask & BIT_ULL(VDPA_ATTR_DEV_NET_CFG_MAX_VQP)) { in mlx5_vdpa_dev_add()
3891 if (add_config->net.max_vq_pairs > max_vqs / 2) in mlx5_vdpa_dev_add()
3893 max_vqs = min_t(u32, max_vqs, 2 * add_config->net.max_vq_pairs); in mlx5_vdpa_dev_add()
3925 if (add_config->mask & BIT_ULL(VDPA_ATTR_DEV_NET_CFG_MTU)) { in mlx5_vdpa_dev_add()
3926 err = config_func_mtu(mdev, add_config->net.mtu); in mlx5_vdpa_dev_add()
[all …]
/linux/drivers/pinctrl/samsung/
H A Dpinctrl-samsung.c139 static int add_config(struct device *dev, unsigned long **configs, in add_config() function
197 ret = add_config(dev, &configs, &num_configs, config); in samsung_dt_subnode_to_map()