/linux-6.12.1/net/core/ |
D | secure_seq.c | 62 } __aligned(SIPHASH_ALIGNMENT) combined = { in secure_tcpv6_ts_off() 71 return siphash(&combined, offsetofend(typeof(combined), daddr), in secure_tcpv6_ts_off() 84 } __aligned(SIPHASH_ALIGNMENT) combined = { in secure_tcpv6_seq() 93 hash = siphash(&combined, offsetofend(typeof(combined), dport), in secure_tcpv6_seq() 107 } __aligned(SIPHASH_ALIGNMENT) combined = { in secure_ipv6_port_ephemeral() 114 return siphash(&combined, offsetofend(typeof(combined), dport), in secure_ipv6_port_ephemeral() 184 } __aligned(SIPHASH_ALIGNMENT) combined = { in secure_dccpv6_sequence_number() 192 seq = siphash(&combined, offsetofend(typeof(combined), dport), in secure_dccpv6_sequence_number()
|
/linux-6.12.1/tools/testing/selftests/drivers/net/netdevsim/ |
D | tc-mq-visibility.sh | 40 ethtool -L $NDEV combined $n 47 ethtool -L $NDEV combined $n 55 ethtool -L $NDEV combined 1 58 ethtool -L $NDEV combined 4 65 ethtool -L $NDEV combined 1
|
/linux-6.12.1/lib/ |
D | siphash.c | 218 u64 combined = (u64)second << 32 | first; in siphash_3u32() local 220 v3 ^= combined; in siphash_3u32() 223 v0 ^= combined; in siphash_3u32() 332 u64 combined = (u64)second << 32 | first; in hsiphash_2u32() local 334 v3 ^= combined; in hsiphash_2u32() 336 v0 ^= combined; in hsiphash_2u32() 351 u64 combined = (u64)second << 32 | first; in hsiphash_3u32() local 353 v3 ^= combined; in hsiphash_3u32() 355 v0 ^= combined; in hsiphash_3u32() 372 u64 combined = (u64)second << 32 | first; in hsiphash_4u32() local [all …]
|
/linux-6.12.1/Documentation/devicetree/bindings/pci/ |
D | rockchip-dw-pcie-common.yaml | 45 Combined system interrupt, which is used to signal the following 50 Combined PM interrupt, which is used to signal the following 55 Combined message interrupt, which is used to signal the following 59 Combined legacy interrupt, which is used to signal the following 63 Combined error interrupt, which is used to signal the following
|
/linux-6.12.1/tools/testing/selftests/drivers/net/hw/ |
D | rss_ctx.py | 183 ethtool(f"-L {cfg.ifname} combined 4") 184 defer(ethtool, f"-L {cfg.ifname} combined {qcnt}") 204 ethtool(f"-L {cfg.ifname} combined 5") 208 ethtool(f"-L {cfg.ifname} combined 4") 226 ethtool(f"-L {cfg.ifname} combined 5") 235 ethtool(f"-L {cfg.ifname} combined 3") 252 ch_max = channels['combined-max'] 253 qcnt = channels['combined-count'] 258 ethtool(f"-L {cfg.ifname} combined 2") 259 defer(ethtool, f"-L {cfg.ifname} combined {qcnt}") [all …]
|
/linux-6.12.1/Documentation/devicetree/bindings/iommu/ |
D | arm,smmu-v3.yaml | 34 - const: combined 36 The combined interrupt is optional, and should only be provided if the 37 hardware supports just a single, combined interrupt line. 38 If provided, then the combined interrupt will be used in preference to
|
/linux-6.12.1/drivers/net/ethernet/amd/xgbe/ |
D | xgbe-ethtool.c | 696 unsigned int rx, tx, combined; in xgbe_get_channels() local 710 combined = min(rx, tx); in xgbe_get_channels() 712 channels->max_combined = combined; in xgbe_get_channels() 720 combined = min(rx, tx); in xgbe_get_channels() 721 rx -= combined; in xgbe_get_channels() 722 tx -= combined; in xgbe_get_channels() 724 channels->combined_count = combined; in xgbe_get_channels() 732 netdev_err(netdev, "channel inputs: combined=%u, rx-only=%u, tx-only=%u\n", in xgbe_print_set_channels_input() 741 unsigned int rx, rx_curr, tx, tx_curr, combined; in xgbe_set_channels() local 755 combined = min(rx, tx); in xgbe_set_channels() [all …]
|
/linux-6.12.1/Documentation/devicetree/bindings/mailbox/ |
D | arm,mhuv3.yaml | 132 - combined 139 - const: combined 140 description: PBX/MBX Combined interrupt 141 - const: combined-ffch 142 description: PBX/MBX FIFO Combined interrupt 208 interrupt-names = "combined", "pbx-dbch-xfer-ack-1", 219 interrupt-names = "combined", "mbx-dbch-xfer-1", "ffch-low-tide-0";
|
/linux-6.12.1/Documentation/devicetree/bindings/iio/proximity/ |
D | semtech,sx9310.yaml | 50 semtech,combined-sensors: 53 List of which sensors are combined and represented by CS3. 82 Sensor used for start-up proximity detection. The combined 125 semtech,combined-sensors = <1 2 3>;
|
/linux-6.12.1/tools/testing/selftests/ftrace/test.d/trigger/inter-event/ |
D | trigger-inter-event-combined-hist.tc | 3 # description: event trigger - test inter-event combined histogram trigger 18 echo "Test combined histogram" 34 fail "Failed to create combined histogram"
|
/linux-6.12.1/Documentation/devicetree/bindings/usb/ |
D | usb-device.yaml | 19 "interface nodes" representing USB interfaces and "combined nodes" 22 A combined node shall be used instead of a device node and an interface node 26 A "hub node" is a combined node or an interface node that represents a USB 32 description: Device nodes or combined nodes.
|
/linux-6.12.1/Documentation/devicetree/bindings/thermal/ |
D | qcom-tsens.yaml | 74 - description: v2 of TSENS with combined interrupt 78 - description: v2 of TSENS with combined interrupt 245 - description: Combined interrupt if upper or lower threshold crossed 259 - description: Combined interrupt if upper or lower threshold crossed 276 - description: Combined interrupt if upper, lower or critical thresholds crossed 279 - const: combined 403 interrupt-names = "combined";
|
/linux-6.12.1/net/netfilter/ |
D | nf_conntrack_expect.c | 90 } __aligned(SIPHASH_ALIGNMENT) combined; in nf_ct_expect_dst_hash() 95 memset(&combined, 0, sizeof(combined)); in nf_ct_expect_dst_hash() 97 combined.dst_addr = tuple->dst.u3; in nf_ct_expect_dst_hash() 98 combined.net_mix = net_hash_mix(n); in nf_ct_expect_dst_hash() 99 combined.dport = (__force __u16)tuple->dst.u.all; in nf_ct_expect_dst_hash() 100 combined.l3num = tuple->src.l3num; in nf_ct_expect_dst_hash() 101 combined.protonum = tuple->dst.protonum; in nf_ct_expect_dst_hash() 103 hash = siphash(&combined, sizeof(combined), &nf_ct_expect_hashrnd); in nf_ct_expect_dst_hash()
|
/linux-6.12.1/Documentation/ABI/testing/ |
D | sysfs-bus-iio-sx9310 | 7 near the combined sensor. The combined sensor presents
|
/linux-6.12.1/drivers/iio/light/ |
D | Kconfig | 518 tristate "SI1132 and SI1141/2/3/5/6/7 combined ALS, UV index and proximity sensor" 524 SI1141/2/3/5/6/7 combined ambient light, UV index and proximity sensor 612 featuring channels for combined visible + IR intensity and lux illuminance. 647 tristate "VCNL4000/4010/4020/4200 combined ALS and proximity sensor" 653 VCNL4010, VCNL4020, VCNL4200 combined ambient light and proximity 660 tristate "VCNL4035 combined ALS and proximity sensor" 667 combined ambient light (ALS) and proximity sensor. Currently only ALS 721 VL6180 combined ambient light, range and proximity sensor.
|
/linux-6.12.1/Documentation/devicetree/bindings/timer/ |
D | nvidia,tegra-timer.yaml | 21 # Either a single combined interrupt or up to 14 individual interrupts 43 # Either a single combined interrupt or up to 6 individual interrupts 57 # Either a single combined interrupt or up to 4 individual interrupts
|
/linux-6.12.1/tools/include/uapi/linux/ |
D | pkt_cls.h | 54 * a combined opcode. 59 #define TC_ACT_EXT_OPCODE(combined) ((combined) & (~TC_ACT_EXT_VAL_MASK)) argument 60 #define TC_ACT_EXT_CMP(combined, opcode) (TC_ACT_EXT_OPCODE(combined) == opcode) argument
|
/linux-6.12.1/tools/perf/pmu-events/arch/arm64/fujitsu/a64fx/ |
D | pipeline.json | 141 …re 2 elements of the gather instructions became 2 flows because 2 elements could not be combined.", 144 …ere 2 elements of the gather instructions became 2 flows because 2 elements could not be combined." 147 …s where 2 elements of the gather instructions became 1 flow because 2 elements could be combined.", 150 …es where 2 elements of the gather instructions became 1 flow because 2 elements could be combined."
|
/linux-6.12.1/Documentation/devicetree/bindings/display/ |
D | arm,pl11x.yaml | 42 - const: combined 45 combined line. If the integration only connects this line to the 148 interrupt-names = "combined";
|
/linux-6.12.1/tools/testing/selftests/bpf/progs/ |
D | async_stack_depth.c | 33 __failure __msg("combined stack size of 2 calls is") 48 __failure __msg("combined stack size of 2 calls is")
|
/linux-6.12.1/Documentation/driver-api/media/drivers/ |
D | sh_mobile_ceu_camera.rst | 13 combined scales: sensor_scale * host_scale 81 3. Calculate new combined scales from "effective" input window to requested user 86 4. Calculate sensor output window by applying combined scales to real input
|
/linux-6.12.1/drivers/usb/core/ |
D | of.c | 43 * usb_of_has_combined_node() - determine whether a device has a combined node 46 * Determine whether a USB device has a so called combined node which is 55 * criteria for a combined node.
|
/linux-6.12.1/tools/perf/pmu-events/arch/x86/tigerlake/ |
D | uncore-memory.json | 12 …er. However, same cache line write requests (both full and partial) are combined to a single 64 by… 39 …er. However, same cache line write requests (both full and partial) are combined to a single 64 by…
|
/linux-6.12.1/tools/testing/selftests/drivers/net/ |
D | queues.py | 43 if channels['combined-count'] == 0: 46 rx_type = 'combined'
|
/linux-6.12.1/drivers/media/pci/ivtv/ |
D | Kconfig | 66 utilize write-combined caching on the framebuffer memory. 73 ranges that should be marked write-combined from the driver.
|