Home
last modified time | relevance | path

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

1234567

/linux/fs/hpfs/
A Dalloc.c134 if (!tstbits(bmp, nr, n + forward)) { in alloc_in_bmp()
139 while ((a = tstbits(bmp, q, n + forward)) != 0) { in alloc_in_bmp()
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()
235 if (!forward) { in hpfs_alloc_sector()
251 if (forward) { in hpfs_alloc_sector()
252 sbi->sb_max_fwd_alloc = forward * 3 / 4; in hpfs_alloc_sector()
253 forward /= 2; in hpfs_alloc_sector()
[all …]
/linux/net/ax25/
A Dax25_dev.c62 ax25_dev->forward = NULL; in ax25_dev_device_up()
110 if (s->forward == dev) in ax25_dev_device_down()
111 s->forward = NULL; in ax25_dev_device_down()
149 if (ax25_dev->forward != NULL) in ax25_fwd_ioctl()
151 ax25_dev->forward = fwd_dev->dev; in ax25_fwd_ioctl()
155 if (ax25_dev->forward == NULL) in ax25_fwd_ioctl()
157 ax25_dev->forward = NULL; in ax25_fwd_ioctl()
174 if (ax25_dev->forward == NULL) in ax25_fwd_dev()
177 return ax25_dev->forward; in ax25_fwd_dev()
/linux/kernel/
A Duser_namespace.c188 kfree(ns->gid_map.forward); in free_user_ns()
192 kfree(ns->uid_map.forward); in free_user_ns()
196 kfree(ns->projid_map.forward); in free_user_ns()
658 return &map->forward[pos]; in m_start()
769 if (!forward) in insert_extent()
775 memcpy(forward, map->extent, in insert_extent()
778 map->forward = forward; in insert_extent()
1041 e = &new_map.forward[idx]; in map_write()
1069 map->forward = new_map.forward; in map_write()
1079 kfree(new_map.forward); in map_write()
[all …]
/linux/net/ipv4/netfilter/
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/net/ipv6/netfilter/
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/tools/testing/selftests/netfilter/
A Dnft_queue.sh108 chain forward {
109 type filter hook forward priority $prio; policy accept;
139 chain forward {
140 type filter hook forward priority $prio; policy accept;
188 chain forward {
189 type filter hook forward priority 0; policy accept;
/linux/drivers/scsi/
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/drivers/media/usb/uvc/
A Duvc_driver.c1688 struct uvc_entity *forward; in uvc_scan_chain_forward() local
1692 forward = NULL; in uvc_scan_chain_forward()
1697 forward); in uvc_scan_chain_forward()
1698 if (forward == NULL) in uvc_scan_chain_forward()
1700 if (forward == prev) in uvc_scan_chain_forward()
1702 if (forward->chain.next || forward->chain.prev) { in uvc_scan_chain_forward()
1705 forward->id); in uvc_scan_chain_forward()
1714 forward->id); in uvc_scan_chain_forward()
1736 forward->id); in uvc_scan_chain_forward()
1758 forward->id); in uvc_scan_chain_forward()
[all …]
/linux/net/bridge/
A Dbr_input.c323 goto forward; in br_handle_frame()
334 goto forward; in br_handle_frame()
343 goto forward; in br_handle_frame()
363 forward: in br_handle_frame()
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()
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/drivers/net/ethernet/netronome/nfp/bpf/
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/batman-adv/
A Dbat_v_ogm.c703 bool forward = false; in batadv_v_ogm_route_update() local
725 forward = true; in batadv_v_ogm_route_update()
767 return forward; in batadv_v_ogm_route_update()
790 bool forward; in batadv_v_ogm_process_per_outif() local
809 forward = batadv_v_ogm_route_update(bat_priv, ethhdr, ogm2, orig_node, in batadv_v_ogm_process_per_outif()
814 if (forward) in batadv_v_ogm_process_per_outif()
/linux/tools/perf/Documentation/
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/
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/
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 architecure '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/userspace-api/media/dvb/
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/
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/drivers/staging/media/av7110/
A Dvideo_function_calls.rst30 video-fast-forward
A Daudio-set-bypass-mode.rst52 forward the stream without decoding. This mode shall be used if streams
/linux/fs/xfs/libxfs/
A Dxfs_da_btree.c1248 int forward; in xfs_da3_node_toosmall() local
1281 forward = (info->forw != 0); in xfs_da3_node_toosmall()
1283 error = xfs_da3_path_shift(state, &state->altpath, forward, in xfs_da3_node_toosmall()
1307 forward = nodehdr.forw < nodehdr.back; in xfs_da3_node_toosmall()
1308 for (i = 0; i < 2; forward = !forward, i++) { in xfs_da3_node_toosmall()
1310 if (forward) in xfs_da3_node_toosmall()
1342 error = xfs_da3_path_shift(state, &state->path, forward, in xfs_da3_node_toosmall()
1965 int forward, in xfs_da3_path_shift() argument
1997 if (forward && (blk->index < nodehdr.count - 1)) { in xfs_da3_path_shift()
2001 } else if (!forward && (blk->index > 0)) { in xfs_da3_path_shift()
[all …]
A Dxfs_dir2_node.c1494 int forward; /* sibling block direction */ in xfs_dir2_leafn_toosmall() local
1533 forward = (leafhdr.forw != 0); in xfs_dir2_leafn_toosmall()
1535 error = xfs_da3_path_shift(state, &state->altpath, forward, 0, in xfs_dir2_leafn_toosmall()
1549 forward = leafhdr.forw < leafhdr.back; in xfs_dir2_leafn_toosmall()
1550 for (i = 0, bp = NULL; i < 2; forward = !forward, i++) { in xfs_dir2_leafn_toosmall()
1553 blkno = forward ? leafhdr.forw : leafhdr.back; in xfs_dir2_leafn_toosmall()
1597 error = xfs_da3_path_shift(state, &state->altpath, forward, 0, in xfs_dir2_leafn_toosmall()
1600 error = xfs_da3_path_shift(state, &state->path, forward, 0, in xfs_dir2_leafn_toosmall()
/linux/Documentation/devicetree/bindings/iio/
A Dst,st-sensors.yaml9 description: The STMicroelectronics sensor devices are pretty straight-forward
14 The STMicroelectronics sensor devices are pretty straight-forward I2C or
/linux/Documentation/hid/
A Duhid.rst68 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/devicetree/bindings/iio/gyroscope/
A Dinvensense,mpu3050.yaml34 The MPU-3050 will pass through and forward the I2C signals from the

Completed in 38 milliseconds

1234567