Home
last modified time | relevance | path

Searched refs:added (Results 1 – 25 of 645) sorted by relevance

12345678910>>...26

/Linux-v4.19/security/yama/
Dyama_lsm.c148 struct ptrace_relation *relation, *added; in yama_ptracer_add() local
150 added = kmalloc(sizeof(*added), GFP_KERNEL); in yama_ptracer_add()
151 if (!added) in yama_ptracer_add()
154 added->tracee = tracee; in yama_ptracer_add()
155 added->tracer = tracer; in yama_ptracer_add()
156 added->invalid = false; in yama_ptracer_add()
164 list_replace_rcu(&relation->node, &added->node); in yama_ptracer_add()
170 list_add_rcu(&added->node, &ptracer_relations); in yama_ptracer_add()
/Linux-v4.19/Documentation/media/uapi/v4l/
Dhist-v4l2.rst9 Soon after the V4L API was added to the kernel it was criticised as too
59 module. The ``YUV422`` and ``YUV411`` planar image formats were added.
62 output devices were added.
64 1999-01-14: A raw VBI capture interface was added.
102 1999-05-02: Fixed a typo in videodev.h, and added the
123 2. ``V4L2_TUNER_SUB_LANG1`` was added. (1999-09-05)
204 8. A ``sequence`` field was added to struct
217 2000-01-13: The ``V4L2_FMT_FLAG_NOT_INTERLACED`` flag was added.
223 added.
225 2000-11-25: ``V4L2_TYPE_VBI_INPUT`` was added.
[all …]
Dv4l2.rst50 - Documented libv4l, designed and added v4l2grab example, Remote Controller chapter.
124 Rewrote Colorspace chapter, added new enum
179 Improved the description of V4L2_CID_COLORFX control, added
233 will be used by the Linux Kernel. Also added Remote Controller chapter.
248 Added libv4l and Remote Controller documentation; added v4l2grab and
324 Cleaned up the bibliography, added BT.653 and BT.1119.
381 v4l2_buffer changes, added video capture example, various corrections.
Dplanar-apis.rst43 Two additional multi-planar capabilities are added. They can be set
48 New structures for describing multi-planar formats are added: struct
56 describing planes is added. Arrays of this structure are passed in
/Linux-v4.19/arch/x86/kernel/
Dftrace_64.S65 .macro save_mcount_regs added=0
80 pushq \added+8*2(%rsp)
84 pushq \added+8*3(%rsp)
87 pushq \added+8(%rsp)
117 movq MCOUNT_REG_SIZE+8+\added(%rsp), %rsi
124 movq MCOUNT_REG_SIZE+\added(%rsp), %rdi
/Linux-v4.19/Documentation/media/dvb-drivers/
Ddvb-usb.rst59 - added support for WideView WT-220U (Thanks to Steve Chang)
63 - added basic isochronous support to the dvb-usb-framework
64 - added support for Conexant Hybrid reference design and Nebula
88 - added support for the AVerMedia AverTV DVB-T USB2.0 device
93 - added support for the Typhoon/Yakumo/HAMA DVB-T mobile USB2.0
97 - added support for the KWorld/ADSTech Instant DVB-T USB2.0.
101 - added support for the Hauppauge Win-TV Nova-T USB2
146 - added additional remote control keys. Thanks to Uwe Hanke.
150 - added remote control support. Thanks to David Matthews.
154 - added support for a new devices (Grandtec/Avermedia/Artec)
[all …]
/Linux-v4.19/drivers/net/team/
DKconfig7 Team devices can be added using the "ip" command from the
23 All added ports are setup to have team's device address.
35 All added ports are setup to have team's device address.
47 All added ports are setup to have team's device address.
/Linux-v4.19/Documentation/scsi/
Dsmartpqi.txt13 volumes will not be added to the OS.
24 <Controller names to be added as they become publicly available.>
46 HBA devices are added to the SAS transport layer. These attributes are
47 automatically added by the SAS transport layer.
/Linux-v4.19/certs/
DKconfig23 Provide a system keyring to which trusted keys can be added. Keys in
24 the keyring are considered to be trusted. Keys may be added at will
61 bool "Provide a keyring to which extra trustable keys may be added"
64 If set, provide a keyring to which extra keys may be added, provided
72 Provide a system keyring to which blacklisted keys can be added.
/Linux-v4.19/Documentation/networking/
Dipv6.txt31 No IPv6 addresses will be added to interfaces, and
49 will be added to interfaces.
71 No IPv6 addresses will be added to interfaces.
/Linux-v4.19/Documentation/driver-model/
Dclass.txt51 As devices are bound to drivers, they are added to the device class
57 The device is enumerated in the class. Each time a device is added to
60 from the class and re-added, it will receive a different enumerated
74 Device drivers are added to device classes when they are registered
145 When a device is added to a device class, the core attempts to add it
/Linux-v4.19/Documentation/phy/
Dsamsung-usb2.txt15 with added support for many special cases.
38 To support a new SoC a new file should be added to the drivers/phy
107 added to the struct of_device_id samsung_usb2_phy_of_match[] array:
130 The newly created file that supports the new SoC has to be also added to the
131 Makefile. In case of Exynos 4210 the added line is following:
/Linux-v4.19/drivers/pci/hotplug/
Dpnv_php.c22 bool added; member
690 if (event->added) in pnv_php_event_handler()
707 bool added; in pnv_php_interrupt() local
716 added = !!(lsts & PCI_EXP_LNKSTA_DLLLA); in pnv_php_interrupt()
726 added = !!(presence == OPAL_PCI_SLOT_PRESENT); in pnv_php_interrupt()
732 if (!added) { in pnv_php_interrupt()
757 php_slot->name, added ? "added" : "removed", irq); in pnv_php_interrupt()
759 event->added = added; in pnv_php_interrupt()
/Linux-v4.19/Documentation/pcmcia/
Ddriver.txt8 New PCMCIA IDs may be added to a device driver pcmcia_device_id table at
20 Once added, the driver probe routine will be invoked for any unclaimed
/Linux-v4.19/arch/arm64/crypto/
Daes-ce-ccm-glue.c119 int added = min(abytes, AES_BLOCK_SIZE - *macp); in ccm_update_mac() local
121 crypto_xor(&mac[*macp], in, added); in ccm_update_mac()
123 *macp += added; in ccm_update_mac()
124 in += added; in ccm_update_mac()
125 abytes -= added; in ccm_update_mac()
/Linux-v4.19/Documentation/devicetree/bindings/arm/bcm/
Dbrcm,nsp-cpu-method.txt15 and should be added per cpu. E.g., in case of NSP (BCM58625) which
16 is a dual core CPU SoC, this entry should be added to cpu1 node.
/Linux-v4.19/Documentation/ABI/testing/
Dsysfs-devices7 be added and removed dynamically as the machine runs,
17 devices being added and removed from this tree to find
/Linux-v4.19/drivers/staging/fbtft/
Dfbtft-io.c45 size_t added = 0; in fbtft_write_spi_emulate_9() local
78 added++; in fbtft_write_spi_emulate_9()
81 return spi_write(par->spi, par->extra, size + added); in fbtft_write_spi_emulate_9()
/Linux-v4.19/Documentation/filesystems/ext4/ondisk/
Dchecksums.rst6 Starting in early 2012, metadata checksums were added to all major ext4
17 Existing filesystems can have checksumming added by running
21 directories rebuilt with checksums. This has the added benefit of
/Linux-v4.19/Documentation/driver-api/
Ddevice_link.rst48 The earliest point in time when device links can be added is after
53 remains in a consistent state: E.g. a device link cannot be added in
56 or the device link needs to be added from a function which is guaranteed
61 represents a driver presence dependency, yet is added from the consumer's
68 If a device link is added in the ``->probe`` callback of the supplier or
71 link is added on module load and orderly deleted on unload. The same
82 link is added from the consumer's ``->probe`` callback: ``DL_FLAG_RPM_ACTIVE``
89 Similarly, when the device link is added from supplier's ``->probe`` callback,
125 runtime PM integration is added from the busmaster device (consumer)
183 becomes a directed acyclic graph once device links are added.
[all …]
/Linux-v4.19/net/vmw_vsock/
Dvirtio_transport.c123 bool added = false; in virtio_transport_send_pkt_work() local
180 added = true; in virtio_transport_send_pkt_work()
183 if (added) in virtio_transport_send_pkt_work()
304 bool added = false; in virtio_transport_tx_work() local
315 added = true; in virtio_transport_tx_work()
320 if (added) in virtio_transport_tx_work()
/Linux-v4.19/drivers/vhost/
Dvsock.c88 bool added = false; in vhost_transport_do_send_pkt() local
167 added = true; in vhost_transport_do_send_pkt()
186 if (added) in vhost_transport_do_send_pkt()
351 bool added = false; in vhost_vsock_handle_tx_kick() local
401 added = true; in vhost_vsock_handle_tx_kick()
405 if (added) in vhost_vsock_handle_tx_kick()
/Linux-v4.19/Documentation/s390/
D3270.ChangeLog39 * the components are remodularized: added source modules are
44 * color support and minimal other ESC-sequence support is added.
/Linux-v4.19/tools/perf/tests/attr/
Dtest-record-C013 # + PERF_SAMPLE_CPU added by -C 0
/Linux-v4.19/tools/testing/selftests/net/forwarding/
DREADME54 multiple topologies and added to lib.sh.
55 o Checks shall be added to lib.sh for any external dependencies.

12345678910>>...26