Searched refs:fl1 (Results 1 - 6 of 6) sorted by relevance

/linux-master/include/linux/lockd/
H A Dlockd.h375 static inline int nlm_compare_locks(const struct file_lock *fl1, argument
378 return file_inode(fl1->c.flc_file) == file_inode(fl2->c.flc_file)
379 && fl1->c.flc_pid == fl2->c.flc_pid
380 && fl1->c.flc_owner == fl2->c.flc_owner
381 && fl1->fl_start == fl2->fl_start
382 && fl1->fl_end == fl2->fl_end
383 &&(fl1->c.flc_type == fl2->c.flc_type || fl2->c.flc_type == F_UNLCK);
/linux-master/net/ipv6/
H A Dip6_flowlabel.c616 struct ip6_flowlabel *fl, *fl1 = NULL; local
654 fl1 = sfl->fl;
655 if (!atomic_inc_not_zero(&fl1->users))
656 fl1 = NULL;
662 if (!fl1)
663 fl1 = fl_lookup(net, freq->flr_label);
664 if (fl1) {
670 if (fl1->share == IPV6_FL_S_EXCL ||
671 fl1->share != fl->share ||
672 ((fl1
[all...]
/linux-master/net/netfilter/
H A Dnf_conntrack_h323_main.c682 struct flowi4 fl1, fl2; local
685 memset(&fl1, 0, sizeof(fl1));
686 fl1.daddr = src->ip;
691 flowi4_to_flowi(&fl1), false)) {
694 if (rt_nexthop(rt1, fl1.daddr) ==
707 struct flowi6 fl1, fl2; local
709 memset(&fl1, 0, sizeof(fl1));
710 fl1
[all...]
/linux-master/net/xfrm/
H A Dxfrm_policy.c3534 const struct flowi *fl, struct flowi *fl1)
3549 if (xfrm_decode_session_reverse(dev_net(skb->dev), newskb, fl1, family) < 0)
3552 fl1->flowi_oif = fl->flowi_oif;
3553 fl1->flowi_mark = fl->flowi_mark;
3554 fl1->flowi_tos = fl->flowi_tos;
3555 nf_nat_decode_session(newskb, fl1, family);
3570 struct flowi fl1; local
3572 if (xfrm_icmp_flow_decode(skb, family, fl, &fl1))
3575 ret = xfrm_selector_match(sel, &fl1, family);
3589 struct flowi fl1; local
3533 xfrm_icmp_flow_decode(struct sk_buff *skb, unsigned short family, const struct flowi *fl, struct flowi *fl1) argument
3608 struct flowi fl1; local
[all...]
/linux-master/fs/
H A Dlocks.c621 static inline int locks_overlap(struct file_lock *fl1, struct file_lock *fl2) argument
623 return ((fl1->fl_end >= fl2->fl_start) &&
624 (fl2->fl_end >= fl1->fl_start));
630 static int posix_same_owner(struct file_lock_core *fl1, struct file_lock_core *fl2) argument
632 return fl1->flc_owner == fl2->flc_owner;
/linux-master/fs/nfs/flexfilelayout/
H A Dflexfilelayout.c278 const struct nfs4_ff_layout_segment *fl1 = FF_LAYOUT_LSEG(l1); local
282 if (fl1->mirror_array_cnt != fl2->mirror_array_cnt)
284 for (i = 0; i < fl1->mirror_array_cnt; i++) {
285 if (fl1->mirror_array[i] != fl2->mirror_array[i])

Completed in 199 milliseconds