Searched refs:orig (Results 1 - 25 of 314) sorted by last modified time

1234567891011>>

/linux-master/arch/x86/xen/
H A Denlighten_pv.c694 void (*orig)(void); member in struct:trap_array_entry
700 .orig = asm_##func, \
705 .orig = asm_##func, \
756 if (*addr == entry->orig) {
/linux-master/net/core/
H A Dskmsg.c317 ssize_t orig, copied, use, offset; local
319 orig = msg->sg.size;
363 iov_iter_revert(from, msg->sg.size - orig);
H A Dskbuff.c1912 static int skb_zerocopy_clone(struct sk_buff *nskb, struct sk_buff *orig, argument
1915 if (skb_zcopy(orig)) {
1922 if (skb_uarg(nskb) == skb_uarg(orig))
1927 skb_zcopy_set(nskb, skb_uarg(orig), NULL);
H A Dfilter.c2991 struct page *page, *orig; local
3001 orig = sg_page(sge);
3007 put_page(orig);
8860 static int bpf_gen_ld_abs(const struct bpf_insn *orig, argument
8863 bool indirect = BPF_MODE(orig->code) == BPF_IND;
8867 *insn++ = BPF_MOV64_IMM(BPF_REG_2, orig->imm);
8869 *insn++ = BPF_MOV64_REG(BPF_REG_2, orig->src_reg);
8870 if (orig->imm)
8871 *insn++ = BPF_ALU64_IMM(BPF_ADD, BPF_REG_2, orig->imm);
8876 switch (BPF_SIZE(orig
[all...]
/linux-master/kernel/bpf/
H A Dverifier.c1210 void *orig = dst; local
1219 alloc_bytes = max(ksize(orig), kmalloc_size_roundup(bytes));
1220 dst = krealloc(orig, alloc_bytes, flags);
1222 kfree(orig);
/linux-master/fs/btrfs/
H A Dvolumes.c950 static struct btrfs_fs_devices *clone_fs_devices(struct btrfs_fs_devices *orig) argument
959 fs_devices = alloc_fs_devices(orig->fsid);
963 fs_devices->total_devices = orig->total_devices;
965 list_for_each_entry(orig_dev, &orig->devices, dev_list) {
H A Dinode.c2300 struct extent_state *orig, u64 split)
2308 if (!(orig->state & EXTENT_DELALLOC))
2311 size = orig->end - orig->start + 1;
2320 new_size = orig->end - split + 1;
2322 new_size = split - orig->start;
2299 btrfs_split_delalloc_extent(struct btrfs_inode *inode, struct extent_state *orig, u64 split) argument
/linux-master/drivers/s390/net/
H A Dqeth_core_main.c6326 struct net_device *qeth_clone_netdev(struct net_device *orig) argument
6328 struct net_device *clone = qeth_alloc_netdev(orig->ml_priv);
6333 clone->dev_port = orig->dev_port;
/linux-master/drivers/net/ethernet/brocade/bna/
H A Dbnad_debugfs.c221 bnad_debugfs_lseek(struct file *file, loff_t offset, int orig) argument
228 return fixed_size_llseek(file, offset, orig, debug->buffer_len);
/linux-master/drivers/base/regmap/
H A Dregmap.c3181 unsigned int tmp, orig; local
3192 ret = _regmap_read(map, reg, &orig);
3196 tmp = orig & ~mask;
3199 if (force_write || (tmp != orig) || map->force_write_field) {
/linux-master/net/openvswitch/
H A Dconntrack.c180 const struct nf_conntrack_tuple *orig,
183 key->ct_orig_proto = orig->dst.protonum;
184 if (orig->dst.protonum == icmp_proto) {
185 key->ct.orig_tp.src = htons(orig->dst.u.icmp.type);
186 key->ct.orig_tp.dst = htons(orig->dst.u.icmp.code);
188 key->ct.orig_tp.src = orig->src.u.all;
189 key->ct.orig_tp.dst = orig->dst.u.all;
203 const struct nf_conntrack_tuple *orig; local
208 orig = &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple;
213 key->ipv4.ct_orig.src = orig
179 __ovs_ct_update_key_orig_tp(struct sw_flow_key *key, const struct nf_conntrack_tuple *orig, u8 icmp_proto) argument
306 struct ovs_key_ct_tuple_ipv4 orig; local
319 struct ovs_key_ct_tuple_ipv6 orig; local
[all...]
/linux-master/net/ipv4/
H A Droute.c1428 struct rtable *orig; local
1435 orig = rcu_dereference(*porig);
1444 orig = NULL;
1455 if (orig) {
1456 dst_dev_put(&orig->dst);
1457 dst_release(&orig->dst);
1471 struct rtable *orig, *prev, **p; local
1479 orig = *p;
1485 prev = cmpxchg(p, orig, rt);
1486 if (prev == orig) {
[all...]
/linux-master/arch/arc/kernel/
H A Dentry-arcv2.S203 ; Exception in U mode, preempted in kernel, Intr taken (K mode), orig
229 ; (since IRQ NOT allowed in DS in ARCv2, this can only happen if orig
/linux-master/tools/testing/selftests/kvm/
H A Dmax_guest_memory_test.c43 int orig = atomic_read(&rendezvous); local
45 if (orig > 0) {
/linux-master/fs/smb/client/
H A Dfs_context.c448 char *opts, *orig, *p; local
450 orig = opts = kstrdup(options, GFP_KERNEL);
472 kfree(orig);
/linux-master/fs/bcachefs/
H A Dbtree_io.c1895 struct bch_write_bio *orig = parent ?: wbio; local
1896 struct btree_write_bio *wb = container_of(orig, struct btree_write_bio, wbio);
1910 bch2_dev_list_add_dev(&orig->failed, wbio->dev);
/linux-master/drivers/usb/typec/ucsi/
H A Ducsi.c448 struct ucsi_altmode orig[UCSI_MAX_ALTMODES]; local
461 memset(orig, 0, sizeof(orig));
484 orig[k].mid = alt.mid;
485 orig[k].svid = alt.svid;
493 multi_dp = ucsi->ops->update_altmodes(ucsi, orig, updated);
502 desc.svid = orig[i].svid;
503 desc.vdo = orig[i].mid;
/linux-master/arch/x86/kvm/mmu/
H A Dmmu.c417 union split_spte *ssptep, sspte, orig; local
423 orig.spte_low = xchg(&ssptep->spte_low, sspte.spte_low);
424 orig.spte_high = ssptep->spte_high;
428 return orig.spte;
452 union split_spte spte, *orig = (union split_spte *)sptep; local
459 spte.spte_low = orig->spte_low;
462 spte.spte_high = orig->spte_high;
465 if (unlikely(spte.spte_low != orig->spte_low ||
/linux-master/arch/x86/kvm/
H A Dcpuid.c173 struct kvm_cpuid_entry2 *orig; local
180 orig = &vcpu->arch.cpuid_entries[i];
181 if (e2[i].function != orig->function ||
182 e2[i].index != orig->index ||
183 e2[i].flags != orig->flags ||
184 e2[i].eax != orig->eax || e2[i].ebx != orig->ebx ||
185 e2[i].ecx != orig->ecx || e2[i].edx != orig->edx)
/linux-master/mm/
H A Dpage_owner.c750 static loff_t lseek_page_owner(struct file *file, loff_t offset, int orig) argument
752 switch (orig) {
H A Dgup.c2729 static int __gup_device_huge_pmd(pmd_t orig, pmd_t *pmdp, unsigned long addr, argument
2736 fault_pfn = pmd_pfn(orig) + ((addr & ~PMD_MASK) >> PAGE_SHIFT);
2740 if (unlikely(pmd_val(orig) != pmd_val(*pmdp))) {
2747 static int __gup_device_huge_pud(pud_t orig, pud_t *pudp, unsigned long addr, argument
2754 fault_pfn = pud_pfn(orig) + ((addr & ~PUD_MASK) >> PAGE_SHIFT);
2758 if (unlikely(pud_val(orig) != pud_val(*pudp))) {
2765 static int __gup_device_huge_pmd(pmd_t orig, pmd_t *pmdp, unsigned long addr, argument
2876 static int gup_huge_pmd(pmd_t orig, pmd_t *pmdp, unsigned long addr, argument
2884 if (!pmd_access_permitted(orig, flags & FOLL_WRITE))
2887 if (pmd_devmap(orig)) {
2920 gup_huge_pud(pud_t orig, pud_t *pudp, unsigned long addr, unsigned long end, unsigned int flags, struct page **pages, int *nr) argument
2965 gup_huge_pgd(pgd_t orig, pgd_t *pgdp, unsigned long addr, unsigned long end, unsigned int flags, struct page **pages, int *nr) argument
[all...]
/linux-master/kernel/
H A Dfork.c480 struct vm_area_struct *vm_area_dup(struct vm_area_struct *orig) argument
487 ASSERT_EXCLUSIVE_WRITER(orig->vm_flags);
488 ASSERT_EXCLUSIVE_WRITER(orig->vm_file);
490 * orig->shared.rb may be modified concurrently, but the clone
493 data_race(memcpy(new, orig, sizeof(*new)));
500 dup_anon_vma_name(orig, new);
1100 static struct task_struct *dup_task_struct(struct task_struct *orig, int node) argument
1106 node = tsk_fork_get_node(orig);
1111 err = arch_dup_task_struct(tsk, orig);
1131 * the sighand lock in case orig ha
[all...]
/linux-master/drivers/net/ethernet/microchip/sparx5/
H A Dsparx5_tc_flower.c34 enum vcap_keyfield_set orig; /* keyset used before the template */ member in struct:sparx5_tc_flower_template
1393 ftp->orig = VCAP_KFS_NO_VALUE;
1434 ftp->orig = kslist.keysets[0];
1463 ftp->l3_proto, ftp->orig,
/linux-master/drivers/char/
H A Drandom.c706 unsigned int new, orig, add; local
714 orig = READ_ONCE(input_pool.init_bits);
716 new = min_t(unsigned int, POOL_BITS, orig + add);
717 } while (!try_cmpxchg(&input_pool.init_bits, &orig, new));
719 if (orig < POOL_READY_BITS && new >= POOL_READY_BITS) {
730 } else if (orig < POOL_EARLY_BITS && new >= POOL_EARLY_BITS) {
/linux-master/net/batman-adv/
H A Dtranslation-table.c289 * batadv_tt_global_hash_count() - count the number of orig entries
424 * batadv_tt_orig_list_entry_release() - release tt orig entry from lists and
426 * @ref: kref pointer of the tt orig entry
440 * batadv_tt_orig_list_entry_put() - decrement the tt orig entry refcounter and
442 * @orig_entry: tt orig entry to be free'd
488 /* DEL+ADD in the same orig interval have no effect and can be
1501 * OR of all sync flags from any of its TT orig entries.
1521 * batadv_tt_global_orig_entry_add() - add or update a TT orig entry
1522 * @tt_global: the TT global entry to add an orig entry in
1523 * @orig_node: the originator to add an orig entr
1799 batadv_tt_global_dump_subentry(struct sk_buff *msg, u32 portid, u32 seq, struct batadv_tt_common_entry *common, struct batadv_tt_orig_list_entry *orig, bool best) argument
3983 batadv_tt_tvlv_ogm_handler_v1(struct batadv_priv *bat_priv, struct batadv_orig_node *orig, u8 flags, void *tvlv_value, u16 tvlv_value_len) argument
[all...]

Completed in 625 milliseconds

1234567891011>>