| /linux/include/uapi/linux/dvb/ |
| H A D | frontend.h | 268 * enum fe_code_rate - Type of Forward Error Correction (FEC) 270 * @FEC_NONE: No Forward Error Correction Code 271 * @FEC_1_2: Forward Error Correction Code 1/2 272 * @FEC_2_3: Forward Error Correction Code 2/3 273 * @FEC_3_4: Forward Error Correction Code 3/4 274 * @FEC_4_5: Forward Error Correction Code 4/5 275 * @FEC_5_6: Forward Error Correction Code 5/6 276 * @FEC_6_7: Forward Error Correction Code 6/7 277 * @FEC_7_8: Forward Error Correction Code 7/8 278 * @FEC_8_9: Forward Error Correction Code 8/9 [all …]
|
| /linux/fs/hpfs/ |
| H A D | alloc.c | 115 static secno alloc_in_bmp(struct super_block *s, secno near, unsigned n, unsigned forward) in alloc_in_bmp() argument 134 if (!tstbits(bmp, nr, n + forward)) { in alloc_in_bmp() 139 while ((a = tstbits(bmp, q, n + forward)) != 0) { in alloc_in_bmp() 158 if (n + forward >= 0x3f && le32_to_cpu(bmp[i]) != 0xffffffff) goto cont; in alloc_in_bmp() 167 while ((a = tstbits(bmp, q, n + forward)) != 0) { in alloc_in_bmp() 203 secno hpfs_alloc_sector(struct super_block *s, secno near, unsigned n, int forward) in hpfs_alloc_sector() argument 211 if (forward < 0) { in hpfs_alloc_sector() 212 forward = -forward; in hpfs_alloc_sector() 217 if ((sec = alloc_in_bmp(s, near, n, f_p ? forward : forward/4))) goto ret; in hpfs_alloc_sector() 222 if ((sec = alloc_in_bmp(s, b<<14, n, f_p ? forward : forward/2))) { in hpfs_alloc_sector() [all …]
|
| /linux/net/ipv6/netfilter/ |
| H A D | ip6table_filter.c | 32 /* Default to forward because I got too much mail already. */ 33 static bool forward = true; variable 34 module_param(forward, bool, 0000); 44 /* Entry 1 is the FORWARD hook */ in ip6table_filter_table_init() 46 forward ? -NF_ACCEPT - 1 : NF_DROP - 1; in ip6table_filter_table_init() 55 if (!forward) in ip6table_filter_net_init()
|
| /linux/net/ipv4/netfilter/ |
| H A D | iptable_filter.c | 33 /* Default to forward because I got too much mail already. */ 34 static bool forward __read_mostly = true; 35 module_param(forward, bool, 0000); 45 /* Entry 1 is the FORWARD hook */ in iptable_filter_table_init() 47 forward ? -NF_ACCEPT - 1 : NF_DROP - 1; in iptable_filter_table_init() 56 if (!forward) in iptable_filter_net_init()
|
| /linux/drivers/gpu/drm/imagination/ |
| H A D | pvr_vm.h | 13 /* Forward declaration from "pvr_device.h" */ 17 /* Forward declaration from "pvr_gem.h" */ 20 /* Forward declaration from "pvr_vm.c" */ 23 /* Forward declaration from <uapi/drm/pvr_drm.h> */ 26 /* Forward declaration from <drm/drm_exec.h> */
|
| H A D | pvr_sync.h | 9 /* Forward declaration from <linux/xarray.h>. */ 12 /* Forward declaration from <drm/drm_file.h>. */ 15 /* Forward declaration from <drm/gpu_scheduler.h>. */ 18 /* Forward declaration from "pvr_device.h". */
|
| H A D | pvr_debugfs.h | 7 /* Forward declaration from <drm/drm_drv.h>. */ 11 /* Forward declaration from "pvr_device.h". */ 14 /* Forward declaration from <linux/dcache.h>. */
|
| H A D | pvr_mmu.h | 10 /* Forward declaration from "pvr_device.h" */ 13 /* Forward declaration from "pvr_mmu.c" */ 17 /* Forward declaration from "pvr_vm.c" */ 20 /* Forward declaration from <linux/scatterlist.h> */
|
| H A D | pvr_job.h | 17 /* Forward declaration from "pvr_context.h". */ 20 /* Forward declarations from "pvr_device.h". */ 24 /* Forward declarations from "pvr_hwrt.h". */ 27 /* Forward declaration from "pvr_queue.h". */
|
| H A D | pvr_cccb.h | 15 /* Forward declaration from pvr_device.h. */ 18 /* Forward declaration from pvr_gem.h. */ 21 /* Forward declaration from pvr_hwrt.h. */
|
| H A D | pvr_vm_mips.h | 7 /* Forward declaration from pvr_device.h. */ 10 /* Forward declaration from pvr_gem.h. */
|
| /linux/tools/testing/selftests/net/netfilter/ |
| H A D | bridge_brouter.sh | 75 echo "ERROR: ping did not work, but it should (broute+forward)" 1>&2 88 ip netns exec "$nsbr" ebtables -t filter -A FORWARD -p ipv4 --ip-protocol icmp -j DROP 90 # ping net${ns1}, expected to not work (DROP in bridge forward) 92 echo "ERROR: ping works, should have failed (icmp forward drop)" 1>&2 100 echo "ERROR: ping did not work, but it should (broute+forward 2)" 1>&2 104 echo "PASS: ${ns1}/${ns2} connectivity with active broute rule and bridge forward drop"
|
| H A D | nft_queue.sh | 104 chain forward { 105 type filter hook forward priority $prio; policy accept; 136 chain forward { 137 type filter hook forward priority $prio; policy accept; 181 chain forward { 182 type filter hook forward priority 0; policy accept; 284 wait_and_check_retval "$rpid" "tcp and nfqueue in forward chain" "$tthen" 447 chain forward { 448 type filter hook forward priority 0; policy accept; 469 wait_and_check_retval "$rpid" "sctp and nfqueue in forward chai [all...] |
| /linux/kernel/ |
| H A D | user_namespace.c | 207 kfree(ns->gid_map.forward); in free_user_ns() 211 kfree(ns->uid_map.forward); in free_user_ns() 215 kfree(ns->projid_map.forward); in free_user_ns() 290 return bsearch(&key, map->forward, extents, in map_id_range_down_max() 689 return &map->forward[pos]; in m_start() 764 prev = &new_map->forward[idx]; in mappings_overlap() 794 struct uid_gid_extent *forward; in insert_extent() local 797 forward = kmalloc_array(UID_GID_MAP_MAX_EXTENTS, in insert_extent() 800 if (!forward) in insert_extent() 803 /* Copy over memory. Only set up memory for the forward pointer. in insert_extent() [all …]
|
| /linux/Documentation/devicetree/bindings/media/i2c/ |
| H A D | maxim,max96717.yaml | 16 simultaneously transmit bidirectional control-channel data while forward 20 the MAX96717 can select the MIPI datatype, while the tunnel mode forward all the MIPI 26 forward direction and 187.5Mbps in the reverse direction. 27 MAX96717F only supports a fixed rate of 3Gbps in the forward direction. 90 The MAX96717 will forward the I2C requests from the
|
| H A D | maxim,max96714.yaml | 16 simultaneously transmit bidirectional control-channel data while forward 20 the MAX96714 can select individual video stream, while the tunnel mode forward all 24 forward direction and 187.5Mbps in the reverse direction. 25 MAX96714F only supports a fixed rate of 3Gbps in the forward direction. 91 The MAX96714 will pass through and forward the I2C requests from the
|
| /linux/net/batman-adv/ |
| H A D | multicast.h | 21 * @BATADV_FORW_BCAST: forward the packet to all nodes via a batman-adv 27 * @BATADV_FORW_UCASTS: forward the packet to some nodes via one 33 * @BATADV_FORW_MCAST: forward the packet to some nodes via a 38 /** @BATADV_FORW_NONE: don't forward, drop it */
|
| H A D | bat_v_ogm.c | 489 * due to the store & forward characteristics of WIFI. in batadv_v_forward_penalty() 502 * batadv_v_ogm_forward() - check conditions and forward an OGM to the given 511 * Forward an OGM to an interface after having altered the throughput metric and 530 /* only forward for specific interfaces, not for the default one. */ in batadv_v_ogm_forward() 541 /* strict rule: forward packets coming from the best next hop only */ in batadv_v_ogm_forward() 545 /* don't forward the same seqno twice on one interface */ in batadv_v_ogm_forward() 571 /* apply forward penalty */ in batadv_v_ogm_forward() 700 bool forward = false; in batadv_v_ogm_route_update() local 722 forward = true; in batadv_v_ogm_route_update() 764 return forward; in batadv_v_ogm_route_update() [all …]
|
| /linux/net/bridge/ |
| H A D | Kconfig | 30 bridged ARP traffic in the arptables FORWARD chain. 44 forward multicast traffic based on IGMP/MLD traffic received from 58 receive and forward traffic based on VLAN information in the packet
|
| /linux/Documentation/ |
| H A D | atomic_t.txt | 317 FORWARD PROGRESS 320 In general strong forward progress is expected of all unconditional atomic 322 a fair amount of code also requires forward progress from the conditional 327 while an LL/SC architecture 'can/should/must' provide forward progress 356 However, even the forward branch from the failed compare can cause the LL/SC 361 Even native CAS architectures can fail to provide forward progress for their
|
| /linux/tools/testing/selftests/bpf/prog_tests/ |
| H A D | cls_redirect.c | 119 FORWARD, in prepare_addr() 152 if (test->result == FORWARD) 153 result = "forward"; 168 { TCP, FORWARD, UNKNOWN_CONN, ONE_HOP, ACK }, 171 { UDP, FORWARD, UNKNOWN_CONN, ONE_HOP, NONE }, 366 case FORWARD: in test_cls_redirect_common() 162 FORWARD, global() enumerator
|
| H A D | xdp_flowtable.c | 105 "nft add chain ip filter forward " in test_xdp_flowtable() 106 "{ type filter hook forward priority 0\\; }"); in test_xdp_flowtable() 108 "nft add rule ip filter forward ip protocol udp th dport " in test_xdp_flowtable()
|
| /linux/drivers/net/ethernet/freescale/dpaa2/ |
| H A D | dpsw.h | 548 * v v Forward frame to 550 * - v Forward frame to 553 * v - Forward frame to 555 * - - Forward frame to 560 * v v Forward frame to 562 * - v Forward frame to 564 * v - Forward frame to 566 * - - Forward frame to
|
| /linux/include/asm-generic/ |
| H A D | qspinlock.h | 17 * ensure they all have forward progress. Many atomic operations may default to 18 * cmpxchg() loops which will not have good forward progress properties on 28 * forward progress guarantees mentioned above.
|
| /linux/net/atm/ |
| H A D | lec.h | 80 * Used for storing VCC's (and forward packets from) which are to 81 * age out by not using them to forward packets. 88 * establishes multiple Multicast Forward VCCs to us. This list
|