/linux-4.1.27/fs/dlm/ |
D | recoverd.c | 33 static int enable_locking(struct dlm_ls *ls, uint64_t seq) in enable_locking() argument 37 down_write(&ls->ls_recv_active); in enable_locking() 39 spin_lock(&ls->ls_recover_lock); in enable_locking() 40 if (ls->ls_recover_seq == seq) { in enable_locking() 41 set_bit(LSFL_RUNNING, &ls->ls_flags); in enable_locking() 43 up_write(&ls->ls_in_recovery); in enable_locking() 44 clear_bit(LSFL_RECOVER_LOCK, &ls->ls_flags); in enable_locking() 47 spin_unlock(&ls->ls_recover_lock); in enable_locking() 49 up_write(&ls->ls_recv_active); in enable_locking() 53 static int ls_recover(struct dlm_ls *ls, struct dlm_recover *rv) in ls_recover() argument [all …]
|
D | lockspace.c | 35 static ssize_t dlm_control_store(struct dlm_ls *ls, const char *buf, size_t len) in dlm_control_store() argument 43 ls = dlm_find_lockspace_local(ls->ls_local_handle); in dlm_control_store() 44 if (!ls) in dlm_control_store() 49 dlm_ls_stop(ls); in dlm_control_store() 52 dlm_ls_start(ls); in dlm_control_store() 57 dlm_put_lockspace(ls); in dlm_control_store() 61 static ssize_t dlm_event_store(struct dlm_ls *ls, const char *buf, size_t len) in dlm_event_store() argument 63 int rc = kstrtoint(buf, 0, &ls->ls_uevent_result); in dlm_event_store() 67 set_bit(LSFL_UEVENT_WAIT, &ls->ls_flags); in dlm_event_store() 68 wake_up(&ls->ls_uevent_wait); in dlm_event_store() [all …]
|
D | recover.c | 44 int dlm_wait_function(struct dlm_ls *ls, int (*testfn) (struct dlm_ls *ls)) in dlm_wait_function() argument 50 rv = wait_event_timeout(ls->ls_wait_general, in dlm_wait_function() 51 testfn(ls) || dlm_recovery_stopped(ls), in dlm_wait_function() 57 if (dlm_recovery_stopped(ls)) { in dlm_wait_function() 58 log_debug(ls, "dlm_wait_function aborted"); in dlm_wait_function() 72 uint32_t dlm_recover_status(struct dlm_ls *ls) in dlm_recover_status() argument 75 spin_lock(&ls->ls_recover_lock); in dlm_recover_status() 76 status = ls->ls_recover_status; in dlm_recover_status() 77 spin_unlock(&ls->ls_recover_lock); in dlm_recover_status() 81 static void _set_recover_status(struct dlm_ls *ls, uint32_t status) in _set_recover_status() argument [all …]
|
D | member.c | 29 void dlm_slot_save(struct dlm_ls *ls, struct dlm_rcom *rc, in dlm_slot_save() argument 41 void dlm_slots_copy_out(struct dlm_ls *ls, struct dlm_rcom *rc) in dlm_slots_copy_out() argument 51 for (i = 0; i < ls->ls_slots_size; i++) { in dlm_slots_copy_out() 52 slot = &ls->ls_slots[i]; in dlm_slots_copy_out() 63 static void log_slots(struct dlm_ls *ls, uint32_t gen, int num_slots, in log_slots() argument 95 log_rinfo(ls, "generation %u slots %d%s", gen, num_slots, line); in log_slots() 98 int dlm_slots_copy_in(struct dlm_ls *ls) in dlm_slots_copy_in() argument 101 struct dlm_rcom *rc = ls->ls_recover_buf; in dlm_slots_copy_in() 112 if (gen <= ls->ls_generation) { in dlm_slots_copy_in() 113 log_error(ls, "dlm_slots_copy_in gen %u old %u", in dlm_slots_copy_in() [all …]
|
D | rcom.c | 27 static int rcom_response(struct dlm_ls *ls) in rcom_response() argument 29 return test_bit(LSFL_RCOM_READY, &ls->ls_flags); in rcom_response() 32 static int create_rcom(struct dlm_ls *ls, int to_nodeid, int type, int len, in create_rcom() argument 51 rc->rc_header.h_lockspace = ls->ls_global_id; in create_rcom() 58 spin_lock(&ls->ls_recover_lock); in create_rcom() 59 rc->rc_seq = ls->ls_recover_seq; in create_rcom() 60 spin_unlock(&ls->ls_recover_lock); in create_rcom() 67 static void send_rcom(struct dlm_ls *ls, struct dlm_mhandle *mh, in send_rcom() argument 74 static void set_rcom_status(struct dlm_ls *ls, struct rcom_status *rs, in set_rcom_status() argument 84 static void set_rcom_config(struct dlm_ls *ls, struct rcom_config *rf, in set_rcom_config() argument [all …]
|
D | requestqueue.c | 34 void dlm_add_requestqueue(struct dlm_ls *ls, int nodeid, struct dlm_message *ms) in dlm_add_requestqueue() argument 45 e->recover_seq = ls->ls_recover_seq & 0xFFFFFFFF; in dlm_add_requestqueue() 49 mutex_lock(&ls->ls_requestqueue_mutex); in dlm_add_requestqueue() 50 list_add_tail(&e->list, &ls->ls_requestqueue); in dlm_add_requestqueue() 51 mutex_unlock(&ls->ls_requestqueue_mutex); in dlm_add_requestqueue() 65 int dlm_process_requestqueue(struct dlm_ls *ls) in dlm_process_requestqueue() argument 71 mutex_lock(&ls->ls_requestqueue_mutex); in dlm_process_requestqueue() 74 if (list_empty(&ls->ls_requestqueue)) { in dlm_process_requestqueue() 75 mutex_unlock(&ls->ls_requestqueue_mutex); in dlm_process_requestqueue() 79 e = list_entry(ls->ls_requestqueue.next, struct rq_entry, list); in dlm_process_requestqueue() [all …]
|
D | dir.c | 35 int dlm_hash2nodeid(struct dlm_ls *ls, uint32_t hash) in dlm_hash2nodeid() argument 39 if (ls->ls_num_nodes == 1) in dlm_hash2nodeid() 42 node = (hash >> 16) % ls->ls_total_weight; in dlm_hash2nodeid() 43 return ls->ls_node_array[node]; in dlm_hash2nodeid() 52 void dlm_recover_dir_nodeid(struct dlm_ls *ls) in dlm_recover_dir_nodeid() argument 56 down_read(&ls->ls_root_sem); in dlm_recover_dir_nodeid() 57 list_for_each_entry(r, &ls->ls_root_list, res_root_list) { in dlm_recover_dir_nodeid() 58 r->res_dir_nodeid = dlm_hash2nodeid(ls, r->res_hash); in dlm_recover_dir_nodeid() 60 up_read(&ls->ls_root_sem); in dlm_recover_dir_nodeid() 63 int dlm_recover_directory(struct dlm_ls *ls) in dlm_recover_directory() argument [all …]
|
D | lock.h | 17 void dlm_dump_rsb_name(struct dlm_ls *ls, char *name, int len); 19 void dlm_receive_message_saved(struct dlm_ls *ls, struct dlm_message *ms, 26 void dlm_scan_rsbs(struct dlm_ls *ls); 27 int dlm_lock_recovery_try(struct dlm_ls *ls); 28 void dlm_unlock_recovery(struct dlm_ls *ls); 29 void dlm_scan_waiters(struct dlm_ls *ls); 30 void dlm_scan_timeout(struct dlm_ls *ls); 31 void dlm_adjust_timeouts(struct dlm_ls *ls); 32 int dlm_master_lookup(struct dlm_ls *ls, int nodeid, char *name, int len, 38 void dlm_recover_purge(struct dlm_ls *ls); [all …]
|
D | recover.h | 17 int dlm_wait_function(struct dlm_ls *ls, int (*testfn) (struct dlm_ls *ls)); 18 uint32_t dlm_recover_status(struct dlm_ls *ls); 19 void dlm_set_recover_status(struct dlm_ls *ls, uint32_t status); 20 int dlm_recover_members_wait(struct dlm_ls *ls); 21 int dlm_recover_directory_wait(struct dlm_ls *ls); 22 int dlm_recover_locks_wait(struct dlm_ls *ls); 23 int dlm_recover_done_wait(struct dlm_ls *ls); 24 int dlm_recover_masters(struct dlm_ls *ls); 25 int dlm_recover_master_reply(struct dlm_ls *ls, struct dlm_rcom *rc); 26 int dlm_recover_locks(struct dlm_ls *ls); [all …]
|
D | lock.c | 91 static void do_purge(struct dlm_ls *ls, int nodeid, int pid); 205 static inline void dlm_lock_recovery(struct dlm_ls *ls) in dlm_lock_recovery() argument 207 down_read(&ls->ls_in_recovery); in dlm_lock_recovery() 210 void dlm_unlock_recovery(struct dlm_ls *ls) in dlm_unlock_recovery() argument 212 up_read(&ls->ls_in_recovery); in dlm_unlock_recovery() 215 int dlm_lock_recovery_try(struct dlm_ls *ls) in dlm_lock_recovery_try() argument 217 return down_read_trylock(&ls->ls_in_recovery); in dlm_lock_recovery_try() 351 struct dlm_ls *ls = r->res_ls; in put_rsb() local 354 spin_lock(&ls->ls_rsbtbl[bucket].lock); in put_rsb() 356 spin_unlock(&ls->ls_rsbtbl[bucket].lock); in put_rsb() [all …]
|
D | member.h | 16 int dlm_ls_stop(struct dlm_ls *ls); 17 int dlm_ls_start(struct dlm_ls *ls); 18 void dlm_clear_members(struct dlm_ls *ls); 19 void dlm_clear_members_gone(struct dlm_ls *ls); 20 int dlm_recover_members(struct dlm_ls *ls, struct dlm_recover *rv,int *neg_out); 21 int dlm_is_removed(struct dlm_ls *ls, int nodeid); 22 int dlm_is_member(struct dlm_ls *ls, int nodeid); 24 void dlm_slot_save(struct dlm_ls *ls, struct dlm_rcom *rc, 26 void dlm_slots_copy_out(struct dlm_ls *ls, struct dlm_rcom *rc); 27 int dlm_slots_copy_in(struct dlm_ls *ls); [all …]
|
D | ast.c | 56 struct dlm_ls *ls = lkb->lkb_resource->res_ls; in dlm_add_lkb_callback() local 81 log_debug(ls, "skip %x add bast %llu mode %d " in dlm_add_lkb_callback() 103 log_error(ls, "no callbacks %x %llu flags %x mode %d sb %d %x", in dlm_add_lkb_callback() 114 int dlm_rem_lkb_callback(struct dlm_ls *ls, struct dlm_lkb *lkb, in dlm_rem_lkb_callback() argument 149 log_debug(ls, "skip %x bast %llu mode %d " in dlm_rem_lkb_callback() 178 struct dlm_ls *ls = lkb->lkb_resource->res_ls; in dlm_add_cb() local 201 if (test_bit(LSFL_CB_DELAY, &ls->ls_flags)) { in dlm_add_cb() 202 mutex_lock(&ls->ls_cb_mutex); in dlm_add_cb() 203 list_add(&lkb->lkb_cb_list, &ls->ls_cb_delay); in dlm_add_cb() 204 mutex_unlock(&ls->ls_cb_mutex); in dlm_add_cb() [all …]
|
D | debug_fs.c | 426 struct dlm_ls *ls = seq->private; in table_seq_start() local 436 if (bucket >= ls->ls_rsbtbl_size) in table_seq_start() 453 tree = toss ? &ls->ls_rsbtbl[bucket].toss : &ls->ls_rsbtbl[bucket].keep; in table_seq_start() 455 spin_lock(&ls->ls_rsbtbl[bucket].lock); in table_seq_start() 463 spin_unlock(&ls->ls_rsbtbl[bucket].lock); in table_seq_start() 468 spin_unlock(&ls->ls_rsbtbl[bucket].lock); in table_seq_start() 481 if (bucket >= ls->ls_rsbtbl_size) { in table_seq_start() 485 tree = toss ? &ls->ls_rsbtbl[bucket].toss : &ls->ls_rsbtbl[bucket].keep; in table_seq_start() 487 spin_lock(&ls->ls_rsbtbl[bucket].lock); in table_seq_start() 494 spin_unlock(&ls->ls_rsbtbl[bucket].lock); in table_seq_start() [all …]
|
D | user.c | 178 struct dlm_ls *ls; in dlm_user_add_ast() local 186 ls = lkb->lkb_resource->res_ls; in dlm_user_add_ast() 187 mutex_lock(&ls->ls_clear_proc_locks); in dlm_user_add_ast() 233 mutex_unlock(&ls->ls_clear_proc_locks); in dlm_user_add_ast() 239 struct dlm_ls *ls; in device_user_lock() local 244 ls = dlm_find_lockspace_local(proc->lockspace); in device_user_lock() 245 if (!ls) in device_user_lock() 265 error = dlm_user_convert(ls, ua, in device_user_lock() 270 error = dlm_user_adopt_orphan(ls, ua, in device_user_lock() 278 error = dlm_user_request(ls, ua, in device_user_lock() [all …]
|
D | plock.c | 80 static void do_unlock_close(struct dlm_ls *ls, u64 number, in do_unlock_close() argument 91 op->info.fsid = ls->ls_global_id; in do_unlock_close() 107 struct dlm_ls *ls; in dlm_posix_lock() local 112 ls = dlm_find_lockspace_local(lockspace); in dlm_posix_lock() 113 if (!ls) in dlm_posix_lock() 127 op->info.fsid = ls->ls_global_id; in dlm_posix_lock() 150 log_debug(ls, "dlm_posix_lock: wait killed %llx", in dlm_posix_lock() 156 do_unlock_close(ls, number, file, fl); in dlm_posix_lock() 166 log_error(ls, "dlm_posix_lock: op on list %llx", in dlm_posix_lock() 176 log_error(ls, "dlm_posix_lock: vfs lock error %llx", in dlm_posix_lock() [all …]
|
D | dlm_internal.h | 66 #define log_error(ls, fmt, args...) \ argument 67 printk(KERN_ERR "dlm: %s: " fmt "\n", (ls)->ls_name , ##args) 68 #define log_rinfo(ls, fmt, args...) \ argument 69 printk(KERN_INFO "dlm: %s: " fmt "\n", (ls)->ls_name , ##args); 71 #define log_debug(ls, fmt, args...) \ argument 75 (ls)->ls_name , ##args); \ 78 #define log_limit(ls, fmt, args...) \ argument 82 (ls)->ls_name , ##args); \ 695 static inline int dlm_locking_stopped(struct dlm_ls *ls) in dlm_locking_stopped() argument 697 return !test_bit(LSFL_RUNNING, &ls->ls_flags); in dlm_locking_stopped() [all …]
|
D | ast.h | 19 int dlm_rem_lkb_callback(struct dlm_ls *ls, struct dlm_lkb *lkb, 25 int dlm_callback_start(struct dlm_ls *ls); 26 void dlm_callback_stop(struct dlm_ls *ls); 27 void dlm_callback_suspend(struct dlm_ls *ls); 28 void dlm_callback_resume(struct dlm_ls *ls);
|
D | recoverd.h | 17 void dlm_recoverd_stop(struct dlm_ls *ls); 18 int dlm_recoverd_start(struct dlm_ls *ls); 19 void dlm_recoverd_suspend(struct dlm_ls *ls); 20 void dlm_recoverd_resume(struct dlm_ls *ls);
|
D | requestqueue.h | 16 void dlm_add_requestqueue(struct dlm_ls *ls, int nodeid, struct dlm_message *ms); 17 int dlm_process_requestqueue(struct dlm_ls *ls); 18 void dlm_wait_requestqueue(struct dlm_ls *ls); 19 void dlm_purge_requestqueue(struct dlm_ls *ls);
|
D | dir.h | 18 int dlm_hash2nodeid(struct dlm_ls *ls, uint32_t hash); 19 void dlm_recover_dir_nodeid(struct dlm_ls *ls); 20 int dlm_recover_directory(struct dlm_ls *ls); 21 void dlm_copy_master_names(struct dlm_ls *ls, char *inbuf, int inlen,
|
D | memory.c | 47 char *dlm_allocate_lvb(struct dlm_ls *ls) in dlm_allocate_lvb() argument 51 p = kzalloc(ls->ls_lvblen, GFP_NOFS); in dlm_allocate_lvb() 60 struct dlm_rsb *dlm_allocate_rsb(struct dlm_ls *ls) in dlm_allocate_rsb() argument 75 struct dlm_lkb *dlm_allocate_lkb(struct dlm_ls *ls) in dlm_allocate_lkb() argument
|
D | memory.h | 19 struct dlm_rsb *dlm_allocate_rsb(struct dlm_ls *ls); 21 struct dlm_lkb *dlm_allocate_lkb(struct dlm_ls *ls); 23 char *dlm_allocate_lvb(struct dlm_ls *ls);
|
D | rcom.h | 17 int dlm_rcom_status(struct dlm_ls *ls, int nodeid, uint32_t status_flags); 18 int dlm_rcom_names(struct dlm_ls *ls, int nodeid, char *last_name,int last_len); 22 void dlm_receive_rcom(struct dlm_ls *ls, struct dlm_rcom *rc, int nodeid);
|
D | lockspace.h | 22 void dlm_put_lockspace(struct dlm_ls *ls);
|
D | user.h | 16 int dlm_device_deregister(struct dlm_ls *ls);
|
/linux-4.1.27/fs/gfs2/ |
D | lock_dlm.c | 256 struct lm_lockstruct *ls = &gl->gl_sbd->sd_lockstruct; in gdlm_lock() local 278 return dlm_lock(ls->ls_dlm, req, &gl->gl_lksb, lkf, strname, in gdlm_lock() 285 struct lm_lockstruct *ls = &sdp->sd_lockstruct; in gdlm_put_lock() local 310 error = dlm_unlock(ls->ls_dlm, gl->gl_lksb.sb_lkid, DLM_LKF_VALBLK, in gdlm_put_lock() 322 struct lm_lockstruct *ls = &gl->gl_sbd->sd_lockstruct; in gdlm_cancel() local 323 dlm_unlock(ls->ls_dlm, gl->gl_lksb.sb_lkid, DLM_LKF_CANCEL, NULL, gl); in gdlm_cancel() 468 static void control_lvb_read(struct lm_lockstruct *ls, uint32_t *lvb_gen, in control_lvb_read() argument 472 memcpy(lvb_bits, ls->ls_control_lvb, GDLM_LVB_SIZE); in control_lvb_read() 477 static void control_lvb_write(struct lm_lockstruct *ls, uint32_t lvb_gen, in control_lvb_write() argument 481 memcpy(ls->ls_control_lvb, lvb_bits, GDLM_LVB_SIZE); in control_lvb_write() [all …]
|
D | sys.c | 314 struct lm_lockstruct *ls = &sdp->sd_lockstruct; in block_show() local 318 if (test_bit(DFL_BLOCK_LOCKS, &ls->ls_recover_flags)) in block_show() 326 struct lm_lockstruct *ls = &sdp->sd_lockstruct; in block_store() local 333 set_bit(DFL_BLOCK_LOCKS, &ls->ls_recover_flags); in block_store() 335 clear_bit(DFL_BLOCK_LOCKS, &ls->ls_recover_flags); in block_store() 368 struct lm_lockstruct *ls = &sdp->sd_lockstruct; in lkfirst_show() local 369 return sprintf(buf, "%d\n", ls->ls_first); in lkfirst_show() 401 struct lm_lockstruct *ls = &sdp->sd_lockstruct; in first_done_show() local 402 return sprintf(buf, "%d\n", !!test_bit(DFL_FIRST_MOUNT_DONE, &ls->ls_recover_flags)); in first_done_show() 450 struct lm_lockstruct *ls = &sdp->sd_lockstruct; in recover_done_show() local [all …]
|
D | util.c | 40 struct lm_lockstruct *ls = &sdp->sd_lockstruct; in gfs2_lm_withdraw() local 41 const struct lm_lockops *lm = ls->ls_ops; in gfs2_lm_withdraw()
|
D | recovery.c | 438 struct lm_lockstruct *ls = &sdp->sd_lockstruct; in gfs2_recovery_done() local 440 ls->ls_recover_jid_done = jid; in gfs2_recovery_done() 441 ls->ls_recover_jid_status = message; in gfs2_recovery_done()
|
D | file.c | 989 struct lm_lockstruct *ls = &sdp->sd_lockstruct; in gfs2_lock() local 1007 return dlm_posix_get(ls->ls_dlm, ip->i_no_addr, file, fl); in gfs2_lock() 1009 return dlm_posix_unlock(ls->ls_dlm, ip->i_no_addr, file, fl); in gfs2_lock() 1011 return dlm_posix_lock(ls->ls_dlm, ip->i_no_addr, file, cmd, fl); in gfs2_lock()
|
D | ops_fstype.c | 940 struct lm_lockstruct *ls = &sdp->sd_lockstruct; in gfs2_lm_mount() local 961 ls->ls_ops = lm; in gfs2_lm_mount() 962 ls->ls_first = 1; in gfs2_lm_mount() 978 ls->ls_jid = option; in gfs2_lm_mount() 988 ls->ls_first = option; in gfs2_lm_mount()
|
D | glock.c | 1315 struct lm_lockstruct *ls = &gl->gl_sbd->sd_lockstruct; in gfs2_glock_complete() local 1320 if (unlikely(test_bit(DFL_BLOCK_LOCKS, &ls->ls_recover_flags))) { in gfs2_glock_complete()
|
/linux-4.1.27/fs/nfsd/ |
D | nfs4layouts.c | 133 struct nfs4_layout_stateid *ls = layoutstateid(stid); in nfsd4_free_layout_stateid() local 134 struct nfs4_client *clp = ls->ls_stid.sc_client; in nfsd4_free_layout_stateid() 135 struct nfs4_file *fp = ls->ls_stid.sc_file; in nfsd4_free_layout_stateid() 137 trace_layoutstate_free(&ls->ls_stid.sc_stateid); in nfsd4_free_layout_stateid() 140 list_del_init(&ls->ls_perclnt); in nfsd4_free_layout_stateid() 144 list_del_init(&ls->ls_perfile); in nfsd4_free_layout_stateid() 147 vfs_setlease(ls->ls_file, F_UNLCK, NULL, (void **)&ls); in nfsd4_free_layout_stateid() 148 fput(ls->ls_file); in nfsd4_free_layout_stateid() 150 if (ls->ls_recalled) in nfsd4_free_layout_stateid() 151 atomic_dec(&ls->ls_stid.sc_file->fi_lo_recalls); in nfsd4_free_layout_stateid() [all …]
|
D | nfs4callback.c | 564 const struct nfs4_layout_stateid *ls, in encode_cb_layout4args() argument 573 *p++ = cpu_to_be32(ls->ls_layout_type); in encode_cb_layout4args() 578 encode_nfs_fh4(xdr, &ls->ls_stid.sc_file->fi_fhandle); in encode_cb_layout4args() 584 encode_stateid4(xdr, &ls->ls_recall_sid); in encode_cb_layout4args() 593 const struct nfs4_layout_stateid *ls = in nfs4_xdr_enc_cb_layout() local 602 encode_cb_layout4args(xdr, ls, &hdr); in nfs4_xdr_enc_cb_layout()
|
D | pnfs.h | 44 struct nfs4_layout_stateid *ls);
|
D | nfs4proc.c | 1257 struct nfs4_layout_stateid *ls; in nfsd4_layoutget() local 1306 true, lgp->lg_layout_type, &ls); in nfsd4_layoutget() 1313 if (atomic_read(&ls->ls_stid.sc_file->fi_lo_recalls)) in nfsd4_layoutget() 1321 nfserr = nfsd4_insert_layout(lgp, ls); in nfsd4_layoutget() 1324 nfs4_put_stid(&ls->ls_stid); in nfsd4_layoutget() 1339 struct nfs4_layout_stateid *ls; in nfsd4_layoutcommit() local 1368 &ls); in nfsd4_layoutcommit() 1389 nfs4_put_stid(&ls->ls_stid); in nfsd4_layoutcommit()
|
/linux-4.1.27/tools/perf/ |
D | builtin-lock.c | 399 struct lock_stat *ls; in report_lock_acquire_event() local 408 ls = lock_stat_findnew(addr, name); in report_lock_acquire_event() 409 if (!ls) in report_lock_acquire_event() 411 if (ls->discard) in report_lock_acquire_event() 429 ls->nr_trylock++; in report_lock_acquire_event() 431 ls->nr_readlock++; in report_lock_acquire_event() 434 ls->nr_acquired++; in report_lock_acquire_event() 440 ls->nr_acquired++; in report_lock_acquire_event() 451 ls->discard = 1; in report_lock_acquire_event() 461 ls->nr_acquire++; in report_lock_acquire_event() [all …]
|
D | perf-with-kcore.sh | 121 …find "$USER_HOME/.debug" -xdev -type d ! -user "$SUDO_USER" -ls -exec chown "$SUDO_USE… 122 …find "$USER_HOME/.debug" -xdev -type f -links 1 ! -user "$SUDO_USER" -ls -exec chown "$SUDO_USE… 123 …find "$USER_HOME/.debug" -xdev -type l ! -user "$SUDO_USER" -ls -exec chown -h "$SUDO_USE… 126 …find "$USER_HOME/.debug" -xdev -type d ! -group "$SUDO_GID" -ls -exec chgrp "$SUDO_GID… 127 …find "$USER_HOME/.debug" -xdev -type f -links 1 ! -group "$SUDO_GID" -ls -exec chgrp "$SUDO_GID… 128 …find "$USER_HOME/.debug" -xdev -type l ! -group "$SUDO_GID" -ls -exec chgrp -h "$SUDO_GID…
|
/linux-4.1.27/arch/powerpc/platforms/cell/spufs/ |
D | lscsa_alloc.c | 45 for (p = lscsa->ls; p < lscsa->ls + LS_SIZE; p += PAGE_SIZE) in spu_alloc_lscsa_std() 59 for (p = csa->lscsa->ls; p < csa->lscsa->ls + LS_SIZE; p += PAGE_SIZE) in spu_free_lscsa_std() 132 for (p = csa->lscsa->ls; p < csa->lscsa->ls + LS_SIZE; p += PAGE_SIZE) in spu_alloc_lscsa() 158 for (p = csa->lscsa->ls; p < csa->lscsa->ls + LS_SIZE; p += PAGE_SIZE) in spu_free_lscsa()
|
D | spu_save.c | 63 unsigned int ls = 16384; in save_upper_240kb() local 73 spu_writech(MFC_LSA, ls); in save_upper_240kb() 120 unsigned int ls = (unsigned int)®s_spill[0]; in spill_regs_to_mem() local 129 spu_writech(MFC_LSA, ls); in spill_regs_to_mem()
|
D | spu_utils.h | 102 ea_low += LSCSA_BYTE_OFFSET(ls[16384]); in build_dma_list() 112 unsigned int ls = 0; in enqueue_putllc() local 123 spu_writech(MFC_LSA, ls); in enqueue_putllc()
|
D | spu_restore.c | 48 unsigned int ls = (unsigned int)®s_spill[0]; in fetch_regs_from_mem() local 53 spu_writech(MFC_LSA, ls); in fetch_regs_from_mem() 63 unsigned int ls = 16384; in restore_upper_240kb() local 73 spu_writech(MFC_LSA, ls); in restore_upper_240kb()
|
D | run.c | 312 void __iomem *ls; in spu_process_callback() local 318 ls = (void __iomem *)ctx->ops->get_ls(ctx); in spu_process_callback() 319 ls_pointer = in_be32(ls + npc); in spu_process_callback() 322 memcpy_fromio(&s, ls + ls_pointer, sizeof(s)); in spu_process_callback() 343 ls = (void __iomem *)ctx->ops->get_ls(ctx); in spu_process_callback() 346 memcpy_toio(ls + ls_pointer, &spu_ret, sizeof(spu_ret)); in spu_process_callback()
|
D | backing_ops.c | 272 return ctx->csa.lscsa->ls; in spu_backing_get_ls()
|
D | switch.c | 814 unsigned long addr = (unsigned long)&csa->lscsa->ls[0]; in save_ls_16kb() 1384 unsigned long addr = (unsigned long)&csa->lscsa->ls[0]; in restore_ls_16kb()
|
D | file.c | 271 pfn = vmalloc_to_pfn(ctx->csa.lscsa->ls + offset); in spufs_mem_mmap_fault()
|
/linux-4.1.27/arch/mips/lasat/ |
D | lasat_board.c | 61 unsigned long *ls = lasat_board_info.li_flashpart_size; in init_flash_sizes() local 64 ls[LASAT_MTD_BOOTLOADER] = 0x40000; in init_flash_sizes() 65 ls[LASAT_MTD_SERVICE] = 0xC0000; in init_flash_sizes() 66 ls[LASAT_MTD_NORMAL] = 0x100000; in init_flash_sizes() 74 ls[LASAT_MTD_CONFIG] = 0x100000; in init_flash_sizes() 75 ls[LASAT_MTD_FS] = 0x500000; in init_flash_sizes() 82 ls[LASAT_MTD_CONFIG] = 0x100000; in init_flash_sizes() 84 ls[LASAT_MTD_FS] = in init_flash_sizes() 90 lb[i] = lb[i-1] + ls[i-1]; in init_flash_sizes()
|
/linux-4.1.27/arch/m68k/lib/ |
D | memset.c | 34 long *ls = s; in memset() local 37 *ls++ = c; in memset() 58 : "=a" (ls), "=d" (temp), "=&d" (temp1) in memset() 59 : "d" (c), "0" (ls), "1" (temp)); in memset() 61 s = ls; in memset()
|
/linux-4.1.27/drivers/leds/ |
D | leds-pca955x.c | 200 u8 ls; in pca955x_led_work() local 212 ls = pca955x_read_ls(pca955x->client, chip_ls); in pca955x_led_work() 216 ls = pca955x_ledsel(ls, ls_led, PCA955X_LS_LED_ON); in pca955x_led_work() 219 ls = pca955x_ledsel(ls, ls_led, PCA955X_LS_LED_OFF); in pca955x_led_work() 222 ls = pca955x_ledsel(ls, ls_led, PCA955X_LS_BLINK0); in pca955x_led_work() 234 ls = pca955x_ledsel(ls, ls_led, PCA955X_LS_BLINK1); in pca955x_led_work() 238 pca955x_write_ls(pca955x->client, chip_ls, ls); in pca955x_led_work()
|
/linux-4.1.27/arch/m68k/fpsp040/ |
D | sgetem.S | 95 movel LOCAL_LO(%a0),%d1 |load ls mant in d1 98 movel %d1,LOCAL_LO(%a0) |put ls mant back on stack 107 | ls mantissa part in d1 114 tstl %d1 |test if any bits set in ls mant 119 exg %d0,%d1 |shift ls mant to ms mant 120 bfffo %d0{#0:#32},%d3 |find first 1 in ls mant to d0 127 bfffo %d0{#0:#32},%d3 |find first 1 in ls mant to d0 129 movel %d1,%d6 |save ls mant in d6 130 lsll %d3,%d1 |shift ls mant by count 132 subl %d3,%d5 |sub 32 from shift for ls mant [all …]
|
D | round.S | 299 | FP_SCR1 = exponent, ms mantissa part, ls mantissa part 325 movel %d2,%d6 |save ls mant in d6 326 lsll %d0,%d2 |shift ls mant by count 332 orl %d6,%d1 |shift the ls mant bits into the ms mant 341 bfffo %d2{#0:#32},%d3 |check if any bits set in ls mant 366 movel LOCAL_LO(%a0),%d1 |d1 has ls mant 369 movel %d1,%d6 |copy ls mant into d6 370 lsll %d7,%d6 |shift ls mant by count 371 movel %d6,LOCAL_LO(%a0) |store ls mant into memory 376 orl %d1,%d0 |shift the ls mant bits into the ms mant [all …]
|
D | x_store.S | 118 | extended -> |s| exp | |1| ms mant | | ls mant | 162 movel LOCAL_LO(%a1),%d1 |get ls mantissa 163 bfextu %d1{#0:#21},%d0 |get ls 21 bits of double
|
D | binstr.S | 39 | zero, it is the ls digit. Put the digit in its place in the 40 | upper word of d0. If it is the ls digit, write the word 118 addw %d1,%d7 |add in ls digit to d7b
|
D | x_operr.S | 161 cmpil #0xffff8000,FPTEMP_LO(%a6) |test if ls lword is special 188 cmpil #0xffffff80,FPTEMP_LO(%a6) |test if ls lword is special
|
D | get_op.S | 505 tstl ETEMP_LO(%a6) |check ls mantissa 557 tstl ETEMP_LO(%a6) |check ls mantissa
|
/linux-4.1.27/drivers/target/iscsi/ |
D | iscsi_target_util.c | 1430 struct iscsi_login_stats *ls; in iscsit_collect_login_stats() local 1436 ls = &tiqn->login_stats; in iscsit_collect_login_stats() 1438 spin_lock(&ls->lock); in iscsit_collect_login_stats() 1439 if (!strcmp(conn->login_ip, ls->last_intr_fail_ip_addr) && in iscsit_collect_login_stats() 1440 ((get_jiffies_64() - ls->last_fail_time) < 10)) { in iscsit_collect_login_stats() 1442 spin_unlock(&ls->lock); in iscsit_collect_login_stats() 1447 ls->accepts++; in iscsit_collect_login_stats() 1449 ls->redirects++; in iscsit_collect_login_stats() 1450 ls->last_fail_type = ISCSI_LOGIN_FAIL_REDIRECT; in iscsit_collect_login_stats() 1453 ls->authenticate_fails++; in iscsit_collect_login_stats() [all …]
|
/linux-4.1.27/tools/lib/lockdep/ |
D | run_tests.sh | 5 for i in `ls tests/*.c`; do 17 for i in `ls tests/*.c`; do
|
/linux-4.1.27/Documentation/s390/ |
D | config3270.sh | 30 if ! ls $P > /dev/null 2>&1; then 33 ls $P > /dev/null 2>&1 || exit 1
|
D | 3270.txt | 167 step 2 above? Use the ls -l command to find out; for instance, 168 issue "ls -l /dev/3270/tty620". The output should start with the
|
D | s390dbf.txt | 406 > ls /sys/kernel/debug/s390dbf/dasd
|
/linux-4.1.27/arch/ia64/kernel/ |
D | unwind.c | 1034 struct unw_labeled_state *ls; in desc_copy_state() local 1036 for (ls = sr->labeled_states; ls; ls = ls->next) { in desc_copy_state() 1037 if (ls->label == label) { in desc_copy_state() 1039 memcpy(&sr->curr, &ls->saved_state, sizeof(sr->curr)); in desc_copy_state() 1040 sr->curr.next = dup_state_stack(ls->saved_state.next); in desc_copy_state() 1050 struct unw_labeled_state *ls; in desc_label_state() local 1052 ls = alloc_labeled_state(); in desc_label_state() 1053 if (!ls) { in desc_label_state() 1057 ls->label = label; in desc_label_state() 1058 memcpy(&ls->saved_state, &sr->curr, sizeof(ls->saved_state)); in desc_label_state() [all …]
|
/linux-4.1.27/drivers/net/fddi/skfp/ |
D | skfddi.c | 709 bp->stats.smt_time_stamp = bp->cmd_rsp_virt->smt_mib_get.smt_msg_time_stamp.ls; in skfp_ctl_get_stats() 710 bp->stats.smt_transition_time_stamp = bp->cmd_rsp_virt->smt_mib_get.smt_transition_time_stamp.ls; in skfp_ctl_get_stats() 783 bp->stats.mac_frame_cts = bp->cmd_rsp_virt->cntrs_get.cntrs.frame_cnt.ls; in skfp_ctl_get_stats() 784 bp->stats.mac_copied_cts = bp->cmd_rsp_virt->cntrs_get.cntrs.copied_cnt.ls; in skfp_ctl_get_stats() 785 bp->stats.mac_transmit_cts = bp->cmd_rsp_virt->cntrs_get.cntrs.transmit_cnt.ls; in skfp_ctl_get_stats() 786 bp->stats.mac_error_cts = bp->cmd_rsp_virt->cntrs_get.cntrs.error_cnt.ls; in skfp_ctl_get_stats() 787 bp->stats.mac_lost_cts = bp->cmd_rsp_virt->cntrs_get.cntrs.lost_cnt.ls; in skfp_ctl_get_stats() 788 bp->stats.port_lct_fail_cts[0] = bp->cmd_rsp_virt->cntrs_get.cntrs.lct_rejects[0].ls; in skfp_ctl_get_stats() 789 bp->stats.port_lct_fail_cts[1] = bp->cmd_rsp_virt->cntrs_get.cntrs.lct_rejects[1].ls; in skfp_ctl_get_stats() 790 bp->stats.port_lem_reject_cts[0] = bp->cmd_rsp_virt->cntrs_get.cntrs.lem_rejects[0].ls; in skfp_ctl_get_stats() [all …]
|
D | pcmplc.c | 209 static void sm_ph_linestate(struct s_smc *smc, int phy, int ls); 1037 static void sm_ph_linestate(struct s_smc *smc, int phy, int ls) in sm_ph_linestate() argument 1045 switch(ls) { in sm_ph_linestate() 1923 char *ls = "" ; in get_linestate() local 1928 case PL_L_NLS : ls = "NOISE" ; break ; in get_linestate() 1929 case PL_L_ALS : ls = "ACTIV" ; break ; in get_linestate() 1930 case PL_L_UND : ls = "UNDEF" ; break ; in get_linestate() 1931 case PL_L_ILS4: ls = "ILS 4" ; break ; in get_linestate() 1932 case PL_L_QLS : ls = "QLS" ; break ; in get_linestate() 1933 case PL_L_MLS : ls = "MLS" ; break ; in get_linestate() [all …]
|
/linux-4.1.27/Documentation/misc-devices/ |
D | ad525x_dpot.txt | 34 # ls /sys/bus/i2c/devices/ 40 # ls /sys/bus/i2c/devices/0-002f/
|
D | c2port.txt | 52 # ls /sys/class/c2port/c2port0/
|
/linux-4.1.27/scripts/ |
D | headers.sh | 16 archs=${HDR_ARCH_LIST:-$(ls ${srctree}/arch)}
|
D | ver_linux | 68 ls -l /usr/lib/libg++.so /usr/lib/libstdc++.so 2>/dev/null | awk -F. \
|
D | tags.sh | 35 for arch in `ls ${tree}arch`; do
|
D | gen_initramfs_list.sh | 128 local dev=`LC_ALL=C ls -l "${location}"`
|
/linux-4.1.27/Documentation/aoe/ |
D | status.sh | 21 for d in `ls -d $sysd/block/etherd* 2>/dev/null | grep -v p` end; do
|
D | udev.txt | 12 # bash# ls /etc/udev/rules.d/
|
/linux-4.1.27/Documentation/leds/ |
D | leds-blinkm.txt | 20 $ ls -h /sys/class/leds/blinkm-6-* 55 $ ls -h /sys/bus/i2c/devices/6-0009/blinkm/
|
/linux-4.1.27/tools/perf/tests/ |
D | perf-targz-src-pkg | 13 TARBALL=$(ls -rt perf-*.tar.gz)
|
/linux-4.1.27/tools/nfsd/ |
D | inject_fault.sh | 28 ls $DEBUGDIR
|
/linux-4.1.27/Documentation/trace/ |
D | ftrace.txt | 921 # ls -ltr 1067 # ls -ltr 1217 # ls -ltr 1227 # | task: ls-2230 (uid:0 nice:0 policy:0 rt_prio:0) 1241 ls-2230 3d... 0us+: _raw_spin_lock_irqsave <-ata_scsi_queuecmd 1242 ls-2230 3...1 100us : _raw_spin_unlock_irqrestore <-ata_scsi_queuecmd 1243 ls-2230 3...1 101us+: trace_preempt_on <-ata_scsi_queuecmd 1244 ls-2230 3...1 111us : <stack trace> 1280 # | task: ls-2269 (uid:0 nice:0 policy:0 rt_prio:0) 1319 ls-2269 3d..2 7us : finish_task_switch <-__schedule [all …]
|
D | coresight.txt | 146 root:~# ls /sys/bus/coresight/devices/ 201 root:/sys/bus/coresight/devices# ls 204 root:/sys/bus/coresight/devices# ls 20010000.etb
|
/linux-4.1.27/arch/arm64/kernel/ |
D | setup.c | 154 u32 i, affinity, fs[4], bits[4], ls; in smp_build_mpidr_hash() local 174 ls = fls(affinity); in smp_build_mpidr_hash() 176 bits[i] = ls - fs[i]; in smp_build_mpidr_hash()
|
D | head.S | 343 b.ls 9999b
|
/linux-4.1.27/arch/powerpc/kernel/ |
D | prom.c | 453 const __be32 *dm, *ls, *usm; in early_init_dt_scan_drconf_memory() local 459 ls = of_get_flat_dt_prop(node, "ibm,lmb-size", &l); in early_init_dt_scan_drconf_memory() 460 if (ls == NULL || l < dt_root_size_cells * sizeof(__be32)) in early_init_dt_scan_drconf_memory() 462 memblock_size = dt_mem_next_cell(dt_root_size_cells, &ls); in early_init_dt_scan_drconf_memory()
|
/linux-4.1.27/arch/arm/boot/dts/ |
D | stih415-clock.dtsi | 39 "clk-s-a0-pll0-ls", 68 clk_s_a0_ls: clk-s-a0-ls { 70 compatible = "st,clkgena-divmux-c65-ls", 97 "clk-s-a1-pll0-ls", 126 clk_s_a1_ls: clk-s-a1-ls { 128 compatible = "st,clkgena-divmux-c65-ls",
|
D | stih416-clock.dtsi | 40 "clk-s-a0-pll0-ls", 69 clk_s_a0_ls: clk-s-a0-ls { 71 compatible = "st,clkgena-divmux-c65-ls", 98 "clk-s-a1-pll0-ls", 127 clk_s_a1_ls: clk-s-a1-ls { 129 compatible = "st,clkgena-divmux-c65-ls",
|
D | tegra20-trimslice.dts | 242 nvidia,pins = "lc", "ls";
|
D | tegra20-tamonten.dtsi | 227 nvidia,pins = "lc", "ls";
|
D | tegra20-paz00.dts | 240 nvidia,pins = "lc", "ls";
|
D | tegra20-whistler.dts | 244 nvidia,pins = "ls", "pmce";
|
D | tegra20-ventana.dts | 249 nvidia,pins = "lc", "ls";
|
D | tegra20-harmony.dts | 245 nvidia,pins = "lc", "ls";
|
D | tegra20-seaboard.dts | 252 nvidia,pins = "lc", "ls";
|
/linux-4.1.27/drivers/net/ethernet/samsung/sxgbe/ |
D | sxgbe_core.c | 227 const int ls, const int tw) in sxgbe_set_eee_timer() argument 229 int value = ((tw & 0xffff)) | ((ls & 0x7ff) << 16); in sxgbe_set_eee_timer()
|
D | sxgbe_common.h | 354 void (*set_eee_timer)(void __iomem *ioaddr, const int ls,
|
/linux-4.1.27/Documentation/filesystems/ |
D | automount-support.txt | 43 [root@andromeda root]# ls /afs 45 [root@andromeda root]# ls /afs/cambridge 47 [root@andromeda root]# ls /afs/cambridge/afsdoc/
|
D | sharedsubtree.txt | 55 #ls /mnt 58 #ls /tmp 64 #ls /tmp/a 67 #ls /mnt/a 98 #ls /mnt/a 101 #ls /tmp/a 110 #ls /tmp/b 113 #ls /mnt/b
|
D | coda.txt | 194 22.. SSeerrvviicciinngg CCooddaa ffiilleessyysstteemm ccaallllss 358 33..11.. IImmpplleemmeennttaattiioonn ddeettaaiillss 1426 55.. TThhee mmiinniiccaacchhee aanndd ddoowwnnccaallllss
|
D | ntfs.txt | 154 "ls -l \$UpCase" for example to specifically show the
|
D | proc.txt | 686 > ls /proc/irq/ 689 > ls /proc/irq/0/ 1824 | lr-------- 1 root root 64 Jan 27 11:24 400000-41a000 -> /usr/bin/ls
|
/linux-4.1.27/arch/mips/cavium-octeon/executive/ |
D | cvmx-helper-xaui.c | 270 if ((gmxx_tx_xaui_ctl.s.ls == 0) && (gmxx_rx_xaui_ctl.s.status == 0) && in __cvmx_helper_xaui_link_get() 310 if ((gmxx_tx_xaui_ctl.s.ls == 0) && (gmxx_rx_xaui_ctl.s.status == 0)) in __cvmx_helper_xaui_link_set()
|
/linux-4.1.27/drivers/net/fddi/ |
D | defxx.c | 2122 bp->stats.smt_time_stamp = bp->cmd_rsp_virt->smt_mib_get.smt_msg_time_stamp.ls; in dfx_ctl_get_stats() 2123 bp->stats.smt_transition_time_stamp = bp->cmd_rsp_virt->smt_mib_get.smt_transition_time_stamp.ls; in dfx_ctl_get_stats() 2201 bp->stats.mac_frame_cts = bp->cmd_rsp_virt->cntrs_get.cntrs.frame_cnt.ls; in dfx_ctl_get_stats() 2202 bp->stats.mac_copied_cts = bp->cmd_rsp_virt->cntrs_get.cntrs.copied_cnt.ls; in dfx_ctl_get_stats() 2203 bp->stats.mac_transmit_cts = bp->cmd_rsp_virt->cntrs_get.cntrs.transmit_cnt.ls; in dfx_ctl_get_stats() 2204 bp->stats.mac_error_cts = bp->cmd_rsp_virt->cntrs_get.cntrs.error_cnt.ls; in dfx_ctl_get_stats() 2205 bp->stats.mac_lost_cts = bp->cmd_rsp_virt->cntrs_get.cntrs.lost_cnt.ls; in dfx_ctl_get_stats() 2206 bp->stats.port_lct_fail_cts[0] = bp->cmd_rsp_virt->cntrs_get.cntrs.lct_rejects[0].ls; in dfx_ctl_get_stats() 2207 bp->stats.port_lct_fail_cts[1] = bp->cmd_rsp_virt->cntrs_get.cntrs.lct_rejects[1].ls; in dfx_ctl_get_stats() 2208 bp->stats.port_lem_reject_cts[0] = bp->cmd_rsp_virt->cntrs_get.cntrs.lem_rejects[0].ls; in dfx_ctl_get_stats() [all …]
|
D | defxx.h | 46 PI_UINT32 ls; member
|
/linux-4.1.27/arch/arm/mach-orion5x/ |
D | Makefile | 20 obj-$(CONFIG_MACH_LINKSTATION_LSCHL) += ls-chl-setup.o
|
/linux-4.1.27/Documentation/DocBook/media/ |
D | Makefile | 21 IMGFILES := $(patsubst %.b64,%, $(notdir $(shell ls $(MEDIA_SRC_DIR)/*.b64))) 37 $(shell ls $(MEDIA_SRC_DIR)/v4l/*.xml|perl -ne 'print "$$1 " if (m,.*/(.*)\n,)') \ 43 $(shell ls $(MEDIA_SRC_DIR)/dvb/*.xml|perl -ne 'print "$$1 " if (m,.*/(.*)\n,)')
|
/linux-4.1.27/Documentation/devicetree/bindings/clock/st/ |
D | st,clkgen-divmux.txt | 13 "st,clkgena-divmux-c65-ls", "st,clkgena-divmux"
|
D | st,clkgen-pll.txt | 48 "clk-s-a0-pll0-ls",
|
D | st,clkgen.txt | 71 "clk-s-a0-pll0-ls",
|
/linux-4.1.27/ |
D | .gitignore | 6 # NOTE! Please use 'git ls-files -i --exclude-standard'
|
D | CREDITS | 3728 D: patches for ghostscript, worked on color 'ls', etc.
|
/linux-4.1.27/tools/perf/Documentation/ |
D | Build.txt | 40 $ ls *-in.o
|
D | perf-script-python.txt | 385 # ls -al kernel-source/tools/perf/scripts/python 387 root@tropicana:/home/trz/src/tip# ls -al tools/perf/scripts/python
|
/linux-4.1.27/arch/arm64/net/ |
D | bpf_jit.h | 76 #define A64_LS_PAIR(Rt, Rt2, Rn, offset, ls, type) \ argument 79 AARCH64_INSN_LDST_##ls##_PAIR_##type)
|
/linux-4.1.27/drivers/net/ethernet/stmicro/stmmac/ |
D | dwmac1000_core.c | 351 static void dwmac1000_set_eee_timer(struct mac_device_info *hw, int ls, int tw) in dwmac1000_set_eee_timer() argument 354 int value = ((tw & 0xffff)) | ((ls & 0x7ff) << 16); in dwmac1000_set_eee_timer()
|
D | common.h | 407 void (*set_eee_timer)(struct mac_device_info *hw, int ls, int tw);
|
/linux-4.1.27/Documentation/block/ |
D | ioprio.txt | 51 # ionice -c2 -n0 /bin/ls 53 will run ls at the best-effort scheduling class at the highest priority.
|
/linux-4.1.27/Documentation/networking/ |
D | batman-adv.txt | 34 # ls /sys/class/net/eth0/batman_adv/ 68 # ls /sys/class/net/bat0/mesh/ 76 # ls /sys/kernel/debug/batman_adv/bat0/
|
D | cdc_mbim.txt | 81 bjorn@nemi:~$ ls /sys/bus/usb/drivers/cdc_mbim/2-4:2.12/usbmisc
|
/linux-4.1.27/arch/arm/kernel/ |
D | setup.c | 542 u32 fs[3], bits[3], ls, mask = 0; in smp_build_mpidr_hash() local 561 ls = fls(affinity); in smp_build_mpidr_hash() 563 bits[i] = ls - fs[i]; in smp_build_mpidr_hash()
|
/linux-4.1.27/drivers/md/ |
D | md-cluster.c | 24 dlm_lockspace_t *ls; member 102 ret = dlm_lock(res->ls, mode, &res->lksb, in dlm_lock_sync() 126 res->ls = cinfo->lockspace; in lockres_init() 171 dlm_unlock(res->ls, res->lksb.sb_lkid, 0, &res->lksb, res); in lockres_free()
|
/linux-4.1.27/tools/lib/traceevent/ |
D | event-parse.c | 4109 int ls = 0; in make_bprint_args() local 4118 ls++; in make_bprint_args() 4121 ls = 2; in make_bprint_args() 4129 ls = 1; in make_bprint_args() 4132 ls = 1; in make_bprint_args() 4138 switch (ls) { in make_bprint_args() 4149 vsize = ls; /* ? */ in make_bprint_args() 4700 int ls; in pretty_print() local 4716 ls = 0; in pretty_print() 4751 ls--; in pretty_print() [all …]
|
/linux-4.1.27/arch/arm64/lib/ |
D | strnlen.S | 127 csel len, len, limit, ls /* Return the lower value. */
|
/linux-4.1.27/Documentation/ABI/testing/ |
D | pstore | 16 $ ls -l /sys/fs/pstore/
|
D | sysfs-class-extcon | 88 # ls mutually_exclusive/
|
/linux-4.1.27/arch/powerpc/include/asm/ |
D | spu_csa.h | 103 unsigned char ls[LS_SIZE] __attribute__((aligned(65536))); member
|
/linux-4.1.27/tools/testing/selftests/memory-hotplug/ |
D | mem-on-off-test.sh | 21 if ! ls $SYSFS/devices/system/memory/memory* > /dev/null 2>&1; then
|
/linux-4.1.27/tools/testing/selftests/cpu-hotplug/ |
D | cpu-on-off-test.sh | 23 if ! ls $SYSFS/devices/system/cpu/cpu* > /dev/null 2>&1; then
|
/linux-4.1.27/arch/powerpc/platforms/ps3/ |
D | spu.c | 136 unsigned long problem, unsigned long ls, unsigned long shadow, in _dump_areas() argument 142 pr_debug("%s:%d: ls: %lxh\n", func, line, ls); in _dump_areas()
|
/linux-4.1.27/drivers/staging/rtl8723au/include/ |
D | rtl8723a_xmit.h | 76 u32 ls:1; member
|
D | rtl8723a_hal.h | 420 u32 ls:1; member
|
/linux-4.1.27/Documentation/console/ |
D | console.txt | 34 ls /sys/class/vtconsole 39 ls /sys/class/vtconsole/vtcon0
|
/linux-4.1.27/Documentation/kbuild/ |
D | headers_install.txt | 34 ls -d include/asm-* | sed 's/.*-//'
|
/linux-4.1.27/kernel/rcu/ |
D | tree_plugin.h | 2491 int ls = rcu_nocb_leader_stride; in rcu_organize_nocb_kthreads() local 2499 if (ls == -1) { in rcu_organize_nocb_kthreads() 2500 ls = int_sqrt(nr_cpu_ids); in rcu_organize_nocb_kthreads() 2501 rcu_nocb_leader_stride = ls; in rcu_organize_nocb_kthreads() 2512 nl = DIV_ROUND_UP(rdp->cpu + 1, ls) * ls; in rcu_organize_nocb_kthreads()
|
/linux-4.1.27/Documentation/device-mapper/ |
D | snapshot.txt | 92 # ls -lL /dev/mapper/volumeGroup-* 121 # ls -lL /dev/mapper/volumeGroup-*
|
/linux-4.1.27/fs/cramfs/ |
D | README | 28 same order as `ls -AUR' (but without the /^\..*:$/ directory header 30 ls -AU1 {} \;'.
|
/linux-4.1.27/Documentation/sysctl/ |
D | README | 52 As a quick 'ls /proc/sys' will show, the directory consists of
|
/linux-4.1.27/Documentation/fmc/ |
D | fmc-chardev.txt | 37 spusa.root# ls -l /dev/fmc*
|
D | fmc-write-eeprom.txt | 84 spusa.root# cd /sys/bus/fmc/devices; ls -l */eeprom
|
D | identifiers.txt | 146 spusa$ ls -l
|
/linux-4.1.27/Documentation/ |
D | SAK.txt | 54 # ls -l /proc/[0-9]*/fd/* | grep console
|
D | magic-number.txt | 105 LSMAGIC 0x2a3b4d2a ls drivers/fc4/fc.c
|
D | java.txt | 121 CLASS=`ls --color=no -l $CLASS | sed -e 's/^.* \([^ ]*\)$/\1/'`
|
D | kernel-per-CPU-kthreads.txt | 170 "ls sys/devices/virtual/workqueue". That said, the workqueues
|
D | cpu-hotplug.txt | 161 #ls -l
|
D | vfio.txt | 141 $ ls -l /sys/bus/pci/devices/0000:06:0d.0/iommu_group/devices
|
/linux-4.1.27/Documentation/filesystems/nfs/ |
D | fault_injection.txt | 19 On the server, mount the debugfs filesystem to <debug_dir> and ls
|
/linux-4.1.27/Documentation/cpuidle/ |
D | sysfs.txt | 28 # ls -lR /sys/devices/system/cpu/cpu0/cpuidle/
|
/linux-4.1.27/Documentation/pps/ |
D | pps.txt | 136 $ ls /sys/class/pps/ 142 $ ls /sys/class/pps/pps0/
|
/linux-4.1.27/Documentation/dmaengine/ |
D | dmatest.txt | 34 % ls -1 /sys/class/dma/
|
/linux-4.1.27/Documentation/accounting/ |
D | delay-accounting.txt | 104 # ./getdelays -c ls /
|
/linux-4.1.27/arch/cris/include/arch-v32/arch/hwregs/ |
D | Makefile | 160 (cd $(OFFICIAL_INCDIR); ls -l *.h )
|
/linux-4.1.27/tools/build/Documentation/ |
D | Build.txt | 37 $ ls $(DIR)/$(OBJECT)-in.o
|
/linux-4.1.27/Documentation/cpu-freq/ |
D | cpufreq-stats.txt | 43 <mysystem>:/sys/devices/system/cpu/cpu0/cpufreq/stats # ls -l
|
/linux-4.1.27/arch/arm/include/asm/ |
D | assembler.h | 433 .irp c,,eq,ne,cs,cc,mi,pl,vs,vc,hi,ls,ge,lt,gt,le,hs,lo
|
/linux-4.1.27/scripts/kconfig/ |
D | Makefile | 66 $(Q)(for i in `ls $(srctree)/arch/*/Kconfig \
|
/linux-4.1.27/drivers/net/ethernet/neterion/vxge/ |
D | vxge-config.h | 846 #define VXGE_HW_DEVICE_LINK_STATE_SET(hldev, ls) (hldev->link_state = ls) argument
|
/linux-4.1.27/Documentation/zh_CN/ |
D | magic-number.txt | 105 LSMAGIC 0x2a3b4d2a ls drivers/fc4/fc.c
|
/linux-4.1.27/Documentation/target/ |
D | tcm_mod_builder.txt | 70 target:/mnt/sdb/lio-core-2.6.git# ls -la drivers/target/tcm_nab5000/
|
/linux-4.1.27/fs/xfs/libxfs/ |
D | xfs_format.h | 1062 #define XFS_SUMOFFS(mp,ls,bb) ((int)((ls) * (mp)->m_sb.sb_rbmblocks + (bb))) argument
|
/linux-4.1.27/Documentation/cris/ |
D | README | 180 17# ls -l /bin
|
/linux-4.1.27/Documentation/devicetree/bindings/pinctrl/ |
D | nvidia,tegra20-pinmux.txt | 89 ck32, ddrc, pmca, pmcb, pmcc, pmcd, pmce, xm2c, xm2d, ls, lc, ld17_0,
|
/linux-4.1.27/Documentation/vm/ |
D | hwpoison.txt | 142 memcg_ino=$(ls -id /sys/fs/cgroup/mem/hwpoison | cut -f1 -d' ')
|
/linux-4.1.27/Documentation/rapidio/ |
D | sysfs.txt | 145 [rio@rapidio ~]$ ls /sys/class/rapidio_port/rapidio0/ -l
|
/linux-4.1.27/Documentation/isdn/ |
D | README.diversion | 105 "cat /proc/modules" or "ls /proc/net/isdn/divert". The divert file is
|
/linux-4.1.27/drivers/net/ethernet/intel/i40e/ |
D | i40e_virtchnl_pf.c | 76 struct i40e_link_status *ls = &pf->hw.phy.link_info; in i40e_vc_notify_vf_link_state() local 87 ls->link_info & I40E_AQ_LINK_UP; in i40e_vc_notify_vf_link_state() 88 pfe.event_data.link_event.link_speed = ls->link_speed; in i40e_vc_notify_vf_link_state()
|
/linux-4.1.27/arch/mips/mm/ |
D | tlbex.c | 1366 const enum label_id ls = label_tlb_huge_update; in build_r4000_tlb_refill_handler() local 1368 const enum label_id ls = label_vmalloc; in build_r4000_tlb_refill_handler() 1374 for (i = 0; i < ARRAY_SIZE(labels) && labels[i].lab != ls; i++) in build_r4000_tlb_refill_handler()
|
/linux-4.1.27/Documentation/filesystems/configfs/ |
D | configfs.txt | 79 # ls /config 87 # ls /config/fakenbd/disk1
|
/linux-4.1.27/Documentation/powerpc/ |
D | hvcs.txt | 328 Pow5:/sys/bus/vio/drivers/hvcs # ls 349 Pow5:/sys/bus/vio/drivers/hvcs/30000004 # ls
|
/linux-4.1.27/Documentation/filesystems/cifs/ |
D | CHANGES | 253 Fix oops on ls to OS/2 servers. Add support for level 1 FindFirst 254 so we can do search (ls etc.) to OS/2. Do not send NTCreateX 380 Fix oops in ls when Transact2 FindFirst (or FindNext) returns more than one 845 showed up in "ls -R" (and applications that did search rewinding).
|
/linux-4.1.27/Documentation/usb/ |
D | gadget_serial.txt | 132 # ls -l /dev/ttyGS0 | cat
|
D | usbmon.txt | 40 # ls /sys/kernel/debug/usb/usbmon
|
D | gadget-testing.txt | 748 # ls -l /devices/virtual/usb_printer_gadget/
|
/linux-4.1.27/Documentation/virtual/uml/ |
D | UserModeLinux-HOWTO.txt | 1902 space that you're saving, make sure you use 'ls -ls' to see the actual 1905 Here is a 'ls -l' of a COW file and backing file from one boot and 1907 host% ls -l cow.debian debian2.2 1914 Doesn't look like much saved space, does it? Well, here's 'ls -ls': 1917 host% ls -ls cow.debian debian2.2
|
/linux-4.1.27/drivers/scsi/lpfc/ |
D | lpfc_hw.h | 3433 uint32_t ls:1; member 3445 uint32_t ls:1; member
|
/linux-4.1.27/arch/mips/include/asm/octeon/ |
D | cvmx-pciercx-defs.h | 1032 uint32_t ls:4; member 1058 uint32_t ls:4;
|
D | cvmx-gmxx-defs.h | 6874 uint64_t ls:2; member 6882 uint64_t ls:2;
|
/linux-4.1.27/arch/m68k/ifpsp060/src/ |
D | ilsp.S | 408 clr.w %d3 # %d3 now ls word of divisor
|
/linux-4.1.27/arch/mips/pci/ |
D | pcie-octeon.c | 1432 …rt %d link active, %d lanes, speed gen%d\n", pcie_port, pciercx_cfg032.s.nlw, pciercx_cfg032.s.ls); in __cvmx_pcie_rc_initialize_gen2()
|
/linux-4.1.27/drivers/pinctrl/ |
D | pinctrl-tegra20.c | 2168 PULL_PG(ls, 0xac, 20),
|
/linux-4.1.27/drivers/staging/speakup/ |
D | spkguide.txt | 360 ls -1 /speakup/* 362 If you issue the above ls command, you will get back something like 490 an ls -l on /speakup/version will return this:
|
/linux-4.1.27/Documentation/cgroups/ |
D | cgroups.txt | 406 # ls
|
D | cpusets.txt | 733 # ls
|
/linux-4.1.27/Documentation/security/ |
D | Smack.txt | 623 any security decisions themselves. The utility ls(1) is one example of such a
|