/linux-4.4.14/drivers/spi/ |
D | spi-mpc52xx.c | 83 int (*state)(int irq, struct mpc52xx_spi *ms, u8 status, u8 data); 96 static void mpc52xx_spi_chipsel(struct mpc52xx_spi *ms, int value) in mpc52xx_spi_chipsel() argument 100 if (ms->gpio_cs_count > 0) { in mpc52xx_spi_chipsel() 101 cs = ms->message->spi->chip_select; in mpc52xx_spi_chipsel() 102 gpio_set_value(ms->gpio_cs[cs], value ? 0 : 1); in mpc52xx_spi_chipsel() 104 out_8(ms->regs + SPI_PORTDATA, value ? 0 : 0x08); in mpc52xx_spi_chipsel() 112 static void mpc52xx_spi_start_transfer(struct mpc52xx_spi *ms) in mpc52xx_spi_start_transfer() argument 114 ms->rx_buf = ms->transfer->rx_buf; in mpc52xx_spi_start_transfer() 115 ms->tx_buf = ms->transfer->tx_buf; in mpc52xx_spi_start_transfer() 116 ms->len = ms->transfer->len; in mpc52xx_spi_start_transfer() [all …]
|
D | spi-s3c64xx.c | 474 int ms; in wait_for_dma() local 477 ms = xfer->len * 8 * 1000 / sdd->cur_speed; in wait_for_dma() 478 ms += 10; /* some tolerance */ in wait_for_dma() 480 val = msecs_to_jiffies(ms) + 10; in wait_for_dma() 520 int ms; in wait_for_pio() local 523 ms = xfer->len * 8 * 1000 / sdd->cur_speed; in wait_for_pio() 524 ms += 10; /* some tolerance */ in wait_for_pio() 526 val = msecs_to_loops(ms); in wait_for_pio() 551 (loops ? ms : 0)); in wait_for_pio()
|
D | spi.c | 924 unsigned long ms = 1; in spi_transfer_one_message() local 955 ms = xfer->len * 8 * 1000 / xfer->speed_hz; in spi_transfer_one_message() 956 ms += ms + 100; /* some tolerance */ in spi_transfer_one_message() 958 ms = wait_for_completion_timeout(&master->xfer_completion, in spi_transfer_one_message() 959 msecs_to_jiffies(ms)); in spi_transfer_one_message() 962 if (ms == 0) { in spi_transfer_one_message()
|
/linux-4.4.14/drivers/scsi/ |
D | mesh.c | 185 static void mesh_done(struct mesh_state *ms, int start_next); 186 static void mesh_interrupt(struct mesh_state *ms); 187 static void cmd_complete(struct mesh_state *ms); 188 static void set_dma_cmds(struct mesh_state *ms, struct scsi_cmnd *cmd); 189 static void halt_dma(struct mesh_state *ms); 190 static void phase_mismatch(struct mesh_state *ms); 212 static void dlog(struct mesh_state *ms, char *fmt, int a) in dlog() argument 214 struct mesh_target *tp = &ms->tgts[ms->conn_tgt]; in dlog() 218 slp = &ms->log[ms->log_ix]; in dlog() 221 tlp->phase = (ms->msgphase << 4) + ms->phase; in dlog() [all …]
|
D | sg.c | 1021 unsigned int ms; in sg_ioctl() local 1041 ms = jiffies_to_msecs(jiffies); in sg_ioctl() 1043 (ms > srp->header.duration) ? in sg_ioctl() 1044 (ms - srp->header.duration) : 0; in sg_ioctl() 1292 unsigned int ms; in sg_rq_end_io() local 1315 ms = jiffies_to_msecs(jiffies); in sg_rq_end_io() 1316 srp->header.duration = (ms > srp->header.duration) ? in sg_rq_end_io() 1317 (ms - srp->header.duration) : 0; in sg_rq_end_io() 2602 unsigned int ms; in sg_proc_debug_helper() local 2645 ms = jiffies_to_msecs(jiffies); in sg_proc_debug_helper() [all …]
|
/linux-4.4.14/fs/dlm/ |
D | util.c | 86 void dlm_message_out(struct dlm_message *ms) in dlm_message_out() argument 88 header_out(&ms->m_header); in dlm_message_out() 90 ms->m_type = cpu_to_le32(ms->m_type); in dlm_message_out() 91 ms->m_nodeid = cpu_to_le32(ms->m_nodeid); in dlm_message_out() 92 ms->m_pid = cpu_to_le32(ms->m_pid); in dlm_message_out() 93 ms->m_lkid = cpu_to_le32(ms->m_lkid); in dlm_message_out() 94 ms->m_remid = cpu_to_le32(ms->m_remid); in dlm_message_out() 95 ms->m_parent_lkid = cpu_to_le32(ms->m_parent_lkid); in dlm_message_out() 96 ms->m_parent_remid = cpu_to_le32(ms->m_parent_remid); in dlm_message_out() 97 ms->m_exflags = cpu_to_le32(ms->m_exflags); in dlm_message_out() [all …]
|
D | requestqueue.c | 34 void dlm_add_requestqueue(struct dlm_ls *ls, int nodeid, struct dlm_message *ms) in dlm_add_requestqueue() argument 37 int length = ms->m_header.h_length - sizeof(struct dlm_message); in dlm_add_requestqueue() 47 memcpy(&e->request, ms, ms->m_header.h_length); in dlm_add_requestqueue() 68 struct dlm_message *ms; in dlm_process_requestqueue() local 82 ms = &e->request; in dlm_process_requestqueue() 86 ms->m_type, ms->m_header.h_nodeid, in dlm_process_requestqueue() 87 ms->m_lkid, ms->m_remid, ms->m_result, in dlm_process_requestqueue() 130 static int purge_request(struct dlm_ls *ls, struct dlm_message *ms, int nodeid) in purge_request() argument 132 uint32_t type = ms->m_type; in purge_request() 157 struct dlm_message *ms; in dlm_purge_requestqueue() local [all …]
|
D | lock.c | 89 struct dlm_message *ms); 90 static int receive_extralen(struct dlm_message *ms); 1512 struct dlm_message *ms) in _remove_from_waiters() argument 1551 is_overlap_cancel(lkb) && ms && !ms->m_result) { in _remove_from_waiters() 1569 lkb->lkb_id, ms ? ms->m_header.h_nodeid : 0, lkb->lkb_remid, in _remove_from_waiters() 1610 static int remove_from_waiters_ms(struct dlm_lkb *lkb, struct dlm_message *ms) in remove_from_waiters_ms() argument 1615 if (ms->m_flags != DLM_IFL_STUB_MS) in remove_from_waiters_ms() 1617 error = _remove_from_waiters(lkb, ms->m_type, ms); in remove_from_waiters_ms() 1618 if (ms->m_flags != DLM_IFL_STUB_MS) in remove_from_waiters_ms() 2029 struct dlm_message *ms) in set_lvb_lock_pc() argument [all …]
|
D | util.h | 16 void dlm_message_out(struct dlm_message *ms); 17 void dlm_message_in(struct dlm_message *ms);
|
D | requestqueue.h | 16 void dlm_add_requestqueue(struct dlm_ls *ls, int nodeid, struct dlm_message *ms);
|
D | lock.h | 19 void dlm_receive_message_saved(struct dlm_ls *ls, struct dlm_message *ms,
|
/linux-4.4.14/drivers/md/ |
D | dm-raid1.c | 44 struct mirror_set *ms; member 92 struct mirror_set *ms = context; in wakeup_mirrord() local 94 queue_work(ms->kmirrord_wq, &ms->kmirrord_work); in wakeup_mirrord() 99 struct mirror_set *ms = (struct mirror_set *) data; in delayed_wake_fn() local 101 clear_bit(0, &ms->timer_pending); in delayed_wake_fn() 102 wakeup_mirrord(ms); in delayed_wake_fn() 105 static void delayed_wake(struct mirror_set *ms) in delayed_wake() argument 107 if (test_and_set_bit(0, &ms->timer_pending)) in delayed_wake() 110 ms->timer.expires = jiffies + HZ / 5; in delayed_wake() 111 ms->timer.data = (unsigned long) ms; in delayed_wake() [all …]
|
/linux-4.4.14/Documentation/fb/ |
D | viafb.modes | 15 # Sync Width 3.813 us 0.064 ms 17 # Front Porch 0.636 us 0.318 ms 19 # Back Porch 1.907 us 1.048 ms 21 # Active Time 25.422 us 15.253 ms 23 # Blank Time 6.356 us 1.430 ms 40 # Sync Width 2.032 us 0.080 ms 42 # Front Porch 0.508 us 0.027 ms 44 # Back Porch 3.810 us 0.427 ms 46 # Active Time 20.317 us 12.800 ms 48 # Blank Time 6.349 us 0.533 ms [all …]
|
/linux-4.4.14/kernel/ |
D | module_signing.c | 43 struct module_signature ms; in mod_verify_sig() local 48 if (modlen <= sizeof(ms)) in mod_verify_sig() 51 memcpy(&ms, mod + (modlen - sizeof(ms)), sizeof(ms)); in mod_verify_sig() 52 modlen -= sizeof(ms); in mod_verify_sig() 54 sig_len = be32_to_cpu(ms.sig_len); in mod_verify_sig() 60 if (ms.id_type != PKEY_ID_PKCS7) { in mod_verify_sig() 65 if (ms.algo != 0 || in mod_verify_sig() 66 ms.hash != 0 || in mod_verify_sig() 67 ms.signer_len != 0 || in mod_verify_sig() 68 ms.key_id_len != 0 || in mod_verify_sig() [all …]
|
/linux-4.4.14/net/mac80211/ |
D | rc80211_minstrel_debugfs.c | 60 struct minstrel_debugfs_info *ms; in minstrel_stats_read() local 62 ms = file->private_data; in minstrel_stats_read() 63 return simple_read_from_buffer(buf, len, ppos, ms->buf, ms->len); in minstrel_stats_read() 77 struct minstrel_debugfs_info *ms; in minstrel_stats_open() local 81 ms = kmalloc(2048, GFP_KERNEL); in minstrel_stats_open() 82 if (!ms) in minstrel_stats_open() 85 file->private_data = ms; in minstrel_stats_open() 86 p = ms->buf; in minstrel_stats_open() 131 ms->len = p - ms->buf; in minstrel_stats_open() 133 WARN_ON(ms->len + sizeof(*ms) > 2048); in minstrel_stats_open() [all …]
|
D | rc80211_minstrel_ht_debugfs.c | 112 struct minstrel_debugfs_info *ms; in minstrel_ht_stats_open() local 124 ms = kmalloc(32768, GFP_KERNEL); in minstrel_ht_stats_open() 125 if (!ms) in minstrel_ht_stats_open() 128 file->private_data = ms; in minstrel_ht_stats_open() 129 p = ms->buf; in minstrel_ht_stats_open() 150 ms->len = p - ms->buf; in minstrel_ht_stats_open() 151 WARN_ON(ms->len + sizeof(*ms) > 32768); in minstrel_ht_stats_open() 260 struct minstrel_debugfs_info *ms; in minstrel_ht_stats_csv_open() local 272 ms = kmalloc(32768, GFP_KERNEL); in minstrel_ht_stats_csv_open() 274 if (!ms) in minstrel_ht_stats_csv_open() [all …]
|
/linux-4.4.14/mm/ |
D | sparse.c | 108 int __section_nr(struct mem_section* ms) in __section_nr() argument 118 if ((ms >= root) && (ms < (root + SECTIONS_PER_ROOT))) in __section_nr() 124 return (root_nr * SECTIONS_PER_ROOT) + (ms - root); in __section_nr() 178 struct mem_section *ms; in memory_present() local 183 ms = __nr_to_section(section); in memory_present() 184 if (!ms->section_mem_map) in memory_present() 185 ms->section_mem_map = sparse_encode_early_nid(nid) | in memory_present() 232 static int __meminit sparse_init_one_section(struct mem_section *ms, in sparse_init_one_section() argument 236 if (!present_section(ms)) in sparse_init_one_section() 239 ms->section_mem_map &= ~SECTION_MAP_MASK; in sparse_init_one_section() [all …]
|
D | page_ext.c | 268 struct mem_section *ms; in __free_page_ext() local 271 ms = __pfn_to_section(pfn); in __free_page_ext() 272 if (!ms || !ms->page_ext) in __free_page_ext() 274 base = ms->page_ext + pfn; in __free_page_ext() 276 ms->page_ext = NULL; in __free_page_ext()
|
D | memory_hotplug.c | 188 struct mem_section *ms; in register_page_bootmem_info_section() local 192 ms = __nr_to_section(section_nr); in register_page_bootmem_info_section() 195 memmap = sparse_decode_mem_map(ms->section_mem_map, section_nr); in register_page_bootmem_info_section() 222 struct mem_section *ms; in register_page_bootmem_info_section() local 229 ms = __nr_to_section(section_nr); in register_page_bootmem_info_section() 231 memmap = sparse_decode_mem_map(ms->section_mem_map, section_nr); in register_page_bootmem_info_section() 536 struct mem_section *ms; in find_smallest_section_pfn() local 539 ms = __pfn_to_section(start_pfn); in find_smallest_section_pfn() 541 if (unlikely(!valid_section(ms))) in find_smallest_section_pfn() 561 struct mem_section *ms; in find_biggest_section_pfn() local [all …]
|
D | sparse-vmemmap.c | 214 struct mem_section *ms; in sparse_mem_maps_populate_node() local 222 ms = __nr_to_section(pnum); in sparse_mem_maps_populate_node() 225 ms->section_mem_map = 0; in sparse_mem_maps_populate_node()
|
/linux-4.4.14/Documentation/devicetree/bindings/input/touchscreen/ |
D | brcm,iproc-touchscreen.txt | 14 - settling_timeout: The settling duration (in ms) is the amount of time 18 0 = 0.008 ms 19 1 = 0.01 ms 20 2 = 0.02 ms 21 3 = 0.04 ms 22 4 = 0.08 ms 23 5 = 0.16 ms 24 6 = 0.32 ms 25 7 = 0.64 ms 26 8 = 1.28 ms [all …]
|
D | stmpe.txt | 18 100 us, 3 -> 500 us, 4-> 1 ms, 5 -> 5 ms, 6 -> 10 ms, 7 -> 50 ms) recommended 21 -> 1 ms, 4 -> 5 ms, 5 -> 10 ms, 6 for 50 ms, 7 -> 100 ms) recommended is 2
|
D | tsc2005.txt | 15 - ti,esd-recovery-timeout-ms : integer, if the touchscreen does not respond after 39 ti,esd-recovery-timeout-ms = <8000>; 62 ti,esd-recovery-timeout-ms = <8000>;
|
/linux-4.4.14/arch/ia64/kernel/ |
D | mca.c | 896 const pal_min_state_area_t *ms = sos->pal_min_state; in finish_pt_regs() local 903 regs->cr_iip = ms->pmsa_iip; in finish_pt_regs() 904 regs->cr_ipsr = ms->pmsa_ipsr; in finish_pt_regs() 905 regs->cr_ifs = ms->pmsa_ifs; in finish_pt_regs() 907 regs->cr_iip = ms->pmsa_xip; in finish_pt_regs() 908 regs->cr_ipsr = ms->pmsa_xpsr; in finish_pt_regs() 909 regs->cr_ifs = ms->pmsa_xfs; in finish_pt_regs() 911 sos->iip = ms->pmsa_iip; in finish_pt_regs() 912 sos->ipsr = ms->pmsa_ipsr; in finish_pt_regs() 913 sos->ifs = ms->pmsa_ifs; in finish_pt_regs() [all …]
|
D | mca_asm.S | 409 #define ms r4 macro 457 add ms=MCA_SOS_OFFSET+8, r3 464 add temp2=temp2, ms // struct ia64_sal_os_state+8 on MCA or INIT stack 927 ld8 ms=[temp2] // pal_min_state, physical 929 dep temp1=-1,ms,62,2 // set region 6 1071 #undef ms
|
/linux-4.4.14/arch/mips/kernel/ |
D | spinlock_test.c | 93 struct spin_multi_state ms; in multi_get() local 96 ms.lock = __RAW_SPIN_LOCK_UNLOCKED("multi_get"); in multi_get() 97 ms.loops = 1000000; in multi_get() 99 atomic_set(&ms.start_wait, 2); in multi_get() 100 atomic_set(&ms.enter_wait, 2); in multi_get() 101 atomic_set(&ms.exit_wait, 2); in multi_get() 102 t1.state = &ms; in multi_get() 103 t2.state = &ms; in multi_get()
|
/linux-4.4.14/net/netfilter/ipvs/ |
D | ip_vs_sync.c | 303 sb_dequeue(struct netns_ipvs *ipvs, struct ipvs_master_sync_state *ms) in sb_dequeue() argument 308 if (list_empty(&ms->sync_queue)) { in sb_dequeue() 312 sb = list_entry(ms->sync_queue.next, struct ip_vs_sync_buff, in sb_dequeue() 315 ms->sync_queue_len--; in sb_dequeue() 316 if (!ms->sync_queue_len) in sb_dequeue() 317 ms->sync_queue_delay = 0; in sb_dequeue() 362 struct ipvs_master_sync_state *ms) in sb_queue_tail() argument 364 struct ip_vs_sync_buff *sb = ms->sync_buff; in sb_queue_tail() 368 ms->sync_queue_len < sysctl_sync_qlen_max(ipvs)) { in sb_queue_tail() 369 if (!ms->sync_queue_len) in sb_queue_tail() [all …]
|
/linux-4.4.14/drivers/scsi/bfa/ |
D | bfa_fcs_lport.c | 1477 struct bfa_fcs_lport_s *port = fdmi->ms->port; in bfa_fcs_lport_fdmi_sm_offline() 1517 struct bfa_fcs_lport_s *port = fdmi->ms->port; in bfa_fcs_lport_fdmi_sm_sending_rhba() 1542 struct bfa_fcs_lport_s *port = fdmi->ms->port; in bfa_fcs_lport_fdmi_sm_rhba() 1591 struct bfa_fcs_lport_s *port = fdmi->ms->port; in bfa_fcs_lport_fdmi_sm_rhba_retry() 1622 struct bfa_fcs_lport_s *port = fdmi->ms->port; in bfa_fcs_lport_fdmi_sm_sending_rprt() 1647 struct bfa_fcs_lport_s *port = fdmi->ms->port; in bfa_fcs_lport_fdmi_sm_rprt() 1694 struct bfa_fcs_lport_s *port = fdmi->ms->port; in bfa_fcs_lport_fdmi_sm_rprt_retry() 1725 struct bfa_fcs_lport_s *port = fdmi->ms->port; in bfa_fcs_lport_fdmi_sm_sending_rpa() 1750 struct bfa_fcs_lport_s *port = fdmi->ms->port; in bfa_fcs_lport_fdmi_sm_rpa() 1795 struct bfa_fcs_lport_s *port = fdmi->ms->port; in bfa_fcs_lport_fdmi_sm_rpa_retry() [all …]
|
D | bfa_fcs.h | 92 struct bfa_fcs_lport_ms_s *ms; /* parent ms */ member 115 struct bfa_fcs_lport_ms_s ms; /* MS component of port */ member 164 #define BFA_FCS_GET_MS_FROM_PORT(port) (&port->port_topo.pfab.ms) 165 #define BFA_FCS_GET_FDMI_FROM_PORT(port) (&port->port_topo.pfab.ms.fdmi) 317 void bfa_fcs_lport_fdmi_init(struct bfa_fcs_lport_ms_s *ms); 318 void bfa_fcs_lport_fdmi_offline(struct bfa_fcs_lport_ms_s *ms); 319 void bfa_fcs_lport_fdmi_online(struct bfa_fcs_lport_ms_s *ms);
|
/linux-4.4.14/Documentation/scheduler/ |
D | sched-bwc.txt | 31 cpu.cfs_period_us=100ms 40 The minimum quota allowed for the quota or period is 1ms. There is also an 59 /proc/sys/kernel/sched_cfs_bandwidth_slice_us (default=5ms) 97 If period is 250ms and quota is also 250ms, the group will get 98 1 CPU worth of runtime every 250ms. 100 # echo 250000 > cpu.cfs_quota_us /* quota = 250ms */ 101 # echo 250000 > cpu.cfs_period_us /* period = 250ms */ 105 With 500ms period and 1000ms quota, the group can get 2 CPUs worth of 106 runtime every 500ms. 108 # echo 1000000 > cpu.cfs_quota_us /* quota = 1000ms */ [all …]
|
D | sched-deadline.txt | 193 Task_1=(50ms,50ms,100ms) and Task_2=(10ms,100ms,100ms). 197 its response time cannot be larger than 50ms + 10ms = 60ms) even if 497 executes for 10ms every 100ms. The second one, scheduled at SCHED_FIFO 498 priority 10, executes for 20ms every 150ms. The test will run for a total 520 of 10ms every 100ms (note that parameters are expressed in microseconds). 614 /* This creates a 10ms/30ms reservation */
|
/linux-4.4.14/drivers/net/ethernet/qlogic/qlcnic/ |
D | qlcnic_hw.c | 1316 struct qlcnic_ms_reg_ctrl *ms) in qlcnic_set_ms_controls() argument 1318 ms->control = QLCNIC_MS_CTRL; in qlcnic_set_ms_controls() 1319 ms->low = QLCNIC_MS_ADDR_LO; in qlcnic_set_ms_controls() 1320 ms->hi = QLCNIC_MS_ADDR_HI; in qlcnic_set_ms_controls() 1322 ms->wd[0] = QLCNIC_MS_WRTDATA_LO; in qlcnic_set_ms_controls() 1323 ms->rd[0] = QLCNIC_MS_RDDATA_LO; in qlcnic_set_ms_controls() 1324 ms->wd[1] = QLCNIC_MS_WRTDATA_HI; in qlcnic_set_ms_controls() 1325 ms->rd[1] = QLCNIC_MS_RDDATA_HI; in qlcnic_set_ms_controls() 1326 ms->wd[2] = QLCNIC_MS_WRTDATA_ULO; in qlcnic_set_ms_controls() 1327 ms->wd[3] = QLCNIC_MS_WRTDATA_UHI; in qlcnic_set_ms_controls() [all …]
|
/linux-4.4.14/Documentation/devicetree/bindings/input/ |
D | lpc32xx-key.txt | 11 - nxp,debounce-delay-ms: Debounce delay in ms 12 - nxp,scan-delay-ms: Repeated scan period in ms 28 nxp,debounce-delay-ms = <3>; 29 nxp,scan-delay-ms = <34>;
|
D | nvidia,tegra20-kbc.txt | 29 - nvidia,debounce-delay-ms: delay in milliseconds per row scan for debouncing 30 - nvidia,repeat-delay-ms: delay in milliseconds before repeat starts 45 nvidia,debounce-delay-ms = <640>;
|
D | input-reset.txt | 18 timeout-ms: duration keys must be pressed together in milliseconds before 29 timeout-ms = <3000>;
|
D | gpio-matrix-keypad.txt | 24 - debounce-delay-ms: debounce interval in milliseconds 31 debounce-delay-ms = <5>;
|
D | pxa27x-keypad.txt | 10 interval for matrix key. The value is in binary number of 2ms
|
/linux-4.4.14/drivers/staging/lustre/include/linux/libcfs/ |
D | libcfs_fail.h | 46 int __cfs_fail_timeout_set(__u32 id, __u32 value, int ms, int set); 125 static inline int cfs_fail_timeout_set(__u32 id, __u32 value, int ms, int set) in cfs_fail_timeout_set() argument 128 return __cfs_fail_timeout_set(id, value, ms, set); in cfs_fail_timeout_set() 136 #define CFS_FAIL_TIMEOUT_MS(id, ms) \ argument 137 cfs_fail_timeout_set(id, 0, ms, CFS_FAIL_LOC_NOSET) 144 #define CFS_FAIL_TIMEOUT_MS_ORSET(id, value, ms) \ argument 145 cfs_fail_timeout_set(id, value, ms, CFS_FAIL_LOC_ORSET)
|
/linux-4.4.14/Documentation/ABI/testing/ |
D | procfs-diskstats | 14 7 - time spent reading (ms) 18 11 - time spent writing (ms) 20 13 - time spent doing I/Os (ms) 21 14 - weighted time spent doing I/Os (ms)
|
D | sysfs-class-led-driver-lm3533 | 28 1 - 262 ms 29 2 - 524 ms
|
D | sysfs-driver-hid-picolcd | 24 Reading/Writing: It is expressed in ms and permitted range is 25 0..30000ms.
|
D | sysfs-class-uwb_rc-wusbhc | 18 within 'wusb_trust_timeout' ms are considered to have 20 4000 ms is the value required by the WUSB
|
D | sysfs-driver-xen-blkback | 17 removing 5% of max_persistent_grants every 100ms.
|
D | debugfs-driver-genwqe | 70 Description: Default VF timeout 250ms. Testing might require 1000ms.
|
D | sysfs-block | 10 4 - time spent reading (ms) 14 8 - time spent writing (ms) 16 10 - time spent doing I/Os (ms) 17 11 - weighted time spent doing I/Os (ms)
|
D | sysfs-class-uwb_rc | 19 (~197 ms) as required by the specification. 107 The time (using the radio controllers internal 1 ms
|
D | sysfs-tty | 90 Show the closing delay time for this port in ms. 99 Show the close wait time for this port in ms.
|
D | sysfs-class-backlight-driver-adp8870 | 37 This value is updated every 80 ms (when the light sensor
|
/linux-4.4.14/fs/minix/ |
D | inode.c | 124 struct minix_super_block * ms; in minix_remount() local 127 ms = sbi->s_ms; in minix_remount() 131 if (ms->s_state & MINIX_VALID_FS || in minix_remount() 136 ms->s_state = sbi->s_mount_state; in minix_remount() 141 sbi->s_mount_state = ms->s_state; in minix_remount() 142 ms->s_state &= ~MINIX_VALID_FS; in minix_remount() 162 struct minix_super_block *ms; in minix_fill_super() local 183 ms = (struct minix_super_block *) bh->b_data; in minix_fill_super() 184 sbi->s_ms = ms; in minix_fill_super() 186 sbi->s_mount_state = ms->s_state; in minix_fill_super() [all …]
|
/linux-4.4.14/tools/power/cpupower/bench/ |
D | README-BENCH | 41 This part of the configuration file will create 25ms load/sleep turns, 48 Will increase load and sleep time by 25ms 5 times. 50 25ms load/sleep time repeated 20 times (cycles). 51 50ms load/sleep time repeated 20 times (cycles). 53 100ms load/sleep time repeated 20 times (cycles). 70 25 ms | 25 ms | 1 71 50 ms | 50 ms | 2 73 For example if ondemand governor is configured to have a 50ms 87 50 50 50 50ms ->time
|
/linux-4.4.14/arch/m68k/fpsp040/ |
D | sgetem.S | 94 movel LOCAL_HI(%a0),%d0 |load ms mant in d0 97 movel %d0,LOCAL_HI(%a0) |put ms mant back on stack 106 | ms mantissa part in d0 111 tstl %d0 |if any bits set in ms mant 113 | ;else no bits set in ms mant 119 exg %d0,%d1 |shift ls mant to ms mant 121 lsll %d3,%d0 |shift first 1 to integer bit in ms mant 128 lsll %d3,%d0 |shift ms mant until j-bit is set 134 | ;be shifted into ms mant 135 orl %d6,%d0 |shift the ls mant bits into the ms mant
|
D | x_store.S | 118 | extended -> |s| exp | |1| ms mant | | ls mant | 154 movel LOCAL_HI(%a1),%d1 |get ms mantissa 155 bfextu %d1{#1:#20},%d1 |get upper 20 bits of ms 156 orl %d1,%d0 |put these bits in ms word of double 158 movel LOCAL_HI(%a1),%d1 |get ms mantissa
|
D | round.S | 299 | FP_SCR1 = exponent, ms mantissa part, ls mantissa part 327 lsll %d0,%d1 |shift ms mant by count 332 orl %d6,%d1 |shift the ls mant bits into the ms mant 365 movel LOCAL_HI(%a0),%d0 |d0 has ms mant 375 | ;be shifted into ms mant 376 orl %d1,%d0 |shift the ls mant bits into the ms mant 377 movel %d0,LOCAL_HI(%a0) |store ms mant into memory 382 | We get here if ms mant was = 0, and we assume ls mant has bits 388 subw #32,%d0 |account for ms mant being all zeros 391 lsll %d7,%d1 |shift first 1 to integer bit in ms mant [all …]
|
/linux-4.4.14/kernel/time/ |
D | timer_stats.c | 284 unsigned long ms; in tstats_show() local 299 ms = period.tv_nsec / 1000000; in tstats_show() 302 seq_printf(m, "Sample period: %ld.%03ld s\n", period.tv_sec, ms); in tstats_show() 325 ms += period.tv_sec * 1000; in tstats_show() 326 if (!ms) in tstats_show() 327 ms = 1; in tstats_show() 331 events, events * 1000 / ms, in tstats_show() 332 (events * 1000000 / ms) % 1000); in tstats_show()
|
/linux-4.4.14/drivers/net/wireless/brcm80211/brcmsmac/ |
D | brcms_trace_brcmsmac.h | 43 __field(uint, ms) 48 __entry->ms = t->ms; 54 __entry->ms, __entry->set, __entry->periodic
|
D | mac80211_if.h | 41 uint ms; member 107 void brcms_add_timer(struct brcms_timer *timer, uint ms, int periodic);
|
D | phy_shim.c | 74 wlapi_add_timer(struct wlapi_timer *t, uint ms, int periodic) in wlapi_add_timer() argument 76 brcms_add_timer((struct brcms_timer *)t, ms, periodic); in wlapi_add_timer()
|
D | phy_shim.h | 137 void wlapi_add_timer(struct wlapi_timer *t, uint ms, int periodic);
|
/linux-4.4.14/tools/perf/ui/browsers/ |
D | annotate.c | 261 struct map_symbol *ms = ab->b.priv; in annotate_browser__draw_current_jump() local 262 struct symbol *sym = ms->sym; in annotate_browser__draw_current_jump() 381 struct map_symbol *ms = browser->b.priv; in annotate_browser__calc_percent() local 382 struct symbol *sym = ms->sym; in annotate_browser__calc_percent() 487 struct map_symbol *ms = browser->b.priv; in annotate_browser__callq() local 491 .map = ms->map, in annotate_browser__callq() 492 .addr = map__objdump_2mem(ms->map, dl->ops.target.addr), in annotate_browser__callq() 519 sym_title(ms->sym, ms->map, title, sizeof(title)); in annotate_browser__callq() 528 struct map_symbol *ms = browser->b.priv; in annotate_browser__find_offset() local 529 struct symbol *sym = ms->sym; in annotate_browser__find_offset() [all …]
|
D | hists.c | 297 struct map_symbol *ms = browser->selection; in hist_browser__toggle_fold() local 298 struct callchain_list *cl = container_of(ms, struct callchain_list, ms); in hist_browser__toggle_fold() 301 if (!he || !ms) in hist_browser__toggle_fold() 304 if (ms == &he->ms) in hist_browser__toggle_fold() 533 bool show_annotated = browser->show_dso && chain->ms.sym && symbol__annotation(chain->ms.sym)->src; in hist_browser__show_callchain_entry() 538 browser->selection = &chain->ms; in hist_browser__show_callchain_entry() 771 browser->selection = &entry->ms; in hist_browser__show_entry() 1441 struct map_symbol ms; member 1458 notes = symbol__annotation(act->ms.sym); in do_annotate() 1463 err = map_symbol__tui_annotate(&act->ms, evsel, browser->hbt); in do_annotate() [all …]
|
/linux-4.4.14/drivers/mmc/core/ |
D | core.h | 57 static inline void mmc_delay(unsigned int ms) in mmc_delay() argument 59 if (ms < 1000 / HZ) { in mmc_delay() 61 mdelay(ms); in mmc_delay() 63 msleep(ms); in mmc_delay()
|
/linux-4.4.14/Documentation/hwmon/ |
D | ds1621 | 92 DS1621 - 750ms (older devices may take up to 1000ms) 93 DS1625 - 500ms 94 DS1631 - 93ms..750ms for 9..12 bits resolution, respectively. 95 DS1721 - 93ms..750ms for 9..12 bits resolution, respectively. 96 DS1731 - 93ms..750ms for 9..12 bits resolution, respectively. 99 On the DS1621, internal access to non-volatile registers may last for 10ms 187 -> 93.75ms = minimum conversion time
|
D | htu21 | 39 bit for temperature, which results in typical measurement times of 11 ms for 40 humidity and 44 ms for temperature. To keep self heating below 0.1 degree
|
D | sht21 | 43 bit for temperature, which results in typical measurement times of 22 ms for 44 humidity and 66 ms for temperature. To keep self heating below 0.1 degree
|
D | ina2xx | 63 lower limit of the update_interval is 2 ms, the upper limit is 2253 ms.
|
D | zl6100 | 100 bus accesses. According to Intersil, the minimum interval is 2 ms, though 1 ms
|
D | sht15 | 42 sensors. Disabling the reload of those coefficients allows saving 10ms for each
|
/linux-4.4.14/Documentation/leds/ |
D | ledtrig-oneshot.txt | 28 Default to 100 ms. 32 Default to 100 ms. 35 ms, then blink off for delay_off ms, leaving the LED normally off. If 36 set to 1, blink off for delay_off ms, then blink on for delay_on ms,
|
/linux-4.4.14/Documentation/devicetree/bindings/sound/ |
D | nau8825.txt | 64 0 - 30 ms 65 1 - 50 ms 66 2 - 100 ms 67 3 - 30 ms 69 - nuvoton,jack-insert-debounce: number from 0 to 7 that sets debounce time to 2^(n+2) ms 70 - nuvoton,jack-eject-debounce: number from 0 to 7 that sets debounce time to 2^(n+2) ms
|
D | da7219.txt | 45 - dlg,micbias-pulse-time : Mic bias higher voltage pulse duration (ms) 46 - dlg,btn-cfg : Periodic button press measurements for 4-pole jack (ms) 50 - dlg,jack-ins-deb : Debounce time for jack insertion (ms) 54 - dlg,jack-rem-deb : Debounce time for jack removal (ms)
|
D | ti,tas5086.txt | 20 When not specified, the hardware default of 1300ms
|
/linux-4.4.14/tools/perf/util/ |
D | callchain.c | 413 call->ms.sym = cursor_node->sym; in fill_node() 414 call->ms.map = cursor_node->map; in fill_node() 442 if (cnode->ms.sym && sym && in match_chain() 444 return cnode->ms.sym->start - sym->start; in match_chain() 650 list->ms.map, list->ms.sym); in merge_chain_branch() 778 if (cl->ms.sym) { in callchain_list__sym_name() 780 cl->ms.map && !cl->srcline) in callchain_list__sym_name() 781 cl->srcline = get_srcline(cl->ms.map->dso, in callchain_list__sym_name() 782 map__rip_2objdump(cl->ms.map, in callchain_list__sym_name() 784 cl->ms.sym, false); in callchain_list__sym_name() [all …]
|
D | sort.c | 149 return _sort__dso_cmp(right->ms.map, left->ms.map); in sort__dso_cmp() 167 return _hist_entry__dso_snprintf(he->ms.map, bf, size, width); in hist_entry__dso_snprintf() 203 if (!left->ms.sym && !right->ms.sym) in sort__sym_cmp() 216 return _sort__sym_cmp(left->ms.sym, right->ms.sym); in sort__sym_cmp() 222 if (!left->ms.sym || !right->ms.sym) in sort__sym_sort() 223 return cmp_null(left->ms.sym, right->ms.sym); in sort__sym_sort() 225 return strcmp(right->ms.sym->name, left->ms.sym->name); in sort__sym_sort() 270 return _hist_entry__sym_snprintf(he->ms.map, he->ms.sym, he->ip, in hist_entry__sym_snprintf() 288 if (!left->ms.map) in sort__srcline_cmp() 291 struct map *map = left->ms.map; in sort__srcline_cmp() [all …]
|
D | hist.c | 69 if (h->ms.sym) { in hists__calc_col_len() 70 symlen = h->ms.sym->namelen + 4; in hists__calc_col_len() 84 if (h->ms.map) { in hists__calc_col_len() 85 len = dso__name_len(h->ms.map->dso); in hists__calc_col_len() 339 map__get(he->ms.map); in hist_entry__new() 349 map__zput(he->ms.map); in hist_entry__new() 428 if (he->ms.map != entry->ms.map) { in hists__findnew_entry() 429 map__put(he->ms.map); in hists__findnew_entry() 430 he->ms.map = map__get(entry->ms.map); in hists__findnew_entry() 468 .ms = { in __hists__add_entry() [all …]
|
D | hist.h | 313 int map_symbol__tui_annotate(struct map_symbol *ms, struct perf_evsel *evsel, 334 static inline int map_symbol__tui_annotate(struct map_symbol *ms __maybe_unused, in map_symbol__tui_annotate()
|
D | sort.h | 89 struct map_symbol ms; member
|
D | callchain.h | 99 struct map_symbol ms; member
|
/linux-4.4.14/drivers/staging/dgnc/ |
D | dgnc_utils.c | 13 int dgnc_ms_sleep(ulong ms) in dgnc_ms_sleep() argument 16 schedule_timeout((ms * HZ) / 1000); in dgnc_ms_sleep()
|
D | dgnc_utils.h | 4 int dgnc_ms_sleep(ulong ms);
|
/linux-4.4.14/drivers/staging/lustre/lustre/libcfs/ |
D | fail.c | 124 int __cfs_fail_timeout_set(__u32 id, __u32 value, int ms, int set) in __cfs_fail_timeout_set() argument 131 id, ms); in __cfs_fail_timeout_set() 133 schedule_timeout(cfs_time_seconds(ms) / 1000); in __cfs_fail_timeout_set()
|
/linux-4.4.14/Documentation/devicetree/bindings/serial/ |
D | pl011.txt | 32 - poll-rate-ms: 34 default 100ms. 35 - poll-timeout-ms: 37 3000ms.
|
/linux-4.4.14/Documentation/video4linux/cx2341x/ |
D | fw-upload.txt | 25 - Sleep for 10ms. 27 - Sleep for 10ms. 34 - Sleep for 10ms. 39 - Sleep for 512ms. (600ms is recommended)
|
/linux-4.4.14/drivers/md/bcache/ |
D | io.c | 125 int ms = us / 1024; in bch_bbio_count_io_errors() local 128 ms = min(ms, CONGESTED_MAX + congested); in bch_bbio_count_io_errors() 129 atomic_sub(ms, &c->congested); in bch_bbio_count_io_errors()
|
D | sysfs.c | 53 sysfs_time_stats_attribute(btree_gc, sec, ms); 55 sysfs_time_stats_attribute(btree_sort, ms, us); 56 sysfs_time_stats_attribute(btree_read, ms, us); 532 sysfs_print_time_stats(&c->btree_gc_time, btree_gc, sec, ms); in SHOW() 534 sysfs_print_time_stats(&c->sort.time, btree_sort, ms, us); in SHOW() 535 sysfs_print_time_stats(&c->btree_read_time, btree_read, ms, us); in SHOW() 706 sysfs_time_stats_attribute_list(btree_gc, sec, ms) 708 sysfs_time_stats_attribute_list(btree_sort, ms, us) 709 sysfs_time_stats_attribute_list(btree_read, ms, us)
|
/linux-4.4.14/drivers/media/platform/vivid/ |
D | vivid-rds-gen.c | 76 data[1].lsb |= (rds->ta << 4) | (rds->ms << 3); in vivid_rds_generate() 122 data[1].lsb |= (rds->ta << 4) | (rds->ms << 3); in vivid_rds_generate() 129 data[3].lsb |= (rds->ta << 4) | (rds->ms << 3); in vivid_rds_generate() 155 rds->ms = true; in vivid_rds_gen_fill()
|
D | vivid-rds-gen.h | 44 bool ms; member
|
D | vivid-radio-common.c | 90 rds->ms = dev->radio_tx_rds_ms->cur.val; in vivid_radio_rds_init() 105 v4l2_ctrl_s_ctrl(dev->radio_rx_rds_ms, rds->ms); in vivid_radio_rds_init()
|
D | vivid-kthread-cap.c | 426 unsigned ms; in vivid_fillbuff() local 495 ms = dev->ms_vid_cap; in vivid_fillbuff() 498 (ms / (60 * 60 * 1000)) % 24, in vivid_fillbuff() 499 (ms / (60 * 1000)) % 60, in vivid_fillbuff() 500 (ms / 1000) % 60, in vivid_fillbuff() 501 ms % 1000, in vivid_fillbuff()
|
/linux-4.4.14/arch/h8300/ |
D | Makefile | 14 cflags-$(CONFIG_CPU_H8S) := -ms 15 aflags-$(CONFIG_CPU_H8S) := -ms -Wa,--mach=h8300s
|
/linux-4.4.14/drivers/clk/rockchip/ |
D | clk.h | 240 #define COMPOSITE(_id, cname, pnames, f, mo, ms, mw, mf, ds, dw,\ argument 250 .mux_shift = ms, \ 298 #define COMPOSITE_NODIV(_id, cname, pnames, f, mo, ms, mw, mf, \ argument 308 .mux_shift = ms, \ 316 #define COMPOSITE_NOGATE(_id, cname, pnames, f, mo, ms, mw, mf, \ argument 326 .mux_shift = ms, \ 335 #define COMPOSITE_NOGATE_DIVTBL(_id, cname, pnames, f, mo, ms, \ argument 345 .mux_shift = ms, \
|
/linux-4.4.14/tools/perf/tests/ |
D | hists_link.c | 174 he->thread, he->ms.map, he->ms.sym)) { in __validate_match() 226 he->thread, he->ms.map, he->ms.sym) && in __validate_link() 229 he->thread, he->ms.map, he->ms.sym)) { in __validate_link()
|
D | hists_common.c | 178 he->ms.map->dso->short_name, in print_hists_in() 179 he->ms.sym->name, he->stat.period); in print_hists_in() 205 he->ms.map->dso->short_name, in print_hists_out() 206 he->ms.sym->name, he->stat.period, in print_hists_out()
|
D | hists_cumulate.c | 154 #define DSO(he) (he->ms.map->dso->short_name) 155 #define SYM(he) (he->ms.sym->name) 159 #define CDSO(cl) (cl->ms.map->dso->short_name) 160 #define CSYM(cl) (cl->ms.sym->name)
|
/linux-4.4.14/tools/perf/ |
D | builtin-top.c | 97 if (!he || !he->ms.sym) in perf_top__parse_source() 100 sym = he->ms.sym; in perf_top__parse_source() 101 map = he->ms.map; in perf_top__parse_source() 142 struct symbol *sym = he->ms.sym; in __zero_source_counters() 181 if (he == NULL || he->ms.sym == NULL || in perf_top__record_precise_ip() 183 top->sym_filter_entry->ms.sym != he->ms.sym) && use_browser != 1)) in perf_top__record_precise_ip() 186 sym = he->ms.sym; in perf_top__record_precise_ip() 192 ip = he->ms.map->map_ip(he->ms.map, ip); in perf_top__record_precise_ip() 205 if (err == -ERANGE && !he->ms.map->erange_warned) in perf_top__record_precise_ip() 206 ui__warn_map_erange(he->ms.map, sym, ip); in perf_top__record_precise_ip() [all …]
|
D | builtin-annotate.c | 117 return symbol__tty_annotate(he->ms.sym, he->ms.map, evsel, in hist_entry__tty_annotate() 132 if (he->ms.sym == NULL || he->ms.map->dso->annotate_warned) in hists__find_annotations() 135 notes = symbol__annotation(he->ms.sym); in hists__find_annotations()
|
/linux-4.4.14/drivers/scsi/aic94xx/ |
D | aic94xx_sds.c | 683 static int asd_validate_ms(struct asd_manuf_sec *ms) in asd_validate_ms() argument 685 if (ms->sig[0] != 'S' || ms->sig[1] != 'M') { in asd_validate_ms() 687 ms->sig[0], ms->sig[1]); in asd_validate_ms() 690 if (ms->maj != 0) { in asd_validate_ms() 692 ms->maj); in asd_validate_ms() 695 ms->offs_next = le16_to_cpu((__force __le16) ms->offs_next); in asd_validate_ms() 696 ms->chksum = le16_to_cpu((__force __le16) ms->chksum); in asd_validate_ms() 697 ms->size = le16_to_cpu((__force __le16) ms->size); in asd_validate_ms() 699 if (asd_calc_flash_chksum((u16 *)ms, ms->size/2)) { in asd_validate_ms() 707 struct asd_manuf_sec *ms) in asd_ms_get_sas_addr() argument [all …]
|
/linux-4.4.14/Documentation/timers/ |
D | timers-howto.txt | 67 SLEEPING FOR ~USECS OR SMALL MSECS ( 10us - 20ms): 70 - Why not msleep for (1ms - 20ms)? 74 will often sleep longer (~20 ms actual sleep for any 75 value given in the 1~20ms range). In many cases this 96 SLEEPING FOR LARGER MSECS ( 10ms+ )
|
/linux-4.4.14/drivers/media/dvb-frontends/ |
D | horus3a.c | 181 u32 ms = 0; in horus3a_set_params() local 204 ms = DIV_ROUND_CLOSEST((frequency * mixdiv) / 2, 1000); in horus3a_set_params() 205 if (ms > 0x7FFF) { /* 15 bit */ in horus3a_set_params() 320 data[0] = (u8)((ms >> 7) & 0xFF); in horus3a_set_params() 321 data[1] = (u8)((ms << 1) & 0xFF); in horus3a_set_params() 337 priv->frequency = ms * 2 * 1000 / mixdiv; in horus3a_set_params()
|
/linux-4.4.14/Documentation/devicetree/bindings/display/panel/ |
D | samsung,s6e8aa0.txt | 12 - power-on-delay: delay after turning regulators on [ms] 13 - reset-delay: delay after reset sequence [ms] 14 - init-delay: delay after initialization sequence [ms]
|
D | samsung,ld9040.txt | 14 - power-on-delay: delay after turning regulators on [ms] 15 - reset-delay: delay after reset sequence [ms]
|
/linux-4.4.14/drivers/staging/rtl8712/ |
D | osdep_service.h | 76 static inline void sleep_schedulable(int ms) in sleep_schedulable() argument 80 delta = msecs_to_jiffies(ms);/*(ms)*/ in sleep_schedulable()
|
/linux-4.4.14/Documentation/usb/ |
D | acm.txt | 78 E: Ad=81(I) Atr=03(Int.) MxPS= 8 Ivl=255ms 87 E: Ad=85(I) Atr=02(Bulk) MxPS= 64 Ivl= 0ms 88 E: Ad=04(O) Atr=02(Bulk) MxPS= 64 Ivl= 0ms 89 E: Ad=81(I) Atr=03(Int.) MxPS= 16 Ivl=128ms 92 E: Ad=81(I) Atr=03(Int.) MxPS= 16 Ivl=128ms 94 E: Ad=85(I) Atr=02(Bulk) MxPS= 64 Ivl= 0ms 95 E: Ad=04(O) Atr=02(Bulk) MxPS= 64 Ivl= 0ms
|
D | gadget_serial.txt | 204 E: Ad=83(I) Atr=03(Int.) MxPS= 8 Ivl=32ms 206 E: Ad=81(I) Atr=02(Bulk) MxPS= 512 Ivl=0ms 207 E: Ad=02(O) Atr=02(Bulk) MxPS= 512 Ivl=0ms 236 E: Ad=81(I) Atr=02(Bulk) MxPS= 512 Ivl=0ms 237 E: Ad=02(O) Atr=02(Bulk) MxPS= 512 Ivl=0ms
|
D | proc_usb_info.txt | 315 E: Ad=81(I) Atr=03(Int.) MxPS= 8 Ivl=255ms 322 E: Ad=81(I) Atr=03(Int.) MxPS= 1 Ivl=255ms 329 E: Ad=81(I) Atr=03(Int.) MxPS= 3 Ivl= 10ms 338 E: Ad=81(I) Atr=02(Bulk) MxPS= 64 Ivl= 16ms 339 E: Ad=01(O) Atr=02(Bulk) MxPS= 16 Ivl= 16ms 340 E: Ad=82(I) Atr=03(Int.) MxPS= 8 Ivl= 8ms
|
D | dwc3.txt | 8 As it turns out some DWC3-commands ~1ms to complete. Currently we spin
|
/linux-4.4.14/Documentation/devicetree/bindings/mmc/ |
D | pxa-mmc.txt | 10 - marvell,detect-delay-ms: sets the detection delay timeout in ms.
|
/linux-4.4.14/Documentation/device-mapper/ |
D | delay.txt | 18 # Create device delaying rw operation for 500ms 24 # Create device delaying only write operation for 500ms and
|
D | statistics.txt | 76 that took 0-10 ms to complete, b is the number of requests 77 that took 10-20 ms to complete, c is the number of requests 78 that took 20-30 ms to complete and d is the number of 79 requests that took more than 30 ms to complete.
|
/linux-4.4.14/Documentation/devicetree/bindings/gpio/ |
D | gpio-poweroff.txt | 12 triggering positive edge triggered power off. After a delay of 100ms, 14 triggering negative edge triggered power off. After another 100ms 16 the CPU still running after a 3000ms delay, a WARN_ON(1) is emitted.
|
D | gpio-restart.txt | 40 - active-delay: Delay (default 100) to wait after driving gpio active [ms] 41 - inactive-delay: Delay (default 100) to wait after driving gpio inactive [ms] 43 sequence [ms]
|
/linux-4.4.14/drivers/staging/rtl8723au/include/ |
D | rtw_pwrctrl.h | 207 #define _rtw_set_pwr_state_check_timer(pwrctrlpriv, ms) \ argument 209 msecs_to_jiffies(ms))) 233 void rtw_set_ips_deny23a(struct rtw_adapter *padapter, u32 ms);
|
D | rtw_mlme_ext.h | 579 #define set_survey_timer(mlmeext, ms) \ argument 581 mod_timer(&mlmeext->survey_timer, jiffies + msecs_to_jiffies(ms)); 583 #define set_link_timer(mlmeext, ms) \ argument 585 mod_timer(&mlmeext->link_timer, jiffies + msecs_to_jiffies(ms));
|
/linux-4.4.14/arch/powerpc/kernel/ |
D | rtas.c | 477 unsigned int ms = 0; in rtas_busy_delay_time() local 480 ms = 1; in rtas_busy_delay_time() 484 for (ms = 1; order > 0; order--) in rtas_busy_delay_time() 485 ms *= 10; in rtas_busy_delay_time() 488 return ms; in rtas_busy_delay_time() 495 unsigned int ms; in rtas_busy_delay() local 498 ms = rtas_busy_delay_time(status); in rtas_busy_delay() 499 if (ms && need_resched()) in rtas_busy_delay() 500 msleep(ms); in rtas_busy_delay() 502 return ms; in rtas_busy_delay()
|
/linux-4.4.14/Documentation/devicetree/bindings/power_supply/ |
D | lp8727_charger.txt | 10 - debounce-ms: interrupt debounce time. (u32) 29 debounce-ms = <300>;
|
D | charger-manager.txt | 42 cm-fullbatt-vchkdrop-ms = <30000>;
|
/linux-4.4.14/sound/core/seq/ |
D | seq_midi.c | 280 struct seq_midisynth *msynth, *ms; in snd_seq_midisynth_probe() local 343 ms = &msynth[p]; in snd_seq_midisynth_probe() 345 if (snd_seq_midisynth_new(ms, card, device, p) < 0) in snd_seq_midisynth_probe() 389 pcallbacks.private_data = ms; in snd_seq_midisynth_probe() 400 ms->seq_client = client->seq_client; in snd_seq_midisynth_probe() 401 ms->seq_port = port->addr.port; in snd_seq_midisynth_probe()
|
/linux-4.4.14/drivers/pinctrl/sh-pfc/ |
D | sh_pfc.h | 194 #define PINMUX_IPSR_NOGM(ispr, fn, ms) \ argument 195 PINMUX_DATA(fn##_MARK, FN_##fn, FN_##ms) 196 #define PINMUX_IPSR_NOFN(ipsr, fn, ms) \ argument 197 PINMUX_DATA(fn##_MARK, FN_##ipsr, FN_##ms) 198 #define PINMUX_IPSR_MSEL(ipsr, fn, ms) \ argument 199 PINMUX_DATA(fn##_MARK, FN_##ms, FN_##ipsr, FN_##fn)
|
/linux-4.4.14/Documentation/input/ |
D | cma3000_d0x.txt | 109 X: (X & 0x70) * 100 ms (MDTMR) 110 (X & 0x0F) * 2.5 ms (FFTMR 400 Hz) 111 (X & 0x0F) * 10 ms (FFTMR 100 Hz)
|
D | iforce-protocol.txt | 80 03-04 Duration of effect (little endian encoding, in ms) 92 0c-0d Delay before execution of effect (little endian encoding, in ms) 101 02-03 Duration of attack (little endian encoding, in ms) 119 05-06 Period (little endian encoding, in ms)
|
D | xpad.txt | 198 E: Ad=81(I) Atr=03(Int.) MxPS= 32 Ivl= 10ms 199 E: Ad=02(O) Atr=03(Int.) MxPS= 32 Ivl= 10ms 209 E: Ad=82(I) Atr=03(Int.) MxPS= 32 Ivl=4ms 210 E: Ad=02(O) Atr=03(Int.) MxPS= 32 Ivl=4ms
|
/linux-4.4.14/drivers/input/serio/ |
D | i8042-sparcio.h | 71 struct platform_device *ms = of_find_device_by_node(dp); in sparc_i8042_probe() local 72 unsigned int irq = ms->archdata.irqs[0]; in sparc_i8042_probe()
|
/linux-4.4.14/drivers/mtd/tests/ |
D | speedtest.c | 183 long ms; in calc_speed() local 185 ms = ktime_ms_delta(finish, start); in calc_speed() 186 if (ms == 0) in calc_speed() 189 do_div(k, ms); in calc_speed()
|
D | torturetest.c | 334 long ms; in tort_init() local 337 ms = ktime_ms_delta(finish, start); in tort_init() 340 erase_cycles, ms, ms / 1000); in tort_init()
|
/linux-4.4.14/drivers/net/wimax/i2400m/ |
D | control.c | 388 const struct i2400m_tlv_media_status *ms) in i2400m_report_tlv_media_status() argument 393 enum i2400m_media_status status = le32_to_cpu(ms->media_status); in i2400m_report_tlv_media_status() 395 d_fnstart(3, dev, "(i2400m %p ms %p [%u])\n", i2400m, ms, status); in i2400m_report_tlv_media_status() 417 i2400m, ms, status); in i2400m_report_tlv_media_status() 437 const struct i2400m_tlv_media_status *ms; in i2400m_report_state_parse_tlv() local 458 if (0 == i2400m_tlv_match(tlv, I2400M_TLV_MEDIA_STATUS, sizeof(*ms))) { in i2400m_report_state_parse_tlv() 459 ms = container_of(tlv, typeof(*ms), hdr); in i2400m_report_state_parse_tlv() 461 tag, le32_to_cpu(ms->media_status)); in i2400m_report_state_parse_tlv() 462 i2400m_report_tlv_media_status(i2400m, ms); in i2400m_report_state_parse_tlv()
|
D | i2400m.h | 958 void __i2400m_msleep(unsigned ms) in __i2400m_msleep() argument 962 msleep(ms); in __i2400m_msleep()
|
/linux-4.4.14/arch/x86/kernel/ |
D | tsc.c | 450 static unsigned long pit_calibrate_tsc(u32 latch, unsigned long ms, int loopmin) in pit_calibrate_tsc() argument 498 do_div(delta, ms); in pit_calibrate_tsc() 669 unsigned long flags, latch, ms, fast_calibrate; in native_calibrate_tsc() local 712 ms = CAL_MS; in native_calibrate_tsc() 726 tsc_pit_khz = pit_calibrate_tsc(latch, ms, loopmin); in native_calibrate_tsc() 773 ms = CAL2_MS; in native_calibrate_tsc()
|
/linux-4.4.14/Documentation/devicetree/bindings/staging/iio/adc/ |
D | mxs-lradc.txt | 18 2 kHz and its default is 2 (= 1 ms) 21 10 (= 5 ms)
|
/linux-4.4.14/drivers/ssb/ |
D | ssb_private.h | 227 extern u32 ssb_chipco_watchdog_timer_set_ms(struct bcm47xx_wdt *wdt, u32 ms); 250 extern u32 ssb_extif_watchdog_timer_set_ms(struct bcm47xx_wdt *wdt, u32 ms); 258 u32 ms) in ssb_extif_watchdog_timer_set_ms() argument
|
D | driver_extif.c | 122 u32 ssb_extif_watchdog_timer_set_ms(struct bcm47xx_wdt *wdt, u32 ms) in ssb_extif_watchdog_timer_set_ms() argument 125 u32 ticks = (SSB_EXTIF_WATCHDOG_CLK / 1000) * ms; in ssb_extif_watchdog_timer_set_ms()
|
/linux-4.4.14/arch/arm/mach-pxa/include/mach/ |
D | regs-lcd.h | 196 #define SMART_DELAY(ms) (SMART_CMD_DELAY | ((ms) & 0xff)) argument
|
/linux-4.4.14/include/linux/ceph/ |
D | libceph.h | 141 #define from_msgr(ms) container_of(ms, struct ceph_client, msgr) argument
|
/linux-4.4.14/drivers/staging/rts5208/ |
D | Makefile | 6 rtsx_card.o general.o sd.o xd.o ms.o spi.o trace.o
|
/linux-4.4.14/drivers/leds/ |
D | leds-asic3.c | 28 #define MS_TO_CLK(ms) DIV_ROUND_CLOSEST(((ms)*1024), 32000) argument
|
/linux-4.4.14/drivers/clocksource/ |
D | tegra20_timer.c | 120 u32 ms = readl(rtc_base + RTC_MILLISECONDS); in tegra_rtc_read_ms() local 122 return (u64)s * MSEC_PER_SEC + ms; in tegra_rtc_read_ms()
|
/linux-4.4.14/tools/perf/Documentation/ |
D | perf-timechart.txt | 71 to see very small and fast IO. It's possible to specify ms or us 73 Default value is 1ms. 77 It's possible to specify ms or us suffix to specify time in
|
D | perf-trace.txt | 82 Show only events that had a duration greater than N.M ms. 126 This option sets the time out limit. The default value is 500 ms. 161 …1416.547 ( 0.000 ms): python/20235 majfault [CRYPTO_push_info_+0x0] => /lib/x86_64-linux-gnu/libcr…
|
D | itrace.txt | 18 ms milliseconds
|
/linux-4.4.14/include/linux/ |
D | ktime.h | 290 static inline ktime_t ms_to_ktime(u64 ms) in ms_to_ktime() argument 294 return ktime_add_ms(ktime_zero, ms); in ms_to_ktime()
|
D | memory_hotplug.h | 278 extern void sparse_remove_one_section(struct zone *zone, struct mem_section *ms);
|
/linux-4.4.14/drivers/usb/storage/ |
D | scsiglue.c | 520 unsigned short ms; in max_sectors_store() local 522 if (sscanf(buf, "%hu", &ms) > 0) { in max_sectors_store() 523 blk_queue_max_hw_sectors(sdev->request_queue, ms); in max_sectors_store()
|
/linux-4.4.14/Documentation/ |
D | IRQ-affinity.txt | 33 round-trip min/avg/max = 0.1/0.1/0.4 ms 50 round-trip min/avg/max = 0.1/0.5/585.4 ms
|
D | workqueue.txt | 262 w0 burns CPU for 5ms then sleeps for 10ms then burns CPU for 5ms 263 again before finishing. w1 and w2 burn CPU for 5ms then sleep for 264 10ms.
|
/linux-4.4.14/arch/s390/kernel/vdso32/ |
D | clock_gettime.S | 44 2: ms %r0,__VDSO_TK_MULT(%r5) /* * tk->mult */ 107 12: ms %r0,__VDSO_TK_MULT(%r5) /* * tk->mult */
|
D | gettimeofday.S | 39 3: ms %r0,__VDSO_TK_MULT(%r5) /* * tk->mult */
|
/linux-4.4.14/drivers/tty/hvc/ |
D | hvsi_lib.c | 247 static void maybe_msleep(unsigned long ms) in maybe_msleep() argument 251 mdelay(ms); in maybe_msleep() 253 msleep(ms); in maybe_msleep()
|
/linux-4.4.14/drivers/cpufreq/ |
D | pmac32-cpufreq.c | 89 static inline void local_delay(unsigned long ms) in local_delay() argument 92 mdelay(ms); in local_delay() 94 msleep(ms); in local_delay()
|
/linux-4.4.14/Documentation/ABI/stable/ |
D | sysfs-bus-w1 | 7 100 ms - hence the tens-to-hundreds milliseconds scan intervals
|
/linux-4.4.14/arch/arm/boot/dts/ |
D | phy3250.dts | 182 nxp,debounce-delay-ms = <3>; 183 nxp,scan-delay-ms = <34>;
|
D | armada-39x.dtsi | 164 timeout-ms = <1000>; 175 timeout-ms = <1000>; 186 timeout-ms = <1000>; 197 timeout-ms = <1000>;
|
D | armada-370-xp.dtsi | 176 timeout-ms = <1000>; 186 timeout-ms = <1000>;
|
/linux-4.4.14/drivers/staging/rtl8188eu/include/ |
D | rtw_pwrctrl.h | 235 #define _rtw_set_pwr_state_check_timer(pwrctrlpriv, ms) \ argument 237 jiffies + msecs_to_jiffies(ms))
|
D | rtw_mlme_ext.h | 586 #define set_survey_timer(mlmeext, ms) \ argument 588 msecs_to_jiffies(ms)) 590 #define set_link_timer(mlmeext, ms) \ argument 592 msecs_to_jiffies(ms))
|
/linux-4.4.14/sound/isa/wavefront/ |
D | wavefront_synth.c | 1210 num_samples = (1<<(header->hdr.ms.NumberOfSamples&7)); in wavefront_send_multisample() 1211 msample_hdr[2] = (unsigned char) header->hdr.ms.NumberOfSamples; in wavefront_send_multisample() 1215 header->hdr.ms.NumberOfSamples, in wavefront_send_multisample() 1220 i, header->hdr.ms.SampleNumber[i]); in wavefront_send_multisample() 1221 munge_int32 (header->hdr.ms.SampleNumber[i], in wavefront_send_multisample() 1263 header->hdr.ms.NumberOfSamples = log_ns[0]; in wavefront_fetch_multisample() 1287 header->hdr.ms.SampleNumber[i] = in wavefront_fetch_multisample() 1291 i, header->hdr.ms.SampleNumber[i]); in wavefront_fetch_multisample()
|
/linux-4.4.14/arch/s390/include/asm/ |
D | nmi.h | 47 u64 ms : 1; /* 21 psw mask and key validity */ member
|
/linux-4.4.14/drivers/video/fbdev/aty/ |
D | radeonfb.h | 373 void _radeon_msleep(struct radeonfb_info *rinfo, unsigned long ms); 476 #define radeon_msleep(ms) _radeon_msleep(rinfo,ms) argument
|
/linux-4.4.14/drivers/gpu/drm/via/ |
D | via_video.c | 86 (fx->ms / 10) * (HZ / 100), *lock != fx->val); in via_decoder_futex()
|
/linux-4.4.14/Documentation/devicetree/bindings/i2c/ |
D | i2c-gpio.txt | 13 - i2c-gpio,timeout-ms: timeout to get data
|
/linux-4.4.14/arch/x86/kernel/cpu/ |
D | amd.c | 896 u32 ms; in cpu_has_amd_erratum() local 913 ms = (cpu->x86_model << 4) | cpu->x86_mask; in cpu_has_amd_erratum() 916 (ms >= AMD_MODEL_RANGE_START(range)) && in cpu_has_amd_erratum() 917 (ms <= AMD_MODEL_RANGE_END(range))) in cpu_has_amd_erratum()
|
D | perf_event_intel_rapl.c | 595 u64 ms; in rapl_cpu_prepare() local 620 ms = (1000 / (2 * 100)) * (1ULL << (32 - rapl_hw_unit[0] - 1)); in rapl_cpu_prepare() 622 ms = 2; in rapl_cpu_prepare() 624 pmu->timer_interval = ms_to_ktime(ms); in rapl_cpu_prepare()
|
/linux-4.4.14/Documentation/devicetree/bindings/mfd/ |
D | stmpe.txt | 15 - st,autosleep-timeout : Valid entries (ms); 4, 16, 32, 64, 128, 256, 512 and 1024
|
D | tc3589x.txt | 50 - debounce-delay-ms : debounce interval in milliseconds 84 debounce-delay-ms = <4>;
|
D | twl4030-audio.txt | 15 from the start of the recorded sample (in ms)
|
/linux-4.4.14/Documentation/block/ |
D | deadline-iosched.txt | 17 read_expire (in ms) 27 write_expire (in ms)
|
D | cfq-iosched.txt | 61 value of this is 248ms. 66 value of this is 124ms. In case to favor synchronous requests over asynchronous 82 Default value for this parameter is 8ms. 108 Default value for target_latency is 300ms. 113 default value is 40ms. 132 value is 100ms. 269 100ms each. If a REQ_NOIDLE request comes in, it will be scheduled
|
/linux-4.4.14/Documentation/devicetree/bindings/extcon/ |
D | extcon-palmas.txt | 17 - debounce-delay-ms: debounce delay for GPIO ID pin in milliseconds.
|
/linux-4.4.14/drivers/media/pci/solo6x10/ |
D | solo6x10-core.c | 286 unsigned long ms; in p2m_timeout_store() local 287 int ret = kstrtoul(buf, 10, &ms); in p2m_timeout_store() 289 if (ret < 0 || ms > 200) in p2m_timeout_store() 291 solo_dev->p2m_jiffies = msecs_to_jiffies(ms); in p2m_timeout_store()
|
/linux-4.4.14/tools/perf/ui/gtk/ |
D | annotate.c | 233 return symbol__gtk_annotate(he->ms.sym, he->ms.map, evsel, hbt); in hist_entry__gtk_annotate()
|
/linux-4.4.14/Documentation/sound/alsa/ |
D | emu10k1-jack.txt | 18 channels. With a post 2.6.9 Linux kernel, latencies down to 64 (1.33 ms) or 19 even 32 (0.66ms) frames should work well.
|
D | timestamping.txt | 169 Example 1 shows that the timestamp at the DMA level is close to 1ms 180 shows how compensating for the delay exposes a 1ms accuracy (due to 183 Example 3: DMA timestamp, no compensation for delay, delta of ~5ms 193 Example 4: DMA timestamp, compensation for delay, delay of ~1ms
|
/linux-4.4.14/Documentation/devicetree/bindings/iio/adc/ |
D | qcom,spmi-vadc.txt | 80 2ms * (value - 10) otherwise. 82 900 us and 1, 2, 4, 6, 8, 10 ms
|
/linux-4.4.14/drivers/hwmon/ |
D | applesmc.c | 624 int ms, ret; in applesmc_init_smcreg() local 626 for (ms = 0; ms < INIT_TIMEOUT_MSECS; ms += INIT_WAIT_MSECS) { in applesmc_init_smcreg() 629 if (ms) in applesmc_init_smcreg() 630 pr_info("init_smcreg() took %d ms\n", ms); in applesmc_init_smcreg()
|
/linux-4.4.14/drivers/staging/lustre/lustre/include/ |
D | obd_support.h | 483 #define OBD_FAIL_TIMEOUT_MS(id, ms) CFS_FAIL_TIMEOUT_MS(id, ms) argument
|
/linux-4.4.14/drivers/video/fbdev/omap2/dss/ |
D | Kconfig | 125 bool "Sleep 20ms after VENC reset" 128 There is a 20ms sleep after VENC reset which seemed to fix the
|
/linux-4.4.14/include/linux/regulator/ |
D | consumer.h | 209 int regulator_disable_deferred(struct regulator *regulator, int ms); 390 int ms) in regulator_disable_deferred() argument
|
/linux-4.4.14/drivers/net/ethernet/chelsio/cxgb4vf/ |
D | t4vf_hw.c | 124 int i, ms, delay_idx; in t4vf_wr_mbox_core() local 172 ms = delay[0]; in t4vf_wr_mbox_core() 174 for (i = 0; i < FW_CMD_MAX_TIMEOUT; i += ms) { in t4vf_wr_mbox_core() 176 ms = delay[delay_idx]; in t4vf_wr_mbox_core() 179 msleep(ms); in t4vf_wr_mbox_core() 181 mdelay(ms); in t4vf_wr_mbox_core()
|
/linux-4.4.14/fs/isofs/ |
D | inode.c | 177 isofs_hashi_common(struct qstr *qstr, int ms) in isofs_hashi_common() argument 186 if (ms) { in isofs_hashi_common() 206 const struct qstr *name, int ms, int ci) in isofs_dentry_cmp_common() argument 213 if (ms) { in isofs_dentry_cmp_common() 249 isofs_hash_common(struct qstr *qstr, int ms) in isofs_hash_common() argument 256 if (ms) { in isofs_hash_common()
|
/linux-4.4.14/sound/ppc/ |
D | Kconfig | 48 int "Startup delay time in ms"
|
/linux-4.4.14/Documentation/devicetree/bindings/usb/ |
D | pxa-usb.txt | 20 - "marvell,power_on_delay" Power On to Power Good time - in ms.
|
/linux-4.4.14/Documentation/devicetree/bindings/thermal/ |
D | st-thermal.txt | 31 defined, a polling delay of 1000ms will be used to read the
|
/linux-4.4.14/drivers/nvme/host/ |
D | pci.c | 569 integrity.tuple_size = ns->ms; in nvme_init_integrity() 810 if (ns->ms) { in nvme_submit_iod() 857 if (ns && ns->ms && !blk_integrity_rq(req)) { in nvme_queue_rq() 858 if (!(ns->pi_type && ns->ms == 8) && in nvme_queue_rq() 1829 meta_len = (io.nblocks + 1) * ns->ms; in nvme_submit_io() 2056 old_ms = ns->ms; in nvme_revalidate_disk() 2059 ns->ms = le16_to_cpu(id->lbaf[lbaf].ms); in nvme_revalidate_disk() 2060 ns->ext = ns->ms && (id->flbas & NVME_NS_FLBAS_META_EXT); in nvme_revalidate_disk() 2071 pi_type = ns->ms == sizeof(struct t10_pi_tuple) ? in nvme_revalidate_disk() 2076 ns->ms != old_ms || in nvme_revalidate_disk() [all …]
|
D | nvme.h | 89 u16 ms; member
|
/linux-4.4.14/Documentation/devicetree/bindings/leds/backlight/ |
D | lp855x.txt | 33 /* Heavy smoothing, 24ms ramp time step */
|
/linux-4.4.14/drivers/bcma/ |
D | driver_chipcommon.c | 67 u32 ms) in bcma_chipco_watchdog_timer_set_ms_wdt() argument 72 ticks = bcma_chipco_watchdog_timer_set(cc, cc->ticks_per_ms * ms); in bcma_chipco_watchdog_timer_set_ms_wdt()
|
/linux-4.4.14/Documentation/isdn/ |
D | README.audio | 67 y = 0 ... 255 tone duration in units of 5ms. 68 Not for I4L soft decode (default 8, 40ms)
|
/linux-4.4.14/drivers/staging/media/lirc/ |
D | lirc_sasem.c | 569 long ms; in incoming_packet() local 588 ms = (tv.tv_sec - context->presstime.tv_sec) * 1000 + in incoming_packet() 603 if ((ms < 250) && (context->codesaved != 0)) { in incoming_packet()
|
/linux-4.4.14/Documentation/devicetree/bindings/arm/omap/ |
D | timer.txt | 16 ti,am335x-timer-1ms (applicable to AM335x devices)
|
/linux-4.4.14/drivers/net/ethernet/cavium/liquidio/ |
D | octeon_device.c | 1270 u32 ms; in octeon_wait_for_ddr_init() local 1278 for (ms = 0; (ret != 0) && ((*timeout == 0) || (ms <= *timeout)); in octeon_wait_for_ddr_init() 1279 ms += HZ / 10) { in octeon_wait_for_ddr_init()
|
/linux-4.4.14/Documentation/cpu-freq/ |
D | governors.txt | 134 If CONFIG_NO_HZ_COMMON is set, the limit is 10ms fixed. 137 HZ=1000: min=20000us (20ms) 138 HZ=250: min=80000us (80ms) 139 HZ=100: min=200000us (200ms)
|
/linux-4.4.14/drivers/s390/scsi/ |
D | zfcp_fc.h | 199 struct zfcp_fc_wka_port ms; member
|
/linux-4.4.14/include/uapi/drm/ |
D | via_drm.h | 153 __u32 ms; member
|
/linux-4.4.14/arch/powerpc/boot/dts/ |
D | ac14xx.dts | 359 debounce-delay-ms = <5>; 363 col-switch-delay-ms = <200>;
|
/linux-4.4.14/drivers/i2c/busses/ |
D | i2c-diolan-u2c.c | 268 static int diolan_set_clock_synch_timeout(struct i2c_diolan_u2c *dev, int ms) in diolan_set_clock_synch_timeout() argument 270 int to_val = ms * 10; in diolan_set_clock_synch_timeout()
|
/linux-4.4.14/Documentation/devicetree/bindings/spi/ |
D | spi_pl022.txt | 13 - pl022,autosuspend-delay : delay in ms following transfer completion before
|
/linux-4.4.14/arch/s390/kernel/ |
D | nmi.c | 233 if (!mci.ms || !mci.pm || !mci.ia) in s390_validate_registers()
|
/linux-4.4.14/arch/arm/mach-w90x900/ |
D | cpu.c | 58 static DEFINE_SUBCLK(ms, 0);
|
/linux-4.4.14/drivers/tty/ |
D | mxser.c | 1514 struct mxser_mstatus ms, __user *msu = argp; in mxser_ioctl_special() local 1519 memset(&ms, 0, sizeof(ms)); in mxser_ioctl_special() 1528 ms.cflag = ip->normal_termios.c_cflag; in mxser_ioctl_special() 1530 ms.cflag = tty->termios.c_cflag; in mxser_ioctl_special() 1536 ms.dcd = 1; in mxser_ioctl_special() 1538 ms.dsr = 1; in mxser_ioctl_special() 1540 ms.cts = 1; in mxser_ioctl_special() 1543 if (copy_to_user(msu, &ms, sizeof(ms))) in mxser_ioctl_special()
|
/linux-4.4.14/tools/perf/ui/stdio/ |
D | hist.c | 77 rem_hits.ms.sym = rem_sq_bracket; in init_rem_hits() 477 if (h->ms.map == NULL && verbose > 1) { in hists__fprintf()
|
/linux-4.4.14/drivers/staging/rtl8723au/core/ |
D | rtw_pwrctrl.c | 468 inline void rtw_set_ips_deny23a(struct rtw_adapter *padapter, u32 ms) in rtw_set_ips_deny23a() argument 472 pwrpriv->ips_deny_time = jiffies + msecs_to_jiffies(ms); in rtw_set_ips_deny23a()
|
/linux-4.4.14/drivers/block/paride/ |
D | pcd.c | 642 static int pcd_probe(struct pcd_unit *cd, int ms, char *id) in pcd_probe() argument 644 if (ms == -1) { in pcd_probe() 649 cd->drive = ms; in pcd_probe()
|
/linux-4.4.14/Documentation/networking/ |
D | z8530drv.txt | 450 The delay (in units of 10 ms) after keying of the 472 expressed in units of 10 ms. About 200-300 ms (value 20-30) 483 sufficient, e.g. 40ms at 1200 baud. (value 4) 484 The value of this parameter is in 10 ms units. 509 The value of this parameter is in 10 ms units.
|