/Linux-v5.4/Documentation/sphinx/ |
D | kernel_include.py | 155 classes=self.options.get('class', [])) 168 for classes, value in tokens: 169 if classes: 171 classes=classes)
|
D | rstFlatTable.py | 198 def buildTableRowNode(self, row_data, classes=None): argument 199 classes = [] if classes is None else classes 206 attributes = {"classes" : classes}
|
D | automarkup.py | 54 lit_text = nodes.literal(classes=['xref', 'c', 'c-func'])
|
/Linux-v5.4/Documentation/locking/ |
D | lockdep-design.rst | 19 The validator tracks the 'usage state' of lock-classes, and it tracks 20 the dependencies between different lock-classes. Lock usage indicates 154 between any two lock-classes:: 321 is O(N^2), so even with just a few hundred lock-classes we'd have to do 336 The validator tracks a maximum of MAX_LOCKDEP_KEYS number of lock classes. 342 desktop systems have less than 1,000 lock classes, so this warning 348 load of the module will create a new set of lock classes for 350 classes (see below discussion of reuse of lock classes for why). 352 the number of lock classes will eventually reach the maximum. 357 spinlock_t will consume 8192 lock classes -unless- each spinlock [all …]
|
/Linux-v5.4/drivers/parport/ |
D | probe.c | 19 } classes[] = { variable 46 printk (": %s", classes[info->class].descr); in pretty_print() 95 for (i = 0; classes[i].token; i++) { in parse_data() 96 if (!strcmp(classes[i].token, sep)) { in parse_data()
|
/Linux-v5.4/arch/mips/fw/arc/ |
D | tree.c | 69 static char *classes[] = { variable 97 p, classes[p->class], types[p->type], in dump_component()
|
/Linux-v5.4/tools/usb/usbip/libsrc/ |
D | names.c | 79 static struct class *classes[HASHSZ] = { NULL, }; variable 109 c = classes[hashnum(classid)]; in names_class() 233 c = classes[h]; in new_class() 242 c->next = classes[h]; in new_class() 243 classes[h] = c; in new_class()
|
/Linux-v5.4/drivers/ata/ |
D | libata-eh.c | 2617 unsigned int *classes, unsigned long deadline, in ata_do_reset() argument 2624 classes[dev->devno] = ATA_DEV_UNKNOWN; in ata_do_reset() 2626 return reset(link, classes, deadline); in ata_do_reset() 2648 unsigned int *classes = ehc->classes; in ata_eh_reset() local 2750 classes[dev->devno] = ATA_DEV_NONE; in ata_eh_reset() 2765 classes[dev->devno] = ATA_DEV_NONE; in ata_eh_reset() 2795 rc = ata_do_reset(link, reset, classes, deadline, true); in ata_eh_reset() 2809 tmp = ata_do_reset(slave, reset, classes, deadline, in ata_eh_reset() 2837 rc = ata_do_reset(link, reset, classes, deadline, true); in ata_eh_reset() 2867 classes[dev->devno] = ATA_DEV_ATA; in ata_eh_reset() [all …]
|
D | pata_icside.c | 302 static void pata_icside_postreset(struct ata_link *link, unsigned int *classes) in pata_icside_postreset() argument 307 if (classes[0] != ATA_DEV_NONE || classes[1] != ATA_DEV_NONE) in pata_icside_postreset() 308 return ata_sff_postreset(link, classes); in pata_icside_postreset()
|
D | libata-sff.c | 1974 int ata_sff_softreset(struct ata_link *link, unsigned int *classes, in ata_sff_softreset() argument 2004 classes[0] = ata_sff_dev_classify(&link->device[0], in ata_sff_softreset() 2007 classes[1] = ata_sff_dev_classify(&link->device[1], in ata_sff_softreset() 2010 DPRINTK("EXIT, classes[0]=%u [1]=%u\n", classes[0], classes[1]); in ata_sff_softreset() 2060 void ata_sff_postreset(struct ata_link *link, unsigned int *classes) in ata_sff_postreset() argument 2064 ata_std_postreset(link, classes); in ata_sff_postreset() 2067 if (classes[0] != ATA_DEV_NONE) in ata_sff_postreset() 2069 if (classes[1] != ATA_DEV_NONE) in ata_sff_postreset() 2073 if (classes[0] == ATA_DEV_NONE && classes[1] == ATA_DEV_NONE) { in ata_sff_postreset()
|
/Linux-v5.4/Documentation/driver-api/driver-model/ |
D | class.rst | 8 device. The following device classes have been identified: 18 Device classes are agnostic with respect to what bus a device resides 43 Device classes are registered and unregistered with the core using:: 74 Device drivers are added to device classes when they are registered
|
/Linux-v5.4/security/ |
D | Kconfig.hardening | 38 This chooses the level of coverage over classes of potentially 47 classes of uninitialized stack variable exploits 56 a __user attribute. This can prevent some classes of 69 explicitly initialized. This can prevent most classes 87 initialized. This is intended to eliminate all classes 96 pattern. This is intended to eliminate all classes
|
/Linux-v5.4/Documentation/scsi/ |
D | megaraid.txt | 7 Different classes of controllers from LSI Logic accept and respond to the 9 commands. Furthermore, the applications also can treat different classes of 70 as new controller classes get added, this will be tuned appropriately.
|
/Linux-v5.4/include/linux/platform_data/ |
D | i2c-mux-gpio.h | 29 const unsigned *classes; member
|
D | i2c-mux-reg.h | 33 const unsigned int *classes; member
|
/Linux-v5.4/drivers/gpu/drm/nouveau/nvif/ |
D | Kbuild | 13 # Usermode classes
|
/Linux-v5.4/Documentation/ABI/testing/ |
D | sysfs-class | 6 subdirectories describing individual classes of devices
|
/Linux-v5.4/kernel/ |
D | auditfilter.c | 163 static __u32 *classes[AUDIT_SYSCALL_CLASSES]; variable 178 if (class >= AUDIT_SYSCALL_CLASSES || classes[class]) { in audit_register_class() 182 classes[class] = p; in audit_register_class() 190 if (unlikely(class >= AUDIT_SYSCALL_CLASSES || !classes[class])) in audit_match_class() 192 return classes[class][AUDIT_WORD(syscall)] & AUDIT_BIT(syscall); in audit_match_class() 200 if (classes[class]) { in audit_match_class_bits() 202 if (mask[i] & classes[class][i]) in audit_match_class_bits() 288 class = classes[i]; in audit_to_entry_common()
|
/Linux-v5.4/Documentation/networking/device_drivers/ti/ |
D | cpsw.txt | 22 - Traffic classes are used starting from 0, that has highest priority 30 - Any l2/socket prio (0 - 7) for classes can be used, but for 32 - only 2 classes tested: A and B, but checked and can work with more, 46 | Only 2 classes: |Mb +---| +-------------------------------+ 193 // Check classes settings 406 // Check classes settings 458 // Check classes settings
|
/Linux-v5.4/drivers/i2c/muxes/ |
D | i2c-mux-gpio.c | 193 unsigned int class = mux->data.classes ? mux->data.classes[i] : 0; in i2c_mux_gpio_probe()
|
D | i2c-mux-reg.c | 221 class = mux->data.classes ? mux->data.classes[i] : 0; in i2c_mux_reg_probe()
|
/Linux-v5.4/net/dcb/ |
D | Kconfig | 18 framework for assigning bandwidth guarantees to traffic classes.
|
/Linux-v5.4/fs/minix/ |
D | Kconfig | 6 Minix is a simple operating system used in many classes about OS's.
|
/Linux-v5.4/Documentation/networking/device_drivers/freescale/ |
D | dpaa.txt | 156 The driver has support for multiple prioritized Tx traffic classes. Priorities 160 are used. Higher priority traffic classes can be enabled with the mqprio 161 qdisc. For example, all four traffic classes are enabled on an interface with 163 classes as follows:
|
/Linux-v5.4/Documentation/block/ |
D | ioprio.rst | 15 Scheduling classes 18 CFQ implements three generic scheduling classes that determine how io is
|