| /linux/include/net/netfilter/ |
| H A D | nf_conntrack_tuple.h | 26 #define NF_CT_TUPLE_L3SIZE ARRAY_SIZE(((union nf_inet_addr *)NULL)->all) 45 __be16 all; member 90 &t->src.u3.ip, ntohs(t->src.u.all), in nf_ct_dump_tuple_ip() 91 &t->dst.u3.ip, ntohs(t->dst.u.all)); in nf_ct_dump_tuple_ip() 100 t->src.u3.all, ntohs(t->src.u.all), in nf_ct_dump_tuple_ipv6() 101 t->dst.u3.all, ntohs(t->dst.u.all)); in nf_ct_dump_tuple_ipv6() 131 t1->src.u.all == t2->src.u.all in __nf_ct_tuple_src_equal() [all...] |
| /linux/drivers/misc/ |
| H A D | ntsync.c | 115 bool all; member 202 bool all; in ntsync_lock_obj() local 205 all = atomic_read(&obj->all_hint); in ntsync_lock_obj() 206 if (unlikely(all)) { in ntsync_lock_obj() 212 return all; in ntsync_lock_obj() 215 static void ntsync_unlock_obj(struct ntsync_device *dev, struct ntsync_obj *obj, bool all) in ntsync_unlock_obj() argument 217 if (all) { in ntsync_unlock_obj() 413 bool all; in ntsync_sem_release() local 422 all = ntsync_lock_obj(dev, sem); in ntsync_sem_release() 427 if (all) in ntsync_sem_release() [all …]
|
| /linux/drivers/macintosh/ |
| H A D | windfarm_pm121.c | 880 int all = 1; in pm121_new_control() local 885 all = pm121_register_control(ct, "optical-drive-fan", FAN_OD) && all; in pm121_new_control() 886 all = pm121_register_control(ct, "hard-drive-fan", FAN_HD) && all; in pm121_new_control() 887 all = pm121_register_control(ct, "cpu-fan", FAN_CPU) && all; in pm121_new_control() 888 all = pm121_register_control(ct, "cpufreq-clamp", CPUFREQ) && all; in pm121_new_control() 890 if (all) in pm121_new_control() 910 int all = 1; in pm121_new_sensor() local 915 all = pm121_register_sensor(sr, "cpu-temp", in pm121_new_sensor() 916 &sensor_cpu_temp) && all; in pm121_new_sensor() 917 all = pm121_register_sensor(sr, "cpu-current", in pm121_new_sensor() [all …]
|
| /linux/tools/testing/selftests/drivers/net/mlxsw/ |
| H A D | qos_headroom.sh | 130 dcb ets set dev $swp prio-tc all:0 177 dcb ets set dev $swp prio-tc all:0 5:1 6:2 7:3 196 dcb pfc set dev $swp prio-pfc all:off 5:on 6:on 7:on delay 0 224 dcb pfc set dev $swp prio-pfc all:off delay 0 225 dcb ets set dev $swp prio-tc all:0 259 dcb buffer set dev $swp prio-buffer all:0 261 dcb ets set dev $swp prio-tc all:0 273 dcb buffer set dev $swp buffer-size all:0 0:$size 2>/dev/null 278 dcb buffer set dev $swp buffer-size all:0 0:$size 286 dcb buffer set dev $swp buffer-size all:0 [all …]
|
| H A D | qos_pfc.sh | 175 dcb buffer set dev $swp1 prio-buffer all:0 1:1 213 dcb buffer set dev $swp3 prio-buffer all:0 1:1 214 dcb pfc set dev $swp3 prio-pfc all:off 1:on 230 dcb buffer set dev $swp4 prio-buffer all:0 1:1 231 dcb pfc set dev $swp4 prio-pfc all:off 1:on 247 dcb buffer set dev $swp4 buffer-size all:0 1:$pg1_size 290 dcb buffer set dev $swp4 buffer-size all:0 291 dcb pfc set dev $swp4 prio-pfc all:off 292 dcb buffer set dev $swp4 prio-buffer all:0 305 dcb pfc set dev $swp3 prio-pfc all:off [all …]
|
| /linux/include/linux/ |
| H A D | netfilter.h | 44 return a1->all[0] == a2->all[0] && in nf_inet_addr_cmp() 45 a1->all[1] == a2->all[1] && in nf_inet_addr_cmp() 46 a1->all[2] == a2->all[2] && in nf_inet_addr_cmp() 47 a1->all[3] == a2->all[3]; in nf_inet_addr_cmp() 63 result->all[0] = a1->all[0] & mask->all[0]; in nf_inet_addr_mask() 64 result->all[1] = a1->all[1] & mask->all[1]; in nf_inet_addr_mask() 65 result->all[2] = a1->all[2] & mask->all[2]; in nf_inet_addr_mask() 66 result->all[3] = a1->all[3] & mask->all[3]; in nf_inet_addr_mask()
|
| /linux/scripts/ |
| H A D | Makefile.headersinst | 27 all-subdirs := $(sort $(src-subdirs) $(gen-subdirs)) 42 all-subdirs := $(addprefix $(dst)/, $(all-subdirs)) 45 all-headers := $(src-headers) $(gen-headers) 48 old-subdirs := $(wildcard $(all-subdirs)) 50 unwanted := $(filter-out $(all-headers), $(old-headers)) 54 wanted-dirs := $(sort $(dir $(all-headers))) 71 __headers: $(all-headers) 77 existing-headers := $(filter $(old-headers), $(all-headers))
|
| /linux/rust/syn/ |
| H A D | lib.rs | 343 all(feature = "parsing", feature = "full"), 344 all(feature = "printing", any(feature = "full", feature = "derive")), 399 #[cfg(all(any(feature = "full", feature = "derive"), feature = "printing"))] 414 #[cfg(all(any(feature = "full", feature = "derive"), feature = "printing"))] 417 doc(cfg(all(any(feature = "full", feature = "derive"), feature = "printing"))) 459 #[cfg(all(feature = "parsing", any(feature = "full", feature = "derive")))] 462 doc(cfg(all(feature = "parsing", any(feature = "full", feature = "derive")))) 476 #[cfg(all(feature = "parsing", feature = "proc-macro"))] 479 #[cfg(all(feature = "parsing", feature = "printing"))] 500 #[cfg(all( [all …]
|
| /linux/arch/arm64/boot/dts/ti/ |
| H A D | k3-am625-sk-common.dtsi | 28 bootph-all; 40 bootph-all; 52 bootph-all; 65 bootph-all; 81 bootph-all; 98 bootph-all; 114 bootph-all; 132 bootph-all; 152 bootph-all; 159 bootph-all; [all …]
|
| H A D | k3-am62l3-evm.dts | 31 bootph-all; 85 bootph-all; 109 bootph-all; 125 bootph-all; 172 bootph-all; 192 bootph-all; 228 bootph-all; 236 bootph-all; 244 bootph-all; 267 bootph-all; [all …]
|
| H A D | k3-am68-phycore-som.dtsi | 30 bootph-all; 134 bootph-all; 152 bootph-all; 210 bootph-all; 217 bootph-all; 236 bootph-all; 288 bootph-all; 297 bootph-all; 306 bootph-all; 315 bootph-all; [all …]
|
| H A D | k3-am642-evm-nand.dtso | 16 bootph-all; 54 bootph-all; 63 bootph-all; 112 bootph-all; 117 bootph-all; 122 bootph-all; 127 bootph-all; 132 bootph-all; 137 bootph-all; 142 bootph-all;
|
| H A D | k3-am67a-beagley-ai.dts | 73 bootph-all; 96 bootph-all; 111 bootph-all; 157 bootph-all; 165 bootph-all; 172 bootph-all; 185 bootph-all; 258 bootph-all; 265 bootph-all; 277 bootph-all; [all …]
|
| H A D | k3-am642-evm.dts | 39 bootph-all; 71 bootph-all; 93 bootph-all; 105 bootph-all; 127 bootph-all; 277 bootph-all; 296 bootph-all; 304 bootph-all; 312 bootph-all; 320 bootph-all; [all …]
|
| H A D | k3-am64-phycore-som.dtsi | 30 bootph-all; 88 bootph-all; 107 bootph-all; 127 bootph-all; 144 bootph-all; 163 bootph-all; 174 bootph-all; 183 bootph-all; 191 bootph-all; 258 bootph-all; [all …]
|
| H A D | k3-am642-sk.dts | 69 bootph-all; 80 bootph-all; 92 bootph-all; 199 bootph-all; 214 bootph-all; 234 bootph-all; 241 bootph-all; 249 bootph-all; 348 bootph-all; 363 bootph-all; [all …]
|
| /linux/tools/testing/selftests/net/ |
| H A D | udpgro.sh | 44 local -r all="$@" 45 local -r tx_args=${all%rx*} 46 local -r rx_args=${all#*rx} 73 local -r all="$@" 74 local -r tx_args=${all%rx*} 75 local -r rx_args=${all#*rx} 113 local -r all="$@" 114 local -r tx_args=${all%rx*} 115 local -r rx_args=${all#*rx}
|
| /linux/Documentation/admin-guide/cgroup-v1/ |
| H A D | devices.rst | 11 'type' is a (all), c (char), or b (block). 'all' means it applies 12 to all types and all major and minor numbers. Major and minor are 13 either an integer or * for all. Access is a composition of r 16 The root device cgroup starts with rwm to 'all'. A child device 62 a cgroup's devices.deny file, all its children will have that entry removed 63 from their whitelist and all the locally set whitelist entries will be 85 A all "b 8:* rwm", "c 116:* rw" 86 B "c 1:3 rwm", "b 3:* rwm" all the rest 98 A "c 1:3 rwm", "c 1:5 r" all the rest 99 B "c 1:3 rwm", "c 1:5 r" all the rest [all …]
|
| /linux/tools/testing/selftests/net/forwarding/ |
| H A D | tc_vlan_modify.sh | 113 tc filter add dev $swp1 ingress protocol all pref 1 handle 1 \ 115 tc filter add dev $swp2 ingress protocol all pref 1 handle 1 \ 126 tc filter del dev $swp2 ingress protocol all pref 1 handle 1 flower 127 tc filter del dev $swp1 ingress protocol all pref 1 handle 1 flower 140 tc filter add dev $swp1 egress protocol all pref 1 handle 1 \ 142 tc filter add dev $swp2 egress protocol all pref 1 handle 1 \ 153 tc filter del dev $swp2 egress protocol all pref 1 handle 1 flower 154 tc filter del dev $swp1 egress protocol all pref 1 handle 1 flower
|
| /linux/arch/x86/boot/compressed/ |
| H A D | Makefile | 125 targets += $(patsubst $(obj)/%,%,$(vmlinux-objs-y)) vmlinux.bin.all vmlinux.relocs 134 vmlinux.bin.all-y := $(obj)/vmlinux.bin 135 vmlinux.bin.all-$(CONFIG_X86_NEED_RELOCS) += $(obj)/vmlinux.relocs 137 $(obj)/vmlinux.bin.gz: $(vmlinux.bin.all-y) FORCE 139 $(obj)/vmlinux.bin.bz2: $(vmlinux.bin.all-y) FORCE 141 $(obj)/vmlinux.bin.lzma: $(vmlinux.bin.all-y) FORCE 143 $(obj)/vmlinux.bin.xz: $(vmlinux.bin.all-y) FORCE 145 $(obj)/vmlinux.bin.lzo: $(vmlinux.bin.all-y) FORCE 147 $(obj)/vmlinux.bin.lz4: $(vmlinux.bin.all-y) FORCE 149 $(obj)/vmlinux.bin.zst: $(vmlinux.bin.all-y) FORCE
|
| /linux/Documentation/networking/ |
| H A D | ipv6.rst | 22 Specifies whether to load the IPv6 module, but disable all 45 on all interfaces. This might be used when one does not wish 52 IPv6 address autoconfiguration is disabled on all interfaces. 58 IPv6 address autoconfiguration is enabled on all interfaces. 64 Specifies whether to disable IPv6 on all interfaces. 70 IPv6 is enabled on all interfaces. 75 IPv6 is disabled on all interfaces.
|
| /linux/samples/bpf/ |
| H A D | tc_l2_redirect.sh | 10 RP_FILTER=$(< /proc/sys/net/ipv4/conf/all/rp_filter) 11 IPV6_DISABLED=$(< /proc/sys/net/ipv6/conf/all/disable_ipv6) 12 IPV6_FORWARDING=$(< /proc/sys/net/ipv6/conf/all/forwarding) 49 $IP netns exec ns2 sysctl -q -w net.ipv4.conf.all.rp_filter=0 54 $IP netns exec ns2 sysctl -q -w net.ipv4.conf.all.rp_filter=0 66 sysctl -q -w net.ipv4.conf.all.rp_filter=0 67 sysctl -q -w net.ipv6.conf.all.forwarding=1 68 sysctl -q -w net.ipv6.conf.all.disable_ipv6=0 80 sysctl -q -w net.ipv4.conf.all.rp_filter=$RP_FILTER 81 sysctl -q -w net.ipv6.conf.all.forwarding=$IPV6_FORWARDING [all …]
|
| /linux/tools/testing/kunit/test_data/ |
| H A D | test_skip_all_tests.log | 5 ok 1 - string_stream_test_empty_on_creation # SKIP all tests skipped 6 ok 2 - string_stream_test_not_empty_after_add # SKIP all tests skipped 7 ok 3 - string_stream_test_get_string # SKIP all tests skipped 12 ok 1 - example_simple_test # SKIP all tests skipped
|
| /linux/Documentation/hwmon/ |
| H A D | ibmpowernv.rst | 43 tempX_enable Enable/disable all temperature sensors belonging to the 46 disable/enable all of its temperature sensors. 56 inX_enable Enable/disable all voltage sensors belonging to the 59 disable/enable all of its voltage sensors. 67 powerX_enable Enable/disable all power sensors belonging to the 70 disable/enable all of its power sensors. 78 currX_enable Enable/disable all current sensors belonging to the 81 disable/enable all of its current sensors.
|
| /linux/tools/perf/Documentation/ |
| H A D | perf-help.txt | 10 'perf help' [-a|--all] [COMMAND] 19 If the option '--all' or '-a' is given, then all available commands are 32 --all:: 33 Prints all the available commands on the standard output. This
|