Home
last modified time | relevance | path

Searched refs:fo (Results 1 – 14 of 14) sorted by relevance

/linux-6.15/net/ipv6/netfilter/
H A Dnf_reject_ipv6.c19 __be16 fo; in nf_reject_v6_csum_ok() local
30 thoff = ipv6_skip_exthdr(skb, ((u8*)(ip6h+1) - skb->data), &proto, &fo); in nf_reject_v6_csum_ok()
31 if (thoff < 0 || thoff >= skb->len || (fo & htons(~0x7)) != 0) in nf_reject_v6_csum_ok()
373 __be16 fo; in reject6_csum_ok() local
380 thoff = ipv6_skip_exthdr(skb, ((u8 *)(ip6h + 1) - skb->data), &proto, &fo); in reject6_csum_ok()
382 if (thoff < 0 || thoff >= skb->len || (fo & htons(~0x7)) != 0) in reject6_csum_ok()
/linux-6.15/include/target/
H A Dtarget_core_fabric.h132 int target_register_template(const struct target_core_fabric_ops *fo);
133 void target_unregister_template(const struct target_core_fabric_ops *fo);
/linux-6.15/fs/ntfs3/
H A Dfsntfs.c135 u16 fo = le16_to_cpu(rhdr->fix_off); in ntfs_fix_pre_write() local
138 if ((fo & 1) || fo + fn * sizeof(short) > SECTOR_SIZE || !fn-- || in ntfs_fix_pre_write()
144 fixup = Add2Ptr(rhdr, fo); in ntfs_fix_pre_write()
173 u16 sample, fo, fn; in ntfs_fix_post_read() local
175 fo = le16_to_cpu(rhdr->fix_off); in ntfs_fix_post_read()
180 if ((fo & 1) || fo + fn * sizeof(short) > SECTOR_SIZE || !fn-- || in ntfs_fix_post_read()
186 fixup = Add2Ptr(rhdr, fo); in ntfs_fix_post_read()
1399 u16 fo = le16_to_cpu(rhdr->fix_off); in ntfs_write_bh() local
1405 if ((fo & 1) || fo + fn * sizeof(short) > SECTOR_SIZE || !fn-- || in ntfs_write_bh()
1431 fixup = Add2Ptr(bh_data, fo); in ntfs_write_bh()
[all …]
H A Dindex.c638 u16 fo = le16_to_cpu(rhdr->fix_off); in index_buf_check() local
643 fo < sizeof(struct INDEX_BUFFER) in index_buf_check()
645 || (vbn && *vbn != le64_to_cpu(ib->vbn)) || (fo % sizeof(short)) || in index_buf_check()
646 fo + fn * sizeof(short) >= bytes || in index_buf_check()
H A Dfslog.c2642 u16 fo; in check_index_buffer() local
2648 fo = (SECTOR_SIZE - ((bytes >> SECTOR_SHIFT) + 1) * sizeof(short)); in check_index_buffer()
2650 if (le16_to_cpu(r->fix_off) > fo) in check_index_buffer()
2788 u16 fo = le16_to_cpu(rec->rhdr.fix_off); in check_file_record() local
2795 fo > (SECTOR_SIZE - ((rs >> SECTOR_SHIFT) + 1) * sizeof(short)) || in check_file_record()
/linux-6.15/tools/testing/selftests/bpf/prog_tests/
H A Dselect_reuseport.c196 int fo; in enable_fastopen() local
198 fo = read_int_sysctl(TCP_FO_SYSCTL); in enable_fastopen()
199 if (fo < 0) in enable_fastopen()
202 return write_int_sysctl(TCP_FO_SYSCTL, fo | 7); in enable_fastopen()
/linux-6.15/fs/xfs/libxfs/
H A Dxfs_dir2_leaf.c1743 xfs_fileoff_t fo; /* freespace file offset */ in xfs_dir2_node_to_leaf() local
1769 if ((error = xfs_bmap_last_offset(dp, &fo, XFS_DATA_FORK))) { in xfs_dir2_node_to_leaf()
1772 fo -= args->geo->fsbcount; in xfs_dir2_node_to_leaf()
1779 while (fo > args->geo->freeblk) { in xfs_dir2_node_to_leaf()
1780 if ((error = xfs_dir2_node_trim_free(args, fo, &rval))) { in xfs_dir2_node_to_leaf()
1784 fo -= args->geo->fsbcount; in xfs_dir2_node_to_leaf()
1791 if ((error = xfs_bmap_last_before(tp, dp, &fo, XFS_DATA_FORK))) { in xfs_dir2_node_to_leaf()
1797 if (XFS_FSB_TO_B(mp, fo) > XFS_DIR2_LEAF_OFFSET + args->geo->blksize) in xfs_dir2_node_to_leaf()
H A Dxfs_dir2_node.c1818 xfs_fileoff_t fo; in xfs_dir2_node_find_freeblk() local
1854 error = xfs_bmap_last_offset(dp, &fo, XFS_DATA_FORK); in xfs_dir2_node_find_freeblk()
1857 lastfbno = xfs_dir2_da_to_db(args->geo, (xfs_dablk_t)fo); in xfs_dir2_node_find_freeblk()
2291 xfs_fileoff_t fo, /* free block number */ in xfs_dir2_node_trim_free() argument
2309 error = xfs_dir2_free_try_read(tp, dp, args->owner, fo, &bp); in xfs_dir2_node_trim_free()
2332 xfs_dir2_da_to_db(args->geo, (xfs_dablk_t)fo), bp); in xfs_dir2_node_trim_free()
H A Dxfs_dir2_priv.h156 extern int xfs_dir2_node_trim_free(struct xfs_da_args *args, xfs_fileoff_t fo,
/linux-6.15/net/ipv4/
H A Dtcp_output.c3981 struct tcp_fastopen_request *fo = tp->fastopen_req; in tcp_send_syn_data() local
4001 space = min_t(size_t, space, fo->size); in tcp_send_syn_data()
4017 space, &fo->data->msg_iter); in tcp_send_syn_data()
4028 skb_zcopy_set(syn_data, fo->uarg, NULL); in tcp_send_syn_data()
4031 if (space == fo->size) in tcp_send_syn_data()
4032 fo->data = NULL; in tcp_send_syn_data()
4033 fo->copied = space; in tcp_send_syn_data()
4051 tp->syn_data = (fo->copied > 0); in tcp_send_syn_data()
4063 if (fo->cookie.len > 0) in tcp_send_syn_data()
4064 fo->cookie.len = 0; in tcp_send_syn_data()
[all …]
/linux-6.15/drivers/target/
H A Dtarget_core_configfs.c468 int target_register_template(const struct target_core_fabric_ops *fo) in target_register_template() argument
474 ret = target_fabric_tf_ops_check(fo); in target_register_template()
489 memcpy(tfo, fo, sizeof(*tfo)); in target_register_template()
505 void target_unregister_template(const struct target_core_fabric_ops *fo) in target_unregister_template() argument
511 if (!strcmp(t->tf_ops->fabric_name, fo->fabric_name)) { in target_unregister_template()
/linux-6.15/arch/s390/kvm/
H A Dgaccess.c82 unsigned long fo : 1; /* Fetch-Only Bit */ member
307 if (ale.fo == 1 && mode == GACC_STORE) in ar_translation()
/linux-6.15/drivers/md/
H A Draid10.c3840 int nc, fc, fo; in setup_geo() local
3868 fo = layout & (1<<16); in setup_geo()
3872 geo->far_offset = fo; in setup_geo()
4046 int fc, fo; in raid10_run() local
4049 fo = mddev->layout & (1<<16); in raid10_run()
4050 if (fc > 1 || fo > 0) { in raid10_run()
/linux-6.15/fs/erofs/
H A Dzdata.c110 static bool erofs_folio_is_managed(struct erofs_sb_info *sbi, struct folio *fo) in erofs_folio_is_managed() argument
112 return fo->mapping == MNGD_MAPPING(sbi); in erofs_folio_is_managed()