/linux/net/core/ |
H A 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/tools/testing/selftests/drivers/net/netdevsim/ |
H A 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/lib/ |
H A D | siphash.c | 220 v3 ^= combined; in siphash_3u32() 223 v0 ^= combined; in siphash_3u32() 334 v3 ^= combined; in hsiphash_2u32() 336 v0 ^= combined; in hsiphash_2u32() 353 v3 ^= combined; in hsiphash_3u32() 355 v0 ^= combined; in hsiphash_3u32() 374 v3 ^= combined; in hsiphash_4u32() 376 v0 ^= combined; in hsiphash_4u32() 377 combined = (u64)forth << 32 | third; in hsiphash_4u32() 378 v3 ^= combined; in hsiphash_4u32() [all …]
|
/linux/Documentation/devicetree/bindings/iommu/ |
H A 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/Documentation/ABI/testing/ |
H A D | sysfs-bus-iio-sx9310 | 7 near the combined sensor. The combined sensor presents
|
/linux/drivers/net/ethernet/amd/xgbe/ |
H A 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() 741 unsigned int rx, rx_curr, tx, tx_curr, combined; in xgbe_set_channels() local 755 combined = min(rx, tx); in xgbe_set_channels() 773 if (channels->combined_count > combined) { in xgbe_set_channels() [all …]
|
/linux/net/netfilter/ |
H A 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()
|
H A D | nf_nat_core.c | 166 } __aligned(SIPHASH_ALIGNMENT) combined; in hash_by_src() 170 memset(&combined, 0, sizeof(combined)); in hash_by_src() 173 combined.src = tuple->src; in hash_by_src() 174 combined.net_mix = net_hash_mix(net); in hash_by_src() 175 combined.protonum = tuple->dst.protonum; in hash_by_src() 179 combined.zone = zone->id; in hash_by_src() 181 hash = siphash(&combined, sizeof(combined), &nf_nat_hash_rnd); in hash_by_src()
|
/linux/Documentation/devicetree/bindings/iio/proximity/ |
H A 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/Documentation/devicetree/bindings/usb/ |
H A 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/tools/include/uapi/linux/ |
H A D | pkt_cls.h | 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/include/uapi/linux/ |
H A D | pkt_cls.h | 90 #define TC_ACT_EXT_OPCODE(combined) ((combined) & (~TC_ACT_EXT_VAL_MASK)) argument 91 #define TC_ACT_EXT_CMP(combined, opcode) (TC_ACT_EXT_OPCODE(combined) == opcode) argument
|
/linux/Documentation/driver-api/media/drivers/ |
H A 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/Documentation/devicetree/bindings/timer/ |
H A 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/tools/perf/util/ |
H A D | metricgroup.c | 1402 struct expr_parse_ctx **combined) in build_combined_expr_ctx() argument 1410 *combined = expr__ctx_new(); in build_combined_expr_ctx() 1411 if (!*combined) in build_combined_expr_ctx() 1422 ret = expr__add_id(*combined, dup); in build_combined_expr_ctx() 1430 expr__ctx_free(*combined); in build_combined_expr_ctx() 1431 *combined = NULL; in build_combined_expr_ctx() 1554 struct expr_parse_ctx *combined = NULL; in parse_groups() local 1560 if (!ret && combined && hashmap__size(combined->ids)) { in parse_groups() 1561 ret = parse_ids(metric_no_merge, fake_pmu, combined, in parse_groups() 1567 if (combined) in parse_groups() [all …]
|
/linux/Documentation/devicetree/bindings/display/ |
H A D | arm,pl11x.yaml | 42 - const: combined 45 combined line. If the integration only connects this line to the 148 interrupt-names = "combined";
|
/linux/arch/arm64/boot/dts/amd/ |
H A D | amd-seattle-xgbe-b.dtsi | 92 interrupts = /* Uses combined intr for both 105 interrupts = /* Uses combined intr for both
|
/linux/net/ipv6/ |
H A D | syncookies.c | 50 } __aligned(SIPHASH_ALIGNMENT) combined = { in cookie_hash() 59 return siphash(&combined, offsetofend(typeof(combined), dport), in cookie_hash()
|
/linux/Documentation/devicetree/bindings/interrupt-controller/ |
H A D | samsung,exynos4210-combiner.yaml | 20 combined interrupt for its eight interrupt sources. The combined interrupt is
|
/linux/Documentation/devicetree/bindings/pinctrl/ |
H A D | renesas,rza2-pinctrl.yaml | 7 title: Renesas RZ/A2 combined Pin and GPIO controller 14 The Renesas SoCs of the RZ/A2 series feature a combined Pin and GPIO
|
/linux/drivers/media/pci/ivtv/ |
H A D | Kconfig | 66 utilize write-combined caching on the framebuffer memory. 73 ranges that should be marked write-combined from the driver.
|
/linux/Documentation/features/debug/kprobes-on-ftrace/ |
H A D | arch-support.txt | 4 # description: arch supports combined kprobes and ftrace live patching
|
/linux/Documentation/devicetree/bindings/thermal/ |
H A D | qcom-tsens.yaml | 74 - description: v2 of TSENS with combined interrupt 78 - description: v2 of TSENS with combined interrupt 279 - const: combined 403 interrupt-names = "combined";
|
/linux/Documentation/devicetree/bindings/mailbox/ |
H A D | arm,mhuv3.yaml | 132 - combined 139 - const: combined 141 - const: combined-ffch 208 interrupt-names = "combined", "pbx-dbch-xfer-ack-1", 219 interrupt-names = "combined", "mbx-dbch-xfer-1", "ffch-low-tide-0";
|
/linux/tools/memory-model/litmus-tests/ |
H A D | MP+polockmbonce+poacquiresilsil.litmus | 6 * Do spinlocks combined with smp_mb__after_spinlock() provide order
|