aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/vdpa/vdpa.c
AgeCommit message (Expand)AuthorFilesLines
5 daysvdpa: Convert sprintf/snprintf to sysfs_emitLi Zhijian1-1/+1
2024-04-22vDPA: code clean for vhost_vdpa uapiZhu Lingshan1-3/+3
2024-03-19vDPA: report virtio-blk flush info to user spaceZhu Lingshan1-0/+14
2024-03-19vDPA: report virtio-block read-only info to user spaceZhu Lingshan1-0/+14
2024-03-19vDPA: report virtio-block write zeroes configuration to user spaceZhu Lingshan1-0/+23
2024-03-19vDPA: report virtio-block discarding configuration to user spaceZhu Lingshan1-0/+26
2024-03-19vDPA: report virtio-block topology info to user spaceZhu Lingshan1-0/+32
2024-03-19vDPA: report virtio-block MQ info to user spaceZhu Lingshan1-0/+16
2024-03-19vDPA: report virtio-block max segments in a request to user spaceZhu Lingshan1-0/+17
2024-03-19vDPA: report virtio-block block-size to user spaceZhu Lingshan1-0/+18
2024-03-19vDPA: report virtio-block max segment size to user spaceZhu Lingshan1-0/+17
2024-03-19vDPA: report virtio-block capacity to user spaceZhu Lingshan1-0/+35
2024-03-19vdpa: make vdpa_bus constRicardo B. Marliere1-1/+1
2023-12-27vdpa: Remove usage of the deprecated ida_simple_xx() APIChristophe JAILLET1-2/+2
2023-08-10vdpa: Enable strict validation for netlinks opsDragos Tatulea1-6/+0
2023-08-10vdpa: Add max vqp attr to vdpa_nl_policy for nlattr length checkLin Ma1-0/+1
2023-08-10vdpa: Add queue index attr to vdpa_nl_policy for nlattr length checkLin Ma1-0/+1
2023-08-10vdpa: Add features attr to vdpa_nl_policy for nlattr length checkLin Ma1-0/+1
2023-02-20vdpa: validate device feature provisioning against supported classSi-Wei Liu1-9/+50
2023-02-20vdpa: validate provisioned device features against specified attributeSi-Wei Liu1-0/+18
2023-02-20vdpa: conditionally read STATUS in config spaceSi-Wei Liu1-5/+15
2023-02-20vdpa: fix improper error message when adding vdpa devSi-Wei Liu1-2/+4
2023-02-20vdpa: Fix a couple of spelling mistakes in some messagesColin Ian King1-1/+1
2023-02-20vdpa: set dma mask for vDPA deviceJason Wang1-0/+5
2022-12-28vdpa: conditionally fill max max queue pair for statsJason Wang1-5/+4
2022-12-28vdpa: merge functionally duplicated dev_features attributesSi-Wei Liu1-1/+1
2022-10-10Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhostLinus Torvalds1-16/+57
2022-10-07vDPA: conditionally read MTU and MAC in dev cfg spaceZhu Lingshan1-8/+29
2022-10-07vDPA: fix spars cast warning in vdpa_dev_net_mq_config_fillZhu Lingshan1-1/+2
2022-10-07vDPA: check virtio device features to detect MQZhu Lingshan1-1/+1
2022-10-07vDPA: check VIRTIO_NET_F_RSS for max_virtqueue_paris's presenceZhu Lingshan1-3/+3
2022-10-07vDPA: only report driver features if FEATURES_OK is setZhu Lingshan1-6/+14
2022-10-07vDPA: allow userspace to query features of a vDPA deviceZhu Lingshan1-5/+11
2022-10-07vdpa: device feature provisioningJason Wang1-0/+5
2022-08-29genetlink: start to validate reserved header bytesJakub Kicinski1-0/+1
2022-08-11vDPA: fix 'cast to restricted le16' warnings in vdpa.cZhu Lingshan1-3/+3
2022-08-11vDPA: !FEATURES_OK should not block querying device config spaceZhu Lingshan1-8/+0
2022-06-03Merge tag 'driver-core-5.19-rc1' of git://git.kernel.org/pub/scm/linux/kernel...Linus Torvalds1-25/+4
2022-05-31vdpa: multiple address spaces supportGautam Dawar1-1/+3
2022-05-31vdpa: introduce virtqueue groupsGautam Dawar1-0/+3
2022-05-31net/vdpa: Use readers/writers semaphore instead of cf_mutexEli Cohen1-13/+12
2022-05-31net/vdpa: Use readers/writers semaphore instead of vdpa_dev_mutexEli Cohen1-32/+32
2022-05-31vdpa: Add support for querying vendor statisticsEli Cohen1-0/+162
2022-05-31vdpa: Fix error logic in vdpa_nl_cmd_dev_get_doitEli Cohen1-4/+9
2022-04-22vdpa: Use helper for safer setting of driver_overrideKrzysztof Kozlowski1-25/+4
2022-03-28vdpa: change the type of nvqs to u32Longpeng1-3/+3
2022-03-04vdpa: factor out vdpa_set_features_unlocked for vdpa internal useSi-Wei Liu1-1/+1
2022-01-14vdpa: Avoid taking cf_mutex lock on get statusEli Cohen1-11/+0
2022-01-14vdpa: Use BIT_ULL for bit operationsEli Cohen1-6/+6
2022-01-14vdpa: Support reporting max device capabilitiesEli Cohen1-0/+10
2022-01-14vdpa: Add support for returning device configuration informationEli Cohen1-0/+3
2022-01-14vdpa: Allow to configure max data virtqueuesEli Cohen1-2/+13
2022-01-14vdpa: Read device configuration only if FEATURES_OKEli Cohen1-12/+33
2022-01-14vdpa: Sync calls set/get config/status with cf_mutexEli Cohen1-0/+19
2022-01-14vdpa: Provide interface to read driver featuresEli Cohen1-1/+1
2022-01-14vdpa: add driver_override supportStefano Garzarella1-0/+74
2021-12-08vdpa: Consider device id larger than 31Parav Pandit1-1/+2
2021-11-01vdpa: Enable user to set mac and mtu of vdpa deviceParav Pandit1-2/+36
2021-11-01vdpa: Introduce query of device config layoutParav Pandit1-0/+176
2021-11-01vdpa: Introduce and use vdpa device get, set config helpersParav Pandit1-0/+36
2021-11-01vdpa: add new attribute VDPA_ATTR_DEV_MIN_VQ_SIZEWu Zongyong1-0/+5
2021-11-01vdpa: min vq num of vdpa device cannot be greater than max vq numWu Zongyong1-0/+8
2021-09-11Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhostLinus Torvalds1-1/+8
2021-09-06vdpa: Support transferring virtual addressing during DMA mappingXie Yongji1-1/+8
2021-07-21bus: Make remove callback return voidUwe Kleine-König1-3/+1
2021-05-03vdpa: Follow kdoc comment styleParav Pandit1-5/+7
2021-02-25vdpa: set the virtqueue num during registerJason Wang1-8/+10
2021-02-23vdpa: Enable user to query vdpa device infoParav Pandit1-0/+131
2021-02-23vdpa: Enable a user to add and delete a vdpa deviceParav Pandit1-10/+133
2021-02-23vdpa: Define vdpa mgmt device, ops and a netlink interfaceParav Pandit1-1/+212
2021-02-23vdpa: Extend routine to accept vdpa device nameParav Pandit1-4/+32
2020-12-18vdpa: Use simpler version of ida allocationParav Pandit1-1/+1
2020-08-05vdpa: remove hard coded virtq numMax Gurtovoy1-0/+3
2020-08-05vdpa: make sure set_features is invoked for legacyMichael S. Tsirkin1-0/+1
2020-06-22vdpa: fix typos in the comments for __vdpa_alloc_device()Jason Wang1-1/+1
2020-04-17vdpa: fix comment of vdpa_register_device()Jason Wang1-1/+1
2020-04-02vdpa: move to drivers/vdpaMichael S. Tsirkin1-0/+180