/linux-4.4.14/drivers/gpu/drm/i915/ |
D | intel_frontbuffer.c | 80 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()
|
D | intel_fbc.c | 1028 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()
|
D | intel_drv.h | 1006 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);
|
D | intel_psr.c | 698 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/ |
D | snapshot.txt | 11 *) 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 …]
|
D | cache.txt | 32 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 …]
|
D | thin-provisioning.txt | 177 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 …]
|
D | era.txt | 17 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
|
D | cache-policies.txt | 57 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/ |
D | msdos.c | 216 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/ |
D | hns_mdio.c | 116 #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/ |
D | hns_dsaf_reg.h | 921 #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 …]
|
D | hnae.h | 571 #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))
|
D | hns_dsaf_xgmac.c | 173 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/ |
D | dm-snap.c | 52 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 …]
|
D | dm-thin-metadata.h | 70 dm_thin_id origin);
|
D | dm-thin-metadata.c | 1030 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()
|
D | Kconfig | 326 origin. Used when decommissioning a dm-cache.
|
D | dm-thin.c | 1168 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/ |
D | pnode.c | 147 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/ |
D | pstree.c | 200 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()
|
D | acapps.h | 142 void acpi_dm_dump_tree(union acpi_parse_object *origin); 144 void acpi_dm_find_orphan_methods(union acpi_parse_object *origin);
|
D | dswstate.c | 542 *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()
|
D | acstruct.h | 114 union acpi_parse_object *origin; /* Start of walk [Obsolete] */ member
|
D | acparser.h | 197 union acpi_parse_object *acpi_ps_get_depth_next(union acpi_parse_object *origin,
|
D | acdispat.h | 317 *origin,
|
D | dswexec.c | 250 if (op == walk_state->origin) { in acpi_ds_exec_begin_op()
|
/linux-4.4.14/arch/um/drivers/ |
D | mconsole_user.c | 48 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()
|
D | mconsole.h | 62 unsigned char origin[128]; /* sockaddr_un */ member
|
/linux-4.4.14/tools/build/ |
D | Makefile | 9 $(if $(or $(findstring environment,$(origin $(1))),\ 10 $(findstring command line,$(origin $(1)))),,\
|
/linux-4.4.14/arch/arm/kernel/ |
D | unwind.c | 117 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/ |
D | eisa_eeprom.c | 34 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/ |
D | compat.c | 83 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/ |
D | generic_nvram.c | 34 static loff_t nvram_llseek(struct file *file, loff_t offset, int origin) in nvram_llseek() argument 36 switch (origin) { in nvram_llseek()
|
D | tile-srom.c | 275 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()
|
D | nvram.c | 214 static loff_t nvram_llseek(struct file *file, loff_t offset, int origin) in nvram_llseek() argument 216 switch (origin) { in nvram_llseek()
|
D | ps3flash.c | 98 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/ |
D | Makefile | 12 $(if $(or $(findstring environment,$(origin $(1))),\ 13 $(findstring command line,$(origin $(1)))),,\
|
/linux-4.4.14/tools/lib/bpf/ |
D | Makefile | 16 $(if $(or $(findstring environment,$(origin $(1))),\ 17 $(findstring command line,$(origin $(1)))),,\
|
/linux-4.4.14/arch/mips/kernel/ |
D | linux32.c | 101 unsigned int, origin) 103 return sys_llseek(fd, offset_high, offset_low, result, origin);
|
/linux-4.4.14/tools/perf/util/ |
D | dwarf-aux.c | 584 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()
|
D | dso.c | 13 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/ |
D | unwind.h | 40 const struct unwind_idx *origin; member
|
/linux-4.4.14/tools/testing/ktest/examples/include/ |
D | bisect.conf | 26 CHECKOUT = origin/master
|
/linux-4.4.14/include/linux/mtd/ |
D | partitions.h | 62 unsigned long origin; member
|
/linux-4.4.14/drivers/sbus/char/ |
D | flash.c | 80 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/ |
D | Makefile | 18 $(if $(or $(findstring environment,$(origin $(1))),\ 19 $(findstring command line,$(origin $(1)))),,\
|
/linux-4.4.14/fs/9p/ |
D | vfs_file.c | 411 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/ |
D | extent_map.h | 56 int ocfs2_seek_data_hole_offset(struct file *file, loff_t *offset, int origin);
|
/linux-4.4.14/drivers/mtd/ |
D | redboot.c | 199 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/ |
D | ncp_fs.h | 68 int origin; member
|
/linux-4.4.14/arch/s390/include/asm/ |
D | sysinfo.h | 140 unsigned short origin; member
|
/linux-4.4.14/tools/scripts/ |
D | Makefile.include | 2 ifeq ($(origin O), command line)
|
/linux-4.4.14/arch/cris/boot/compressed/ |
D | README | 11 burned into a flash or executed directly at the DRAM origin.
|
/linux-4.4.14/fs/overlayfs/ |
D | readdir.c | 397 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/ |
D | Makefile | 55 DOC_REF = origin/man 56 HTML_REF = origin/html
|
/linux-4.4.14/drivers/mtd/maps/ |
D | ixp4xx.c | 177 .origin = dev->resource->start, in ixp4xx_flash_probe()
|
/linux-4.4.14/arch/s390/kernel/ |
D | head64.S | 57 .quad .Lduct # cr5: primary-aste origin
|
D | topology.c | 94 rcore = TOPOLOGY_CORE_BITS - 1 - core + tl_core->origin; in add_cpus_to_mask()
|
/linux-4.4.14/arch/tile/include/asm/ |
D | compat.h | 291 unsigned int origin);
|
/linux-4.4.14/drivers/firmware/ |
D | iscsi_ibft.c | 128 u8 origin; member 323 str += sprintf(str, "%d\n", nic->origin); in ibft_attr_show_nic()
|
/linux-4.4.14/fs/configfs/ |
D | dir.c | 1027 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/ |
D | ashmem.c | 325 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/ |
D | sh_mobile_ceu_camera.txt | 115 "...specification does not define an origin or units. However by convention
|
/linux-4.4.14/Documentation/EDID/ |
D | HOWTO.txt | 23 not contain code to create these data. In order to elucidate the origin
|
/linux-4.4.14/include/uapi/sound/ |
D | asequencer.h | 265 struct snd_seq_addr origin; /* original sender */ member
|
/linux-4.4.14/tools/perf/ |
D | builtin-top.c | 818 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()
|
D | Makefile.perf | 126 $(if $(or $(findstring environment,$(origin $(1))),\ 127 $(findstring command line,$(origin $(1)))),,\
|
/linux-4.4.14/fs/ntfs/ |
D | layout.h | 1140 } __attribute__ ((__packed__)) origin; member 1164 } __attribute__ ((__packed__)) origin; member
|
/linux-4.4.14/drivers/hid/ |
D | hid-logitech-hidpp.c | 632 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/ |
D | atarikbd.txt | 81 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/ |
D | file.c | 2505 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()
|
D | dir.c | 1858 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/ |
D | gaccess.c | 18 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/ |
D | bcm5974.c | 235 __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/ |
D | nvram_64.c | 734 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/ |
D | dev-kmsg | 20 facility number LOG_KERN (0), to make sure that the origin of
|
/linux-4.4.14/drivers/mtd/ubi/ |
D | cdev.c | 156 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/ |
D | README | 192 * 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/ |
D | cl_lock.c | 1554 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/ |
D | xen.txt | 131 # git checkout -b your_branch origin/xen-ia64-domu-minimal-2008may19
|
/linux-4.4.14/include/net/ |
D | xfrm.h | 952 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/ |
D | iscsi_boot_sysfs.c | 170 iscsi_boot_rd_attr(eth_origin, origin, ISCSI_BOOT_ETH_ORIGIN);
|
/linux-4.4.14/Documentation/virtual/kvm/ |
D | locking.txt | 75 In the origin code, the spte can be fast updated (non-atomically) if the
|
/linux-4.4.14/drivers/net/bonding/ |
D | bond_3ad.c | 1580 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/ |
D | actbl2.h | 622 u8 origin; member
|
/linux-4.4.14/net/ipv6/ |
D | ip6mr.c | 1011 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/ |
D | ipmr.c | 822 __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/ |
D | ioctl.c | 522 if (rqdata.origin != 0) in __ncp_ioctl()
|
/linux-4.4.14/tools/perf/config/ |
D | Makefile | 301 ifeq ($(origin PERF_HAVE_DWARF_REGS), undefined)
|
/linux-4.4.14/drivers/net/wireless/iwlegacy/ |
D | commands.h | 2142 u8 origin; /* 0 = TGh, 1 = other, 2 = TGk */ member
|
/linux-4.4.14/drivers/staging/lustre/lustre/include/ |
D | cl_object.h | 3003 struct cl_lock *origin, int wait);
|
/linux-4.4.14/Documentation/s390/ |
D | Debugging390.txt | 117 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
|
D | s390dbf.txt | 36 that the records which describe the origin of the exception are not
|
/linux-4.4.14/drivers/net/wireless/iwlwifi/dvm/ |
D | commands.h | 2027 u8 origin; /* 0 = TGh, 1 = other, 2 = TGk */ member
|
/linux-4.4.14/firmware/ |
D | WHENCE | 5 This file attempts to document the origin and licensing information,
|
/linux-4.4.14/sound/core/seq/ |
D | seq_clientmgr.c | 550 bounce_ev.data.quote.origin = event->dest; in bounce_error_event()
|
/linux-4.4.14/fs/ext4/ |
D | ext4.h | 2991 extern loff_t ext4_llseek(struct file *file, loff_t offset, int origin);
|
/linux-4.4.14/Documentation/ |
D | SubmittingPatches | 482 to insert an indication of the origin of a patch at the top of the commit
|
/linux-4.4.14/net/xfrm/ |
D | xfrm_policy.c | 1810 return xfrm_dst_alloc_copy((void **)&(xdst->origin), fl, sizeof(*fl)); in xfrm_dst_update_origin()
|
/linux-4.4.14/Documentation/cdrom/ |
D | cdrom-standard.tex | 695 mounting \cdrom s is very good in origin: under Solaris a
|
/linux-4.4.14/Documentation/sound/oss/ |
D | README.OSS | 1296 to look at the card and try to identify its origin.
|
/linux-4.4.14/Documentation/trace/ |
D | ftrace.txt | 1895 find its origin.
|