Lines Matching refs:features
996 static int vhost_net_set_features(struct vhost_net *n, u64 features) in vhost_net_set_features() argument
1001 hdr_len = (features & ((1ULL << VIRTIO_NET_F_MRG_RXBUF) | in vhost_net_set_features()
1005 if (features & (1 << VHOST_NET_F_VIRTIO_NET_HDR)) { in vhost_net_set_features()
1015 if ((features & (1 << VHOST_F_LOG_ALL)) && in vhost_net_set_features()
1022 n->vqs[i].vq.acked_features = features; in vhost_net_set_features()
1059 u64 features; in vhost_net_ioctl() local
1068 features = VHOST_NET_FEATURES; in vhost_net_ioctl()
1069 if (copy_to_user(featurep, &features, sizeof features)) in vhost_net_ioctl()
1073 if (copy_from_user(&features, featurep, sizeof features)) in vhost_net_ioctl()
1075 if (features & ~VHOST_NET_FEATURES) in vhost_net_ioctl()
1077 return vhost_net_set_features(n, features); in vhost_net_ioctl()