| /linux/drivers/s390/cio/ |
| H A D | isc.c | 19 * isc_register - register an I/O interruption subclass. 20 * @isc: I/O interruption subclass to register 23 * register @isc, the corresponding I/O interruption subclass mask is enabled. 44 * isc_unregister - unregister an I/O interruption subclass. 45 * @isc: I/O interruption subclass to unregister 48 * unregister @isc, the corresponding I/O interruption subclass mask is
|
| /linux/include/uapi/linux/usb/ |
| H A D | cdc.h | 332 * CDC NCM NTB parameters structure, CDC NCM subclass 6.2.1 352 * CDC NCM transfer headers, CDC NCM subclass 3.2 375 * CDC NCM datagram pointers, CDC NCM subclass 3.3 418 /* CDC NCM subclass 3.2.1 and 3.2.2 */ 422 /* CDC NCM subclass 3.3.3 Datagram Formatting */ 426 /* CDC NCM subclass 4.2 NCM Communications Interface Protocol Code */ 430 /* CDC NCM subclass 5.2.1 NCM Functional Descriptor, bmNetworkCapabilities */ 438 /* CDC NCM subclass Table 6-3: NTB Parameter Structure */ 442 /* CDC NCM subclass Table 6-3: NTB Parameter Structure */ 446 /* CDC NCM subclass 6.2.5 SetNtbFormat */ [all …]
|
| /linux/kernel/locking/ |
| H A D | rtmutex_api.c | 43 unsigned int subclass) in __rt_mutex_lock_common() argument 49 mutex_acquire_nest(&lock->dep_map, subclass, 0, nest_lock, _RET_IP_); in __rt_mutex_lock_common() 67 * @subclass: the lockdep subclass 69 void __sched rt_mutex_lock_nested(struct rt_mutex *lock, unsigned int subclass) in rt_mutex_lock_nested() argument 71 if (__rt_mutex_lock_common(lock, TASK_UNINTERRUPTIBLE, NULL, subclass) == 0) in rt_mutex_lock_nested() 553 unsigned int subclass, in __mutex_lock_common() argument 561 mutex_acquire_nest(&lock->dep_map, subclass, 0, nest_lock, ip); in __mutex_lock_common() 578 void __sched mutex_lock_nested(struct mutex *lock, unsigned int subclass) in mutex_lock_nested() argument 580 __mutex_lock_common(lock, TASK_UNINTERRUPTIBLE, subclass, NULL, _RET_IP_); in mutex_lock_nested() 592 unsigned int subclass) in mutex_lock_interruptible_nested() argument [all …]
|
| /linux/drivers/gpu/drm/xe/tests/ |
| H A D | xe_test.h | 26 * @id: enum xe_test_priv_id to identify the subclass. 37 * current->kunit->priv if it exists and is embedded in the expected subclass. 38 * @id: Id of the expected subclass. 42 * subclass. A pointer to the embedded struct xe_test_priv otherwise.
|
| /linux/tools/usb/usbip/libsrc/ |
| H A D | names.c | 43 struct subclass { struct 44 struct subclass *next; argument 80 static struct subclass *subclasses[HASHSZ] = { NULL, }; 118 struct subclass *s; in names_subclass() 249 struct subclass *s; in new_subclass() 256 s = my_malloc(sizeof(struct subclass) + strlen(name)); in new_subclass() 388 /* product or subclass spec */ in parse() 393 err("Invalid product/subclass spec at line %u", in parse() 407 err("Duplicate subclass spec at line %u class %02x:%02x %s", in parse() 409 dbg("line %5u subclass %02x:%02x %s", linectr, in parse() [all …]
|
| H A D | usbip_common.c | 298 uint8_t subclass, uint8_t protocol) in usbip_names_get_class() argument 302 if (class == 0 && subclass == 0 && protocol == 0) { in usbip_names_get_class() 303 snprintf(buff, size, "(Defined at Interface level) (%02x/%02x/%02x)", class, subclass, protocol); in usbip_names_get_class() 307 p = names_protocol(class, subclass, protocol); in usbip_names_get_class() 311 s = names_subclass(class, subclass); in usbip_names_get_class() 313 s = "unknown subclass"; in usbip_names_get_class() 319 snprintf(buff, size, "%s / %s / %s (%02x/%02x/%02x)", c, s, p, class, subclass, protocol); in usbip_names_get_class()
|
| /linux/arch/arm/mach-omap2/ |
| H A D | soc.h | 108 #define IS_OMAP_SUBCLASS(subclass, id) \ argument 109 static inline int is_omap ##subclass (void) \ 114 #define IS_TI_SUBCLASS(subclass, id) \ argument 115 static inline int is_ti ##subclass (void) \ 120 #define IS_AM_SUBCLASS(subclass, id) \ argument 121 static inline int is_am ##subclass (void) \ 126 #define IS_DRA_SUBCLASS(subclass, id) \ argument 127 static inline int is_dra ##subclass (void) \ 134 #define IS_DRA_SUBCLASS_PACKAGE(subclass, package, id) \ argument 135 static inline int is_dra ##subclass ##_ ##package (void) \ [all …]
|
| /linux/tools/usb/usbip/ |
| H A D | README | 201 : (Defined at Interface level) / unknown subclass / unknown protocol (00/00/00) 206 : (Defined at Interface level) / unknown subclass / unknown protocol (00/00/00) 207 : 0 - Human Interface Devices / Boot Interface Subclass / Keyboard (03/01/01) 211 : (Defined at Interface level) / unknown subclass / unknown protocol (00/00/00) 212 : 0 - Vendor Specific Class / unknown subclass / unknown protocol (ff/00/00) 216 : (Defined at Interface level) / unknown subclass / unknown protocol (00/00/00) 217 : 0 - Data / unknown subclass / unknown protocol (0a/ff/00)
|
| /linux/Documentation/usb/ |
| H A D | functionfs-desc.rst | 19 Standard USB interface descriptors may be written. The class/subclass of the 26 Class-specific descriptors are accepted only for the class/subclass of the 33 When the interface class is USB_CLASS_APP_SPEC and the interface subclass
|
| /linux/include/linux/ |
| H A D | spinlock.h | 222 # define raw_spin_lock_nested(lock, subclass) \ argument 223 _raw_spin_lock_nested(lock, subclass) 232 * Always evaluate the 'subclass' argument to avoid that the compiler 236 # define raw_spin_lock_nested(lock, subclass) \ argument 237 _raw_spin_lock(((void)(subclass), (lock))) 250 #define raw_spin_lock_irqsave_nested(lock, flags, subclass) \ argument 253 flags = _raw_spin_lock_irqsave_nested(lock, subclass); \ 256 #define raw_spin_lock_irqsave_nested(lock, flags, subclass) \ argument 271 #define raw_spin_lock_irqsave_nested(lock, flags, subclass) \ argument 362 #define spin_lock_nested(lock, subclass) \ argument [all …]
|
| /linux/drivers/usb/gadget/function/ |
| H A D | u_rndis.h | 34 * @subclass: USB subclass. 53 u8 subclass; member
|
| /linux/fs/btrfs/ |
| H A D | locking.h | 25 * you decide you want to add another subclass. 34 * a subclass for COW'ed blocks so that lockdep doesn't complain. 44 * acceptable by having a different subclass for each of these 62 * used up all of our available subclasses, so this subclass exists to 69 * subclass so we don't confuse lockdep, as it will appear that we are
|
| /linux/Documentation/ABI/testing/ |
| H A D | configfs-usb-gadget-hid | 12 subclass HID device subclass to use
|
| H A D | configfs-usb-gadget-rndis | 17 subclass USB interface subclass, default is 06 (hex)
|
| /linux/tools/include/linux/ |
| H A D | rwsem.h | 41 #define down_read_nested(sem, subclass) down_read(sem) argument 42 #define down_write_nested(sem, subclass) down_write(sem) argument
|
| /linux/drivers/message/fusion/lsi/ |
| H A D | mpi_log_fc.h | 23 * b = Specifies a subclass of the firmware where 33 * c = A specific value within the subclass. 35 * NOTE: Any new values should be added to the end of each subclass so that the
|
| /linux/fs/jfs/ |
| H A D | jfs_incore.h | 108 #define IREAD_LOCK(ip, subclass) \ argument 109 down_read_nested(&JFS_IP(ip)->rdwrlock, subclass) 111 #define IWRITE_LOCK(ip, subclass) \ argument 112 down_write_nested(&JFS_IP(ip)->rdwrlock, subclass)
|
| /linux/include/linux/device-id/ |
| H A D | pci.h | 22 * @class: Device class, subclass, and "interface" to match. 39 __u32 class, class_mask; /* (class,subclass,prog-if) triplet */
|
| H A D | usb.h | 42 * @bDeviceSubClass: Subclass of device; associated with bDeviceClass. 48 * @bInterfaceSubClass: Subclass of interface; associated with bInterfaceClass.
|
| /linux/arch/s390/include/asm/ |
| H A D | irq.h | 118 void irq_subclass_register(enum irq_subclass subclass); 119 void irq_subclass_unregister(enum irq_subclass subclass);
|
| /linux/Documentation/translations/zh_CN/locking/ |
| H A D | mutex-design.rst | 112 void mutex_lock_nested(struct mutex *lock, unsigned int subclass); 118 unsigned int subclass);
|
| /linux/sound/hda/core/ |
| H A D | intel-dsp-config.c | 707 * detect DSP by checking class/subclass/prog-id information in snd_intel_dsp_driver_probe() 708 * class=04 subclass 03 prog-if 00: no DSP, use legacy driver in snd_intel_dsp_driver_probe() 709 * class=04 subclass 01 prog-if 00: DSP is present in snd_intel_dsp_driver_probe() 711 * class=04 subclass 03 prog-if 80: use DSP or legacy mode in snd_intel_dsp_driver_probe() 716 dev_err(&pci->dev, "Unknown PCI class/subclass/prog-if information (0x%06x) found, selecting HDAudio legacy driver\n", pci->class); in snd_intel_dsp_driver_probe() 720 dev_dbg(&pci->dev, "DSP detected with PCI class/subclass/prog-if info 0x%06x\n", pci->class); in snd_intel_dsp_driver_probe()
|
| /linux/rust/kernel/ |
| H A D | usb.rs | 150 pub const fn from_device_info(class: u8, subclass: u8, protocol: u8) -> Self { in from_device_ver() 154 bDeviceSubClass: subclass, in from_device_info() 161 pub const fn from_interface_info(class: u8, subclass: u8, protocol: u8) -> Self { in from_device_info() 165 bInterfaceSubClass: subclass, 212 subclass: u8, in from_device_interface_number() 221 bInterfaceSubClass: subclass, in from_device_and_interface_info()
|
| /linux/include/linux/soc/ti/ |
| H A D | omap1-soc.h | 69 #define IS_OMAP_SUBCLASS(subclass, id) \ argument 70 static inline int is_omap ##subclass (void) \
|
| /linux/drivers/nvdimm/ |
| H A D | security.c | 91 key_serial_t id, int subclass) in nvdimm_lookup_user_key() argument 110 down_read_nested(&key->sem, subclass); in nvdimm_lookup_user_key() 121 key_serial_t id, int subclass, struct key **key) in nvdimm_get_user_key_payload() argument 125 if (subclass == NVDIMM_BASE_KEY) in nvdimm_get_user_key_payload() 131 *key = nvdimm_lookup_user_key(nvdimm, id, subclass); in nvdimm_get_user_key_payload()
|