| /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() 228 if (!f_p) if (forward > sbi->sb_max_fwd_alloc) forward = sbi->sb_max_fwd_alloc; in hpfs_alloc_sector() [all …]
|
| /linux/fs/ |
| H A D | mnt_idmapping.c | 222 struct uid_gid_extent *forward, *reverse; in copy_mnt_idmap() local 249 forward = kmemdup_array(map_from->forward, nr_extents, in copy_mnt_idmap() 252 if (!forward) in copy_mnt_idmap() 259 kfree(forward); in copy_mnt_idmap() 268 map_to->forward = forward; in copy_mnt_idmap() 277 kfree(idmap->uid_map.forward); in free_mnt_idmap() 281 kfree(idmap->gid_map.forward); in free_mnt_idmap() 366 extent = &map->forward[idx]; in statmount_mnt_idmap()
|
| /linux/net/ipv4/netfilter/ |
| H A D | iptable_filter.c | 34 static bool forward __read_mostly = true; 35 module_param(forward, bool, 0000); 47 forward ? -NF_ACCEPT - 1 : NF_DROP - 1; in iptable_filter_table_init() 56 if (!forward) in iptable_filter_net_init()
|
| /linux/net/ipv6/netfilter/ |
| H A D | ip6table_filter.c | 33 static bool forward = true; variable 34 module_param(forward, bool, 0000); 46 forward ? -NF_ACCEPT - 1 : NF_DROP - 1; in ip6table_filter_table_init() 55 if (!forward) in ip6table_filter_net_init()
|
| /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_objs(struct uid_gid_extent, in insert_extent() 799 if (!forward) in insert_extent() 805 memcpy(forward, map->extent, in insert_extent() [all …]
|
| /linux/tools/testing/selftests/net/netfilter/ |
| H A D | br_netfilter_queue.sh | 62 chain forward { 63 type filter hook forward priority 0; policy accept;
|
| H A D | nft_queue.sh | 106 chain forward { 107 type filter hook forward priority $prio; policy accept; 138 chain forward { 139 type filter hook forward priority $prio; policy accept; 183 chain forward { 184 type filter hook forward priority 0; policy accept; 289 wait_and_check_retval "$rpid" "tcp and nfqueue in forward chain" "$tthen" 454 chain forward { 455 type filter hook forward priority 0; policy accept; 476 wait_and_check_retval "$rpid" "sctp and nfqueue in forward chai [all...] |
| H A D | nft_synproxy.sh | 69 chain forward { 70 type filter hook forward priority 0; policy accept;
|
| H A D | conntrack_clash.sh | 48 chain forward { 49 type filter hook forward priority 0
|
| H A D | br_netfilter.sh | 115 # enable conntrack in ns0 and drop broadcast packets in forward to 128 chain forward { 129 type filter hook forward priority 0; policy accept
|
| H A D | conntrack_icmp_related.sh | 118 chain forward { 119 type filter hook forward priority 0; policy accept;
|
| H A D | nft_fib.sh | 70 chain forward { 71 type filter hook forward priority raw; 111 chain forward { 112 type filter hook forward priority 0;
|
| /linux/drivers/scsi/ |
| H A D | script_asm.pl | 257 $forward{$symbol} = "line $lineno : $_"; 391 delete $forward{$1}; # an array of longs 409 delete $forward{$id}; 431 delete $forward{$external}; 781 @undefined = keys %forward; 785 print STDERR "$undef in $forward{$undef}\n";
|
| /linux/arch/s390/include/asm/ |
| H A D | tpi.h | 27 u32 forward:1; member
|
| /linux/tools/perf/Documentation/ |
| H A D | db-export.txt | 20 backward and forward compatibility, by following some simple rules: 33 4. The export scripts themselves maintain forward compatibility (i.e. an existing
|
| /linux/Documentation/trace/ |
| H A D | ring-buffer-design.rst | 527 flag set. This action atomically moves the head page forward:: 593 The way the head page moves forward: 596 and more writes take place, the head page must be moved forward before the 643 After the head page has been moved, the tail page may now move forward:: 683 If the tail page were to simply push the head page forward, the commit when 703 In the pushing forward of the tail page we must first push forward 715 page. If this fails, a nested write pushed it forward, the current write 730 Nested write comes in and moves the tail page forward:: 742 been moved forward, the writer will just try again to reserve storage 843 The nested writer moves the tail page forward. But does not set the old [all …]
|
| /linux/Documentation/userspace-api/media/dvb/ |
| H A D | dvb-frontend-parameters.rst | 65 fe_code_rate_t fec_inner; /* forward error correction (see above) */ 81 fe_code_rate_t fec_inner; /* forward error correction (see above) */
|
| H A D | frontend-stat-properties.rst | 96 Measures the number of bit errors before the forward error correction 153 Measures the number of bit errors after the forward error correction 210 Measures the number of block errors after the outer forward error
|
| /linux/Documentation/ |
| H A D | atomic_t.txt | 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/Documentation/networking/ |
| H A D | nf_flowtable.rst | 58 __\/___ | | forward |------------ | 85 flowtable and add one rule to your forward chain:: 92 type filter hook forward priority 0; policy accept; 105 The 'flow offload' action from the forward chain 'y' adds an entry to the
|
| /linux/Documentation/hid/ |
| H A D | uhid.rst | 68 UHID_GET_REPORT and UHID_SET_REPORT events and requires you to forward them to 69 the device on the control channel. Once the device responds, you must forward 167 device on the interrupt channel. You should read the payload and forward it to 178 Once you read a GET_REPORT request, you shall forward it to the HID device and
|
| /linux/Documentation/userspace-api/ |
| H A D | tee.rst | 37 clients, forward them to the TEE and send back the results. In the case of
|
| /linux/drivers/gpu/drm/i915/ |
| H A D | Kconfig.profile | 21 make forward progress. This value specifies the timeout used for an 128 alternate execution of each batch to ensure forward progress of
|
| /linux/Documentation/driver-api/pldmfw/ |
| H A D | driver-ops.rst | 34 The ``.send_component_table`` operation is used to forward component
|
| /linux/Documentation/process/ |
| H A D | conclave.rst | 14 do that work going forward (including facilitating a transition), the
|