/Linux-v5.10/drivers/vfio/ |
D | vfio_iommu_spapr_tce.c | 73 static long tce_iommu_mm_set(struct tce_container *container) in tce_iommu_mm_set() argument 75 if (container->mm) { in tce_iommu_mm_set() 76 if (container->mm == current->mm) in tce_iommu_mm_set() 81 container->mm = current->mm; in tce_iommu_mm_set() 82 mmgrab(container->mm); in tce_iommu_mm_set() 87 static long tce_iommu_prereg_free(struct tce_container *container, in tce_iommu_prereg_free() argument 92 ret = mm_iommu_put(container->mm, tcemem->mem); in tce_iommu_prereg_free() 102 static long tce_iommu_unregister_pages(struct tce_container *container, in tce_iommu_unregister_pages() argument 113 mem = mm_iommu_get(container->mm, vaddr, size >> PAGE_SHIFT); in tce_iommu_unregister_pages() 117 list_for_each_entry(tcemem, &container->prereg_list, next) { in tce_iommu_unregister_pages() [all …]
|
D | vfio.c | 76 struct vfio_container *container; member 292 static void vfio_container_get(struct vfio_container *container) in vfio_container_get() argument 294 kref_get(&container->kref); in vfio_container_get() 299 struct vfio_container *container; in vfio_container_release() local 300 container = container_of(kref, struct vfio_container, kref); in vfio_container_release() 302 kfree(container); in vfio_container_release() 305 static void vfio_container_put(struct vfio_container *container) in vfio_container_put() argument 307 kref_put(&container->kref, vfio_container_release); in vfio_container_put() 1009 wait_event(group->container_q, !group->container); in vfio_del_group_dev() 1020 static long vfio_ioctl_check_extension(struct vfio_container *container, in vfio_ioctl_check_extension() argument [all …]
|
/Linux-v5.10/drivers/gpu/drm/amd/display/dc/basics/ |
D | vector.c | 37 vector->container = NULL; in dal_vector_construct() 45 vector->container = kcalloc(capacity, struct_size, GFP_KERNEL); in dal_vector_construct() 46 if (vector->container == NULL) in dal_vector_construct() 64 vector->container = NULL; in dal_vector_presized_costruct() 72 vector->container = kcalloc(count, struct_size, GFP_KERNEL); in dal_vector_presized_costruct() 74 if (vector->container == NULL) in dal_vector_presized_costruct() 83 vector->container + i * struct_size, in dal_vector_presized_costruct() 135 kfree(vector->container); in dal_vector_destruct() 160 if (vector->container == NULL || index >= vector->count) in dal_vector_at_index() 162 return vector->container + (index * vector->struct_size); in dal_vector_at_index() [all …]
|
/Linux-v5.10/drivers/scsi/aacraid/ |
D | commsup.c | 1066 u32 channel, id, lun, container; in aac_handle_aif() local 1079 container = channel = id = lun = (u32)-1; in aac_handle_aif() 1091 container = le32_to_cpu(((__le32 *)aifcmd->data)[1]); in aac_handle_aif() 1092 if ((container >> 28)) { in aac_handle_aif() 1093 container = (u32)-1; in aac_handle_aif() 1096 channel = (container >> 24) & 0xF; in aac_handle_aif() 1098 container = (u32)-1; in aac_handle_aif() 1101 id = container & 0xFFFF; in aac_handle_aif() 1103 container = (u32)-1; in aac_handle_aif() 1106 lun = (container >> 16) & 0xFF; in aac_handle_aif() [all …]
|
/Linux-v5.10/Documentation/driver-api/ |
D | vfio.rst | 80 a container class, which may hold one or more groups. A container 83 On its own, the container provides little functionality, with all 85 The user needs to add a group into the container for the next level 99 Once the group is ready, it may be added to the container by opening 102 previously opened container file. If desired and if the IOMMU driver 104 be set to the same container. If a group fails to set to a container 105 with existing groups, a new empty container will need to be used 108 With a group (or groups) attached to a container, the remaining 169 int container, group, device, i; 176 /* Create a new container */ [all …]
|
/Linux-v5.10/Documentation/security/tpm/ |
D | tpm_vtpm_proxy.rst | 15 container. This allows programs to interact with a TPM in a container 17 container gets its own unique, emulated, software TPM. 22 To make an emulated software TPM available to each container, the container 25 descriptor. The former is moved into the container by creating a character 27 is passed to the TPM emulator. Software inside the container can then send
|
/Linux-v5.10/drivers/usb/gadget/udc/aspeed-vhub/ |
D | hub.c | 304 ast_vhub_str_of_container(struct usb_gadget_string_container *container) in ast_vhub_str_of_container() argument 306 return (struct usb_gadget_strings *)container->stash; in ast_vhub_str_of_container() 314 struct usb_gadget_string_container *container; in ast_vhub_collect_languages() local 320 list_for_each_entry(container, &vhub->vhub_str_desc, list) { in ast_vhub_collect_languages() 324 lang_str = ast_vhub_str_of_container(container); in ast_vhub_collect_languages() 339 struct usb_gadget_string_container *container; in ast_vhub_lookup_string() local 341 list_for_each_entry(container, &vhub->vhub_str_desc, list) { in ast_vhub_lookup_string() 342 lang_str = ast_vhub_str_of_container(container); in ast_vhub_lookup_string() 911 struct usb_gadget_string_container *container; in ast_vhub_str_container_alloc() local 913 size = sizeof(*container); in ast_vhub_str_container_alloc() [all …]
|
/Linux-v5.10/kernel/trace/ |
D | trace_export.c | 46 #define __field_desc(type, container, item) type item; argument 49 #define __field_packed(type, container, item) type item; argument 55 #define __array_desc(type, container, item, size) type item[size]; argument 143 #define __field_desc(type, container, item) argument 146 #define __field_packed(type, container, item) argument 152 #define __array_desc(type, container, item, len) argument
|
/Linux-v5.10/drivers/base/ |
D | transport_class.c | 94 atc->container.class = &atc->tclass.class; in anon_transport_class_register() 95 attribute_container_set_no_classdevs(&atc->container); in anon_transport_class_register() 96 error = attribute_container_register(&atc->container); in anon_transport_class_register() 115 if (unlikely(attribute_container_unregister(&atc->container))) in anon_transport_class_unregister()
|
D | Makefile | 8 topology.o container.o property.o cacheinfo.o \
|
/Linux-v5.10/drivers/gpu/drm/ |
D | drm_managed.c | 128 void drmm_add_final_kfree(struct drm_device *dev, void *container) in drmm_add_final_kfree() argument 131 WARN_ON(dev < (struct drm_device *) container); in drmm_add_final_kfree() 132 WARN_ON(dev + 1 > (struct drm_device *) (container + ksize(container))); in drmm_add_final_kfree() 133 dev->managed.final_kfree = container; in drmm_add_final_kfree()
|
D | drm_drv.c | 684 void *container; in __devm_drm_dev_alloc() local 688 container = kzalloc(size, GFP_KERNEL); in __devm_drm_dev_alloc() 689 if (!container) in __devm_drm_dev_alloc() 692 drm = container + offset; in __devm_drm_dev_alloc() 695 kfree(container); in __devm_drm_dev_alloc() 698 drmm_add_final_kfree(drm, container); in __devm_drm_dev_alloc() 700 return container; in __devm_drm_dev_alloc()
|
/Linux-v5.10/Documentation/devicetree/bindings/mfd/ |
D | sky81452.txt | 8 - backlight : container node for backlight following the binding 10 - regulator : container node for regulators following the binding
|
D | brcm,bcm59056.txt | 16 - regulators: container node for regulators following the generic
|
/Linux-v5.10/include/linux/ |
D | transport_class.h | 40 struct attribute_container container; member 48 . container = { \
|
/Linux-v5.10/drivers/net/wireless/ath/ath6kl/ |
D | htc_pipe.c | 81 struct list_head container; in send_packet_completion() local 84 INIT_LIST_HEAD(&container); in send_packet_completion() 85 list_add_tail(&packet->list, &container); in send_packet_completion() 88 do_send_completion(ep, &container); in send_packet_completion() 934 struct list_head container; in recv_packet_completion() local 935 INIT_LIST_HEAD(&container); in recv_packet_completion() 936 list_add_tail(&packet->list, &container); in recv_packet_completion() 939 do_recv_completion(ep, &container); in recv_packet_completion() 1098 struct list_head container; in htc_flush_rx_queue() local 1120 INIT_LIST_HEAD(&container); in htc_flush_rx_queue() [all …]
|
/Linux-v5.10/Documentation/devicetree/bindings/net/ |
D | mscc-ocelot.txt | 24 - ethernet-ports: A container for child nodes representing switch ports. 26 The ethernet-ports container has the following properties
|
D | lpc-eth.txt | 14 - mdio : specifies the mdio bus, used as a container for phy nodes according to
|
/Linux-v5.10/Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ |
D | overview.rst | 83 A DPRC is a container object that holds all the other 86 in the container. 124 All objects in a container share the same hardware "isolation context". 126 is at the DPRC (container) level, not at the individual object 268 same container/DPRC share the same 'device-id'. 279 As described previously, a DPRC is a container that holds the other 349 and handles interrupts for container events such as hot plug by
|
/Linux-v5.10/include/drm/ |
D | drm_managed.h | 47 void drmm_add_final_kfree(struct drm_device *dev, void *container);
|
/Linux-v5.10/sound/core/ |
D | control.c | 1303 unsigned int *container; in replace_user_tlv() local 1312 container = vmemdup_user(buf, size); in replace_user_tlv() 1313 if (IS_ERR(container)) in replace_user_tlv() 1314 return PTR_ERR(container); in replace_user_tlv() 1318 change = memcmp(ue->tlv_data, container, size) != 0; in replace_user_tlv() 1320 kvfree(container); in replace_user_tlv() 1332 ue->tlv_data = container; in replace_user_tlv() 1657 unsigned int __user *container; in snd_ctl_tlv_ioctl() local 1674 container = buf->tlv; in snd_ctl_tlv_ioctl() 1686 return call_tlv_handler(file, op_flag, kctl, &id, container, in snd_ctl_tlv_ioctl() [all …]
|
/Linux-v5.10/Documentation/driver-api/driver-model/ |
D | design-patterns.rst | 21 The most common way to achieve this is to use the state container design 41 called. This is our state container for this instance of the device driver.
|
/Linux-v5.10/drivers/gpu/drm/amd/display/include/ |
D | vector.h | 30 uint8_t *container; member
|
/Linux-v5.10/arch/s390/include/asm/ |
D | sysinfo.h | 174 struct topology_container container; member
|
/Linux-v5.10/Documentation/ABI/testing/ |
D | sysfs-bus-iio-cros-ec | 28 HAL) through the Android container on ChromeOS.
|