Home
last modified time | relevance | path

Searched refs:origin (Results 1 – 103 of 103) sorted by relevance

/linux-4.4.14/drivers/gpu/drm/i915/
Dintel_frontbuffer.c80 enum fb_op_origin origin) in intel_fb_obj_invalidate() argument
90 if (origin == ORIGIN_CS) { in intel_fb_obj_invalidate()
101 intel_fbc_invalidate(dev_priv, obj->frontbuffer_bits, origin); in intel_fb_obj_invalidate()
118 enum fb_op_origin origin) in intel_frontbuffer_flush() argument
131 intel_psr_flush(dev, frontbuffer_bits, origin); in intel_frontbuffer_flush()
132 intel_fbc_flush(dev_priv, frontbuffer_bits, origin); in intel_frontbuffer_flush()
146 bool retire, enum fb_op_origin origin) in intel_fb_obj_flush() argument
168 intel_frontbuffer_flush(dev, frontbuffer_bits, origin); in intel_fb_obj_flush()
Dintel_fbc.c1028 enum fb_op_origin origin) in intel_fbc_invalidate() argument
1035 if (origin == ORIGIN_GTT) in intel_fbc_invalidate()
1057 unsigned int frontbuffer_bits, enum fb_op_origin origin) in intel_fbc_flush() argument
1062 if (origin == ORIGIN_GTT) in intel_fbc_flush()
Dintel_drv.h1006 enum fb_op_origin origin);
1018 enum fb_op_origin origin);
1289 enum fb_op_origin origin);
1291 unsigned int frontbuffer_bits, enum fb_op_origin origin);
1364 enum fb_op_origin origin);
Dintel_psr.c698 unsigned frontbuffer_bits, enum fb_op_origin origin) in intel_psr_flush() argument
724 if (frontbuffer_bits && origin != ORIGIN_FLIP) in intel_psr_flush()
/linux-4.4.14/Documentation/device-mapper/
Dsnapshot.txt11 *) To merge a snapshot of a block device back into the snapshot's origin
19 the origin device.
23 snapshot, snapshot-origin, and snapshot-merge.
25 *) snapshot-origin <origin>
33 *) snapshot <origin> <COW device> <persistent?> <chunksize>
35 A snapshot of the <origin> block device is created. Changed chunks of
38 from <origin> for unchanged data. <COW device> will often be
39 smaller than the origin and if it fills up the snapshot will become
53 * snapshot-merge <origin> <COW device> <persistent> <chunksize>
57 "snapshot-origin" target and must not be loaded if the "snapshot-origin"
[all …]
Dcache.txt32 The origin device always contains a copy of the logical block, which
45 1. An origin device - the big, slow one.
59 The origin is divided up into blocks of a fixed size. This block size
82 complete until it has hit both the origin and cache devices. Clean
86 to be coherent with the origin device, then all reads are served from
87 the origin device (all reads miss the cache) and all writes are
88 forwarded to the origin device; additionally, write hits cause cache
114 Migrating data between the origin and cache device uses bandwidth.
168 state for all of the origin device (compare with the dirty bitset
177 cache <metadata dev> <cache dev> <origin dev> <block size>
[all …]
Dthin-provisioning.txt177 N.B. If the origin device that you wish to snapshot is active, you
186 identifier for the origin device.
191 between the origin and the snapshot. Indeed the snapshot is no
205 You can use an external _read only_ device as an origin for a
207 thin device will be passed through to the origin. Writes trigger
214 You must not write to the origin device if you use this technique!
221 You don't mention the origin at this stage.
227 Append an extra parameter to the thin target specifying the origin:
232 same extra origin parameter.
332 create_snap <dev id> <origin id>
[all …]
Dera.txt17 era <metadata dev> <origin dev> <block size>
20 origin dev : device holding data blocks that may change
21 block size : block size of origin data device, granularity that is
Dcache-policies.txt57 Large, sequential I/Os are probably better left on the origin device
91 degrade slightly until smq recalculates the origin device's hotspots
146 cache <metadata dev> <cache dev> <origin dev> <block size>
/linux-4.4.14/block/partitions/
Dmsdos.c216 sector_t offset, sector_t size, int origin) in parse_solaris_x86() argument
234 snprintf(tmp, sizeof(tmp), " %s%d: <solaris:", state->name, origin); in parse_solaris_x86()
273 sector_t offset, sector_t size, int origin, char *flavour, in parse_bsd() argument
289 snprintf(tmp, sizeof(tmp), " %s%d: <%s:", state->name, origin, flavour); in parse_bsd()
323 sector_t offset, sector_t size, int origin) in parse_freebsd() argument
326 parse_bsd(state, offset, size, origin, "bsd", BSD_MAXPARTITIONS); in parse_freebsd()
331 sector_t offset, sector_t size, int origin) in parse_netbsd() argument
334 parse_bsd(state, offset, size, origin, "netbsd", BSD_MAXPARTITIONS); in parse_netbsd()
339 sector_t offset, sector_t size, int origin) in parse_openbsd() argument
342 parse_bsd(state, offset, size, origin, "openbsd", in parse_openbsd()
[all …]
/linux-4.4.14/drivers/net/ethernet/hisilicon/
Dhns_mdio.c116 #define mdio_set_field(origin, mask, shift, val) \ argument
118 (origin) &= (~((mask) << (shift))); \
119 (origin) |= (((val) & (mask)) << (shift)); \
122 #define mdio_get_field(origin, mask, shift) (((origin) >> (shift)) & (mask)) argument
127 u32 origin = mdio_read_reg(base, reg); in mdio_set_reg_field() local
129 mdio_set_field(origin, mask, shift, val); in mdio_set_reg_field()
130 mdio_write_reg(base, reg, origin); in mdio_set_reg_field()
138 u32 origin; in mdio_get_reg_field() local
140 origin = mdio_read_reg(base, reg); in mdio_get_reg_field()
141 return mdio_get_field(origin, mask, shift); in mdio_get_reg_field()
/linux-4.4.14/drivers/net/ethernet/hisilicon/hns/
Dhns_dsaf_reg.h921 #define dsaf_set_field(origin, mask, shift, val) \ argument
923 (origin) &= (~(mask)); \
924 (origin) |= (((val) << (shift)) & (mask)); \
927 #define dsaf_set_bit(origin, shift, val) \ argument
928 dsaf_set_field((origin), (1ull << (shift)), (shift), (val))
933 u32 origin = dsaf_read_reg(base, reg); in dsaf_set_reg_field() local
935 dsaf_set_field(origin, mask, shift, val); in dsaf_set_reg_field()
936 dsaf_write_reg(base, reg, origin); in dsaf_set_reg_field()
945 #define dsaf_get_field(origin, mask, shift) (((origin) & (mask)) >> (shift)) argument
947 #define dsaf_get_bit(origin, shift) \ argument
[all …]
Dhnae.h571 #define hnae_set_field(origin, mask, shift, val) \ argument
573 (origin) &= (~(mask)); \
574 (origin) |= ((val) << (shift)) & (mask); \
577 #define hnae_set_bit(origin, shift, val) \ argument
578 hnae_set_field((origin), (0x1 << (shift)), (shift), (val))
580 #define hnae_get_field(origin, mask, shift) (((origin) & (mask)) >> (shift)) argument
582 #define hnae_get_bit(origin, shift) \ argument
583 hnae_get_field((origin), (0x1 << (shift)), (shift))
Dhns_dsaf_xgmac.c173 u32 origin = dsaf_read_dev(drv, XGMAC_PMA_FEC_CONTROL_REG); in hns_xgmac_pma_fec_enable() local
175 dsaf_set_bit(origin, XGMAC_PMA_FEC_CTL_TX_B, !!tx_value); in hns_xgmac_pma_fec_enable()
176 dsaf_set_bit(origin, XGMAC_PMA_FEC_CTL_RX_B, !!rx_value); in hns_xgmac_pma_fec_enable()
177 dsaf_write_dev(drv, XGMAC_PMA_FEC_CONTROL_REG, origin); in hns_xgmac_pma_fec_enable()
221 u32 origin = dsaf_read_dev(drv, XGMAC_MAC_CONTROL_REG); in hns_xgmac_config_pad_and_crc() local
223 dsaf_set_bit(origin, XGMAC_CTL_TX_PAD_B, !!newval); in hns_xgmac_config_pad_and_crc()
224 dsaf_set_bit(origin, XGMAC_CTL_TX_FCS_B, !!newval); in hns_xgmac_config_pad_and_crc()
225 dsaf_set_bit(origin, XGMAC_CTL_RX_FCS_B, !!newval); in hns_xgmac_config_pad_and_crc()
226 dsaf_write_dev(drv, XGMAC_MAC_CONTROL_REG, origin); in hns_xgmac_config_pad_and_crc()
237 u32 origin = dsaf_read_dev(drv, XGMAC_MAC_PAUSE_CTRL_REG); in hns_xgmac_pausefrm_cfg() local
[all …]
/linux-4.4.14/drivers/md/
Ddm-snap.c52 struct dm_dev *origin; member
153 return s->origin; in dm_snap_origin()
292 struct origin { struct
365 static struct origin *__lookup_origin(struct block_device *origin) in __lookup_origin() argument
368 struct origin *o; in __lookup_origin()
370 ol = &_origins[origin_hash(origin)]; in __lookup_origin()
372 if (bdev_equal(o->bdev, origin)) in __lookup_origin()
378 static void __insert_origin(struct origin *o) in __insert_origin()
384 static struct dm_origin *__lookup_dm_origin(struct block_device *origin) in __lookup_dm_origin() argument
389 ol = &_dm_origins[origin_hash(origin)]; in __lookup_dm_origin()
[all …]
Ddm-thin-metadata.h70 dm_thin_id origin);
Ddm-thin-metadata.c1030 dm_thin_id origin, uint32_t time) in __set_snapshot_details() argument
1035 r = __open_device(pmd, origin, 0, &td); in __set_snapshot_details()
1050 dm_thin_id dev, dm_thin_id origin) in __create_snap() argument
1054 uint64_t key = origin, dev_key = dev; in __create_snap()
1090 r = __set_snapshot_details(pmd, td, origin, pmd->time); in __create_snap()
1107 dm_thin_id origin) in dm_pool_create_snap() argument
1113 r = __create_snap(pmd, dev, origin); in dm_pool_create_snap()
DKconfig326 origin. Used when decommissioning a dm-cache.
Ddm-thin.c1168 struct dm_dev *origin, dm_block_t data_origin, in schedule_copy() argument
1204 from.bdev = origin->bdev; in schedule_copy()
/linux-4.4.14/fs/
Dpnode.c147 struct mount *origin) in propagation_next() argument
156 if (master == origin->mnt_master) { in propagation_next()
158 return (next == origin) ? NULL : next; in propagation_next()
167 static struct mount *next_group(struct mount *m, struct mount *origin) in next_group() argument
175 if (m->mnt_group_id == origin->mnt_group_id) { in next_group()
176 if (next == origin) in next_group()
188 if (master->mnt_group_id == origin->mnt_group_id) in next_group()
194 if (m == origin) in next_group()
/linux-4.4.14/drivers/acpi/acpica/
Dpstree.c200 union acpi_parse_object *acpi_ps_get_depth_next(union acpi_parse_object *origin, in acpi_ps_get_depth_next() argument
233 while (arg && (arg != origin) && (arg != op)) { in acpi_ps_get_depth_next()
237 if (arg == origin) { in acpi_ps_get_depth_next()
Dacapps.h142 void acpi_dm_dump_tree(union acpi_parse_object *origin);
144 void acpi_dm_find_orphan_methods(union acpi_parse_object *origin);
Ddswstate.c542 *origin, in acpi_ds_create_walk_state()
560 walk_state->origin = origin; in acpi_ds_create_walk_state()
563 walk_state->parser_state.start_op = origin; in acpi_ds_create_walk_state()
Dacstruct.h114 union acpi_parse_object *origin; /* Start of walk [Obsolete] */ member
Dacparser.h197 union acpi_parse_object *acpi_ps_get_depth_next(union acpi_parse_object *origin,
Dacdispat.h317 *origin,
Ddswexec.c250 if (op == walk_state->origin) { in acpi_ds_exec_begin_op()
/linux-4.4.14/arch/um/drivers/
Dmconsole_user.c48 msg.msg_name = &(req->origin); in mconsole_reply_v0()
83 req->originlen = sizeof(req->origin); in mconsole_get_request()
85 (struct sockaddr *) req->origin, &req->originlen); in mconsole_get_request()
157 (struct sockaddr *) req->origin, req->originlen); in mconsole_reply_len()
Dmconsole.h62 unsigned char origin[128]; /* sockaddr_un */ member
/linux-4.4.14/tools/build/
DMakefile9 $(if $(or $(findstring environment,$(origin $(1))),\
10 $(findstring command line,$(origin $(1)))),,\
/linux-4.4.14/arch/arm/kernel/
Dunwind.c117 const struct unwind_idx *origin, in search_index() argument
123 __func__, addr, start, origin, stop); in search_index()
131 stop = origin; in search_index()
134 start = origin; in search_index()
209 table->origin, in unwind_find_idx()
528 tab->origin = unwind_find_origin(tab->start, tab->stop); in unwind_table_add()
/linux-4.4.14/drivers/parisc/
Deisa_eeprom.c34 static loff_t eisa_eeprom_llseek(struct file *file, loff_t offset, int origin) in eisa_eeprom_llseek() argument
36 return fixed_size_llseek(file, offset, origin, HPEE_MAX_LENGTH); in eisa_eeprom_llseek()
/linux-4.4.14/arch/tile/kernel/
Dcompat.c83 unsigned int, origin) in COMPAT_SYSCALL_DEFINE5() argument
85 return sys_llseek(fd, offset_high, offset_low, result, origin); in COMPAT_SYSCALL_DEFINE5()
/linux-4.4.14/drivers/char/
Dgeneric_nvram.c34 static loff_t nvram_llseek(struct file *file, loff_t offset, int origin) in nvram_llseek() argument
36 switch (origin) { in nvram_llseek()
Dtile-srom.c275 loff_t srom_llseek(struct file *file, loff_t offset, int origin) in srom_llseek() argument
278 return fixed_size_llseek(file, offset, origin, srom->total_size); in srom_llseek()
Dnvram.c214 static loff_t nvram_llseek(struct file *file, loff_t offset, int origin) in nvram_llseek() argument
216 switch (origin) { in nvram_llseek()
Dps3flash.c98 static loff_t ps3flash_llseek(struct file *file, loff_t offset, int origin) in ps3flash_llseek() argument
101 return generic_file_llseek_size(file, offset, origin, MAX_LFS_FILESIZE, in ps3flash_llseek()
/linux-4.4.14/tools/lib/lockdep/
DMakefile12 $(if $(or $(findstring environment,$(origin $(1))),\
13 $(findstring command line,$(origin $(1)))),,\
/linux-4.4.14/tools/lib/bpf/
DMakefile16 $(if $(or $(findstring environment,$(origin $(1))),\
17 $(findstring command line,$(origin $(1)))),,\
/linux-4.4.14/arch/mips/kernel/
Dlinux32.c101 unsigned int, origin)
103 return sys_llseek(fd, offset_high, offset_low, result, origin);
/linux-4.4.14/tools/perf/util/
Ddwarf-aux.c584 Dwarf_Die *origin; in __die_walk_instances_cb() local
591 origin = dwarf_formref_die(attr, &origin_mem); in __die_walk_instances_cb()
592 if (origin == NULL || origin->addr != iwp->addr) in __die_walk_instances_cb()
597 dwarf_decl_line(origin, &tmp); in __die_walk_instances_cb()
599 tmp = die_get_decl_fileno(origin); in __die_walk_instances_cb()
Ddso.c13 static const char origin[] = { in dso__symtab_origin() local
34 return origin[dso->symtab_type]; in dso__symtab_origin()
/linux-4.4.14/arch/arm/include/asm/
Dunwind.h40 const struct unwind_idx *origin; member
/linux-4.4.14/tools/testing/ktest/examples/include/
Dbisect.conf26 CHECKOUT = origin/master
/linux-4.4.14/include/linux/mtd/
Dpartitions.h62 unsigned long origin; member
/linux-4.4.14/drivers/sbus/char/
Dflash.c80 flash_llseek(struct file *file, long long offset, int origin) in flash_llseek() argument
83 switch (origin) { in flash_llseek()
/linux-4.4.14/tools/lib/traceevent/
DMakefile18 $(if $(or $(findstring environment,$(origin $(1))),\
19 $(findstring command line,$(origin $(1)))),,\
/linux-4.4.14/fs/9p/
Dvfs_file.c411 loff_t origin; in v9fs_file_write_iter() local
418 origin = iocb->ki_pos; in v9fs_file_write_iter()
424 pg_start = origin >> PAGE_CACHE_SHIFT; in v9fs_file_write_iter()
425 pg_end = (origin + retval - 1) >> PAGE_CACHE_SHIFT; in v9fs_file_write_iter()
/linux-4.4.14/fs/ocfs2/
Dextent_map.h56 int ocfs2_seek_data_hole_offset(struct file *file, loff_t *offset, int origin);
/linux-4.4.14/drivers/mtd/
Dredboot.c199 if (data && data->origin) in parse_redboot_partitions()
200 buf[i].flash_base -= data->origin; in parse_redboot_partitions()
/linux-4.4.14/include/uapi/linux/
Dncp_fs.h68 int origin; member
/linux-4.4.14/arch/s390/include/asm/
Dsysinfo.h140 unsigned short origin; member
/linux-4.4.14/tools/scripts/
DMakefile.include2 ifeq ($(origin O), command line)
/linux-4.4.14/arch/cris/boot/compressed/
DREADME11 burned into a flash or executed directly at the DRAM origin.
/linux-4.4.14/fs/overlayfs/
Dreaddir.c397 static loff_t ovl_dir_llseek(struct file *file, loff_t offset, int origin) in ovl_dir_llseek() argument
407 res = vfs_llseek(od->realfile, offset, origin); in ovl_dir_llseek()
412 switch (origin) { in ovl_dir_llseek()
/linux-4.4.14/tools/perf/Documentation/
DMakefile55 DOC_REF = origin/man
56 HTML_REF = origin/html
/linux-4.4.14/drivers/mtd/maps/
Dixp4xx.c177 .origin = dev->resource->start, in ixp4xx_flash_probe()
/linux-4.4.14/arch/s390/kernel/
Dhead64.S57 .quad .Lduct # cr5: primary-aste origin
Dtopology.c94 rcore = TOPOLOGY_CORE_BITS - 1 - core + tl_core->origin; in add_cpus_to_mask()
/linux-4.4.14/arch/tile/include/asm/
Dcompat.h291 unsigned int origin);
/linux-4.4.14/drivers/firmware/
Discsi_ibft.c128 u8 origin; member
323 str += sprintf(str, "%d\n", nic->origin); in ibft_attr_show_nic()
/linux-4.4.14/fs/configfs/
Ddir.c1027 static int configfs_depend_prep(struct dentry *origin, in configfs_depend_prep() argument
1033 BUG_ON(!origin || !origin->d_fsdata); in configfs_depend_prep()
1034 sd = origin->d_fsdata; in configfs_depend_prep()
/linux-4.4.14/drivers/staging/android/
Dashmem.c325 static loff_t ashmem_llseek(struct file *file, loff_t offset, int origin) in ashmem_llseek() argument
342 ret = vfs_llseek(asma->file, offset, origin); in ashmem_llseek()
/linux-4.4.14/Documentation/video4linux/
Dsh_mobile_ceu_camera.txt115 "...specification does not define an origin or units. However by convention
/linux-4.4.14/Documentation/EDID/
DHOWTO.txt23 not contain code to create these data. In order to elucidate the origin
/linux-4.4.14/include/uapi/sound/
Dasequencer.h265 struct snd_seq_addr origin; /* original sender */ member
/linux-4.4.14/tools/perf/
Dbuiltin-top.c818 u8 origin; in perf_top__mmap_read_idx() local
831 origin = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK; in perf_top__mmap_read_idx()
836 switch (origin) { in perf_top__mmap_read_idx()
DMakefile.perf126 $(if $(or $(findstring environment,$(origin $(1))),\
127 $(findstring command line,$(origin $(1)))),,\
/linux-4.4.14/fs/ntfs/
Dlayout.h1140 } __attribute__ ((__packed__)) origin; member
1164 } __attribute__ ((__packed__)) origin; member
/linux-4.4.14/drivers/hid/
Dhid-logitech-hidpp.c632 u8 origin; member
678 raw_info->origin = params[8]; in hidpp_touchpad_get_raw_info()
946 wd->flip_y = raw_info.origin == TOUCHPAD_RAW_XY_ORIGIN_LOWER_LEFT; in wtp_get_config()
/linux-4.4.14/Documentation/input/
Datarikbd.txt81 Note that the sign of the delta y reported is a function of the Y origin
177 either axis and the Y=0 origin at the top of the screen, and joystick event
264 command is not affected by the mouse motion origin.
325 This command makes the origin of the Y axis to be at the bottom of the
334 Makes the origin of the Y axis to be at the top of the logical coordinate
/linux-4.4.14/drivers/staging/lustre/lustre/llite/
Dfile.c2505 static loff_t ll_file_seek(struct file *file, loff_t offset, int origin) in ll_file_seek() argument
2510 retval = offset + ((origin == SEEK_END) ? i_size_read(inode) : in ll_file_seek()
2511 (origin == SEEK_CUR) ? file->f_pos : 0); in ll_file_seek()
2514 origin); in ll_file_seek()
2517 if (origin == SEEK_END || origin == SEEK_HOLE || origin == SEEK_DATA) { in ll_file_seek()
2524 retval = generic_file_llseek_size(file, offset, origin, in ll_file_seek()
Ddir.c1858 static loff_t ll_dir_seek(struct file *file, loff_t offset, int origin) in ll_dir_seek() argument
1867 switch (origin) { in ll_dir_seek()
/linux-4.4.14/arch/s390/kvm/
Dgaccess.c18 unsigned long origin : 52; /* Region- or Segment-Table Origin */ member
556 ptr = asce.origin * 4096; in guest_translate()
/linux-4.4.14/drivers/input/mouse/
Dbcm5974.c235 __le16 origin; /* zero when switching track finger */ member
608 if (p > 0 && raw2int(f->origin)) { in report_synaptics_data()
/linux-4.4.14/arch/powerpc/kernel/
Dnvram_64.c734 static loff_t dev_nvram_llseek(struct file *file, loff_t offset, int origin) in dev_nvram_llseek() argument
742 switch (origin) { in dev_nvram_llseek()
/linux-4.4.14/Documentation/ABI/testing/
Ddev-kmsg20 facility number LOG_KERN (0), to make sure that the origin of
/linux-4.4.14/drivers/mtd/ubi/
Dcdev.c156 static loff_t vol_cdev_llseek(struct file *file, loff_t offset, int origin) in vol_cdev_llseek() argument
167 return fixed_size_llseek(file, offset, origin, vol->used_bytes); in vol_cdev_llseek()
/linux-4.4.14/Documentation/arm/Marvell/
DREADME192 * Due to their XScale origin, these SoCs have virtually nothing in
229 * Due to their XScale origin, these SoCs have virtually nothing in
/linux-4.4.14/drivers/staging/lustre/lustre/obdclass/
Dcl_lock.c1554 struct cl_lock *origin, int wait) in cl_lock_closure_init() argument
1556 LINVRNT(cl_lock_is_mutexed(origin)); in cl_lock_closure_init()
1557 LINVRNT(cl_lock_invariant(env, origin)); in cl_lock_closure_init()
1560 closure->clc_origin = origin; in cl_lock_closure_init()
/linux-4.4.14/Documentation/ia64/
Dxen.txt131 # git checkout -b your_branch origin/xen-ia64-domu-minimal-2008may19
/linux-4.4.14/include/net/
Dxfrm.h952 struct flowi *origin; member
971 kfree(xdst->origin); in xfrm_dst_destroy()
972 xdst->origin = NULL; in xfrm_dst_destroy()
/linux-4.4.14/drivers/scsi/
Discsi_boot_sysfs.c170 iscsi_boot_rd_attr(eth_origin, origin, ISCSI_BOOT_ETH_ORIGIN);
/linux-4.4.14/Documentation/virtual/kvm/
Dlocking.txt75 In the origin code, the spte can be fast updated (non-atomically) if the
/linux-4.4.14/drivers/net/bonding/
Dbond_3ad.c1580 struct aggregator *best, *active, *origin; in ad_agg_selection_logic() local
1587 origin = agg; in ad_agg_selection_logic()
1678 active = __get_active_agg(origin); in ad_agg_selection_logic()
/linux-4.4.14/include/acpi/
Dactbl2.h622 u8 origin; member
/linux-4.4.14/net/ipv6/
Dip6mr.c1011 const struct in6_addr *origin, in ip6mr_cache_find() argument
1014 int line = MFC6_HASH(mcastgrp, origin); in ip6mr_cache_find()
1018 if (ipv6_addr_equal(&c->mf6c_origin, origin) && in ip6mr_cache_find()
/linux-4.4.14/net/ipv4/
Dipmr.c822 __be32 origin, in ipmr_cache_find() argument
825 int line = MFC_HASH(mcastgrp, origin); in ipmr_cache_find()
829 if (c->mfc_origin == origin && c->mfc_mcastgrp == mcastgrp) in ipmr_cache_find()
/linux-4.4.14/fs/ncpfs/
Dioctl.c522 if (rqdata.origin != 0) in __ncp_ioctl()
/linux-4.4.14/tools/perf/config/
DMakefile301 ifeq ($(origin PERF_HAVE_DWARF_REGS), undefined)
/linux-4.4.14/drivers/net/wireless/iwlegacy/
Dcommands.h2142 u8 origin; /* 0 = TGh, 1 = other, 2 = TGk */ member
/linux-4.4.14/drivers/staging/lustre/lustre/include/
Dcl_object.h3003 struct cl_lock *origin, int wait);
/linux-4.4.14/Documentation/s390/
DDebugging390.txt117 table origin.
124 segment table origin.
129 table origin.
963 On 31 bit the STD is bits 1-19 ( the STO segment table origin )
1007 gives the page table origin & we need to set the low bits
Ds390dbf.txt36 that the records which describe the origin of the exception are not
/linux-4.4.14/drivers/net/wireless/iwlwifi/dvm/
Dcommands.h2027 u8 origin; /* 0 = TGh, 1 = other, 2 = TGk */ member
/linux-4.4.14/firmware/
DWHENCE5 This file attempts to document the origin and licensing information,
/linux-4.4.14/sound/core/seq/
Dseq_clientmgr.c550 bounce_ev.data.quote.origin = event->dest; in bounce_error_event()
/linux-4.4.14/fs/ext4/
Dext4.h2991 extern loff_t ext4_llseek(struct file *file, loff_t offset, int origin);
/linux-4.4.14/Documentation/
DSubmittingPatches482 to insert an indication of the origin of a patch at the top of the commit
/linux-4.4.14/net/xfrm/
Dxfrm_policy.c1810 return xfrm_dst_alloc_copy((void **)&(xdst->origin), fl, sizeof(*fl)); in xfrm_dst_update_origin()
/linux-4.4.14/Documentation/cdrom/
Dcdrom-standard.tex695 mounting \cdrom s is very good in origin: under Solaris a
/linux-4.4.14/Documentation/sound/oss/
DREADME.OSS1296 to look at the card and try to identify its origin.
/linux-4.4.14/Documentation/trace/
Dftrace.txt1895 find its origin.