Home
last modified time | relevance | path

Searched refs:forward (Results 1 – 25 of 144) sorted by relevance

123456

/linux/fs/hpfs/
H A Dalloc.c115 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/net/ax25/
H A Dax25_dev.c66 ax25_dev->forward = NULL; in ax25_dev_device_up()
116 if (s->forward == dev) in ax25_dev_device_down()
117 s->forward = NULL; in ax25_dev_device_down()
146 if (ax25_dev->forward) { in ax25_fwd_ioctl()
151 ax25_dev->forward = fwd_dev->dev; in ax25_fwd_ioctl()
157 if (!ax25_dev->forward) { in ax25_fwd_ioctl()
161 ax25_dev->forward = NULL; in ax25_fwd_ioctl()
180 if (ax25_dev->forward == NULL) in ax25_fwd_dev()
183 return ax25_dev->forward; in ax25_fwd_dev()
/linux/fs/
H A Dmnt_idmapping.c222 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/kernel/
H A Duser_namespace.c207 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/net/ipv6/netfilter/
H A Dip6table_filter.c33 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/net/ipv4/netfilter/
H A Diptable_filter.c34 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/drivers/scsi/
H A Dscript_asm.pl257 $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/tools/testing/selftests/net/netfilter/
H A Dbr_netfilter_queue.sh62 chain forward {
63 type filter hook forward priority 0; policy accept;
H A Dnft_queue.sh104 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;
447 chain forward {
448 type filter hook forward priority 0; policy accept;
H A Dnft_synproxy.sh69 chain forward {
70 type filter hook forward priority 0; policy accept;
H A Dconntrack_clash.sh48 chain forward {
49 type filter hook forward priority 0
H A Dbr_netfilter.sh115 # enable conntrack in ns0 and drop broadcast packets in forward to
128 chain forward {
129 type filter hook forward priority 0; policy accept
/linux/drivers/media/usb/uvc/
H A Duvc_driver.c1514 struct uvc_entity *forward; in uvc_scan_chain_forward() local
1518 forward = NULL; in uvc_scan_chain_forward()
1522 forward = uvc_entity_by_reference(chain->dev, entity->id, in uvc_scan_chain_forward()
1523 forward); in uvc_scan_chain_forward()
1524 if (forward == NULL) in uvc_scan_chain_forward()
1526 if (forward == prev) in uvc_scan_chain_forward()
1528 if (forward->chain.next || forward->chain.prev) { in uvc_scan_chain_forward()
1531 forward->id); in uvc_scan_chain_forward()
1535 switch (UVC_ENTITY_TYPE(forward)) { in uvc_scan_chain_forward()
1537 if (forward->bNrInPins != 1) { in uvc_scan_chain_forward()
[all …]
/linux/drivers/net/ethernet/netronome/nfp/bpf/
H A Dverifier.c23 unsigned int forward, backward, i; in nfp_bpf_goto_meta() local
26 forward = insn_idx - meta->n; in nfp_bpf_goto_meta()
28 if (min(forward, backward) > nfp_prog->n_insns - insn_idx - 1) { in nfp_bpf_goto_meta()
32 if (min(forward, backward) > insn_idx && backward > insn_idx) { in nfp_bpf_goto_meta()
33 forward = insn_idx; in nfp_bpf_goto_meta()
37 if (forward < backward) in nfp_bpf_goto_meta()
38 for (i = 0; i < forward; i++) in nfp_bpf_goto_meta()
/linux/net/bridge/
H A Dbr_input.c388 goto forward; in br_handle_frame()
400 goto forward; in br_handle_frame()
409 goto forward; in br_handle_frame()
431 forward: in br_handle_frame()
H A Dbr_mrp.c1123 goto forward; in br_mrp_rcv()
1158 goto forward; in br_mrp_rcv()
1195 goto forward; in br_mrp_rcv()
1203 goto forward; in br_mrp_rcv()
1221 goto forward; in br_mrp_rcv()
1229 forward: in br_mrp_rcv()
H A DKconfig44 forward multicast traffic based on IGMP/MLD traffic received from
58 receive and forward traffic based on VLAN information in the packet
/linux/net/batman-adv/
H A Dbat_v_ogm.c700 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()
787 bool forward; in batadv_v_ogm_process_per_outif() local
806 forward = batadv_v_ogm_route_update(bat_priv, ethhdr, ogm2, orig_node, in batadv_v_ogm_process_per_outif()
811 if (forward) in batadv_v_ogm_process_per_outif()
/linux/tools/perf/Documentation/
H A Ddb-export.txt20 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 Dring-buffer-design.rst527 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/
H A Datomic_t.txt320 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/arch/s390/include/asm/
H A Dtpi.h27 u32 forward:1; member
/linux/Documentation/userspace-api/media/dvb/
H A Ddvb-frontend-parameters.rst65 fe_code_rate_t fec_inner; /* forward error correction (see above) */
81 fe_code_rate_t fec_inner; /* forward error correction (see above) */
/linux/Documentation/networking/
H A Dnf_flowtable.rst58 __\/___ | | 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/fs/xfs/libxfs/
H A Dxfs_da_btree.c1319 int forward; in xfs_da3_node_toosmall() local
1345 * to merge with the forward block unless it is NULL. in xfs_da3_node_toosmall()
1352 forward = (info->forw != 0); in xfs_da3_node_toosmall()
1354 error = xfs_da3_path_shift(state, &state->altpath, forward, in xfs_da3_node_toosmall()
1369 * whether to merge with the forward or the backward block. in xfs_da3_node_toosmall()
1378 forward = nodehdr.forw < nodehdr.back; in xfs_da3_node_toosmall()
1379 for (i = 0; i < 2; forward = !forward, i++) { in xfs_da3_node_toosmall()
1381 if (forward) in xfs_da3_node_toosmall()
1417 error = xfs_da3_path_shift(state, &state->altpath, forward, in xfs_da3_node_toosmall()
2101 xfs_da3_path_shift(struct xfs_da_state * state,struct xfs_da_state_path * path,int forward,int release,int * result) xfs_da3_path_shift() argument
[all...]

123456