Searched refs:existing (Results 1 - 25 of 33) sorted by relevance

12

/linux-master/net/llc/
H A Dllc_if.c89 struct sock *existing; local
95 existing = llc_lookup_established(llc->sap, &daddr, &laddr, sock_net(sk));
96 if (existing) {
97 if (existing->sk_state == TCP_ESTABLISHED) {
98 sk = existing;
101 sock_put(existing);
/linux-master/scripts/
H A DMakefile.vmlinux50 existing-targets := $(wildcard $(sort $(targets)))
52 -include $(foreach f,$(existing-targets),$(dir $(f)).$(notdir $(f)).cmd)
H A DMakefile.headersinst53 existing-dirs := $(sort $(dir $(old-headers)))
55 new-dirs := $(filter-out $(existing-dirs), $(wanted-dirs))
77 existing-headers := $(filter $(old-headers), $(all-headers))
79 -include $(foreach f,$(existing-headers),$(dir $(f)).$(notdir $(f)).cmd)
H A DMakefile.modfinal74 existing-targets := $(wildcard $(sort $(targets)))
76 -include $(foreach f,$(existing-targets),$(dir $(f)).$(notdir $(f)).cmd)
H A DMakefile.modpost151 existing-targets := $(wildcard $(sort $(targets)))
153 -include $(foreach f,$(existing-targets),$(dir $(f)).$(notdir $(f)).cmd)
H A DMakefile.vmlinux_o101 existing-targets := $(wildcard $(sort $(targets)))
103 -include $(foreach f,$(existing-targets),$(dir $(f)).$(notdir $(f)).cmd)
H A DMakefile.build505 existing-targets := $(wildcard $(sort $(targets)))
507 -include $(foreach f,$(existing-targets),$(dir $(f)).$(notdir $(f)).cmd)
512 existing-dirs := $(sort $(patsubst %/,%, $(dir $(existing-targets))))
513 obj-dirs := $(strip $(filter-out $(existing-dirs), $(obj-dirs)))
H A DMakefile.package244 existing-targets := $(wildcard $(sort $(targets)))
246 -include $(foreach f,$(existing-targets),$(dir $(f)).$(notdir $(f)).cmd)
/linux-master/fs/btrfs/
H A Ddelayed-ref.c683 * Return true if the ref was merged into an existing one (and therefore can be
728 /* remove existing tail if its ref_mod is zero */
737 * existing and update must have the same bytenr
740 struct btrfs_delayed_ref_head *existing,
748 BUG_ON(existing->is_data != update->is_data);
750 spin_lock(&existing->lock);
757 if (!existing->owning_root)
758 existing->owning_root = update->owning_root;
764 * with an existing head ref without
768 existing
739 update_existing_head_ref(struct btrfs_trans_handle *trans, struct btrfs_delayed_ref_head *existing, struct btrfs_delayed_ref_head *update) argument
909 struct btrfs_delayed_ref_head *existing; local
[all...]
H A Dextent_map.c384 * existing mappings. The extent_map struct passed in will be inserted
524 * Helper for btrfs_get_extent. Given an existing extent in the tree,
525 * the existing extent is the nearest extent to map_start,
530 struct extent_map *existing,
543 if (existing->start > map_start) {
544 next = existing;
547 prev = existing;
580 * a) Returning the existing extent in @em_in if @start is within the
581 * existing em.
582 * b) Merge the existing exten
529 merge_extent_mapping(struct extent_map_tree *em_tree, struct extent_map *existing, struct extent_map *em, u64 map_start) argument
607 struct extent_map *existing; local
[all...]
/linux-master/include/kunit/
H A Dresource.h198 struct kunit_resource *existing; local
203 existing = kunit_find_named_resource(test, name);
204 if (existing) {
205 kunit_put_resource(existing);
/linux-master/net/ipv4/
H A Dtcp_cong.c148 struct tcp_congestion_ops *existing; local
154 existing = tcp_ca_find_key(old_ca->key);
155 if (ca->key == TCP_CA_UNSPEC || !existing || strcmp(existing->name, ca->name)) {
159 } else if (existing != old_ca) {
167 list_del_rcu(&existing->list);
426 /* No change asking for existing value */
/linux-master/drivers/base/
H A Ddevcoredump.c330 struct device *existing; local
335 existing = class_find_device(&devcd_class, NULL, dev,
337 if (existing) {
338 put_device(existing);
/linux-master/tools/perf/arch/x86/tests/
H A Dhybrid.c276 static int combine_test_results(int existing, int latest) argument
278 if (existing == TEST_FAIL)
280 if (existing == TEST_SKIP)
/linux-master/kernel/bpf/
H A Dcore.c2618 struct bpf_prog_array_item *existing, *new; local
2622 /* Figure out how many existing progs we need to carry over to
2626 existing = old_array->items;
2627 for (; existing->prog; existing++) {
2628 if (existing->prog == exclude_prog) {
2632 if (existing->prog != &dummy_bpf_prog.prog)
2634 if (existing->prog == include_prog)
2661 existing = old_array->items;
2662 for (; existing
[all...]
/linux-master/fs/ocfs2/
H A Dstack_user.c761 static int fs_protocol_compare(struct ocfs2_protocol_version *existing, argument
764 if (existing->pv_major != request->pv_major)
767 if (existing->pv_minor > request->pv_minor)
770 if (existing->pv_minor < request->pv_minor)
771 request->pv_minor = existing->pv_minor;
/linux-master/drivers/soc/qcom/
H A Drpmh.c122 goto existing;
134 existing:
/linux-master/fs/ocfs2/dlm/
H A Ddlmdomain.c140 static int dlm_protocol_compare(struct dlm_protocol_version *existing,
2076 static int dlm_protocol_compare(struct dlm_protocol_version *existing, argument
2079 if (existing->pv_major != request->pv_major)
2082 if (existing->pv_minor > request->pv_minor)
2085 if (existing->pv_minor < request->pv_minor)
2086 request->pv_minor = existing->pv_minor;
H A Ddlmcommon.h1046 static inline int dlm_lock_compatible(int existing, int request) argument
1050 existing == LKM_NLMODE)
1058 if (existing == LKM_PRMODE)
/linux-master/drivers/net/wireless/broadcom/brcm80211/brcmfmac/
H A Dfwsignal.c988 struct brcmf_fws_mac_descriptor *entry, *existing; local
1011 existing = brcmf_fws_macdesc_lookup(fws, addr);
1012 if (IS_ERR(existing)) {
1026 if (entry != existing) {
1027 brcmf_dbg(TRACE, "copy mac %s\n", existing->name);
1029 memcpy(entry, existing,
1032 brcmf_fws_macdesc_deinit(existing);
1038 brcmf_dbg(TRACE, "use existing\n");
/linux-master/net/sched/
H A Dsch_qfq.c407 bool existing = false; local
458 if (cl != NULL) { /* modify existing class */
468 existing = true;
513 if (existing)
/linux-master/include/trace/events/
H A Dbtrfs.h333 const struct extent_map *existing, const struct extent_map *map,
336 TP_ARGS(fs_info, existing, map, start, len),
348 __entry->e_start = existing->start;
349 __entry->e_len = existing->len;
357 "existing(start=%llu len=%llu) "
/linux-master/fs/configfs/
H A Ddir.c230 const unsigned char *existing = configfs_get_name(sd); local
231 if (strcmp(existing, new))
/linux-master/tools/perf/tests/
H A Dparse-events.c2548 static int combine_test_results(int existing, int latest) argument
2550 if (existing == TEST_FAIL)
2552 if (existing == TEST_SKIP)
2715 * prefix or suffix collides with an existing legacy token. For
/linux-master/kernel/module/
H A Dmain.c3096 struct idempotent *existing; local
3105 hlist_for_each_entry(existing, head, entry) {
3106 if (existing->cookie != cookie)

Completed in 304 milliseconds

12