| /linux-4.4.14/arch/arm64/net/ |
| D | bpf_jit.h | 30 #define A64_VARIANT(sf) \ argument 31 ((sf) ? AARCH64_INSN_VARIANT_64BIT : AARCH64_INSN_VARIANT_32BIT) 34 #define A64_COMP_BRANCH(sf, Rt, offset, type) \ argument 35 aarch64_insn_gen_comp_branch_imm(0, offset, Rt, A64_VARIANT(sf), \ 37 #define A64_CBZ(sf, Rt, imm19) A64_COMP_BRANCH(sf, Rt, (imm19) << 2, ZERO) argument 38 #define A64_CBNZ(sf, Rt, imm19) A64_COMP_BRANCH(sf, Rt, (imm19) << 2, NONZERO) argument 86 #define A64_ADDSUB_IMM(sf, Rd, Rn, imm12, type) \ argument 88 A64_VARIANT(sf), AARCH64_INSN_ADSB_##type) 90 #define A64_ADD_I(sf, Rd, Rn, imm12) A64_ADDSUB_IMM(sf, Rd, Rn, imm12, ADD) argument 91 #define A64_SUB_I(sf, Rd, Rn, imm12) A64_ADDSUB_IMM(sf, Rd, Rn, imm12, SUB) argument [all …]
|
| /linux-4.4.14/drivers/isdn/hardware/mISDN/ |
| D | speedfax.c | 127 struct sfax_hw *sf = dev_id; in IOFUNC_IND() local 131 spin_lock(&sf->lock); in IOFUNC_IND() 132 val = inb(sf->cfg + TIGER_AUX_STATUS); in IOFUNC_IND() 134 spin_unlock(&sf->lock); in IOFUNC_IND() 137 sf->irqcnt++; in IOFUNC_IND() 138 val = ReadISAR_IND(sf, ISAR_IRQBIT); in IOFUNC_IND() 141 mISDNisar_irq(&sf->isar); in IOFUNC_IND() 142 val = ReadISAC_IND(sf, ISAC_ISTA); in IOFUNC_IND() 144 mISDNisac_irq(&sf->isac, val); in IOFUNC_IND() 145 val = ReadISAR_IND(sf, ISAR_IRQBIT); in IOFUNC_IND() [all …]
|
| /linux-4.4.14/arch/sparc/kernel/ |
| D | signal_32.c | 78 struct signal_frame __user *sf; in do_sigreturn() local 89 sf = (struct signal_frame __user *) regs->u_regs[UREG_FP]; in do_sigreturn() 92 if (!invalid_frame_pointer(sf, sizeof(*sf))) in do_sigreturn() 95 if (get_user(ufp, &sf->info.si_regs.u_regs[UREG_FP])) in do_sigreturn() 101 err = __get_user(pc, &sf->info.si_regs.pc); in do_sigreturn() 102 err |= __get_user(npc, &sf->info.si_regs.npc); in do_sigreturn() 109 err |= __copy_from_user(regs, &sf->info.si_regs, sizeof(struct pt_regs)); in do_sigreturn() 118 err |= __get_user(fpu_save, &sf->fpu_save); in do_sigreturn() 121 err |= __get_user(rwin_save, &sf->rwin_save); in do_sigreturn() 128 err |= __get_user(set.sig[0], &sf->info.si_mask); in do_sigreturn() [all …]
|
| D | signal32.c | 155 struct signal_frame32 __user *sf; in do_sigreturn32() local 170 sf = (struct signal_frame32 __user *) regs->u_regs[UREG_FP]; in do_sigreturn32() 173 if (invalid_frame_pointer(sf, sizeof(*sf))) in do_sigreturn32() 176 if (get_user(ufp, &sf->info.si_regs.u_regs[UREG_FP])) in do_sigreturn32() 182 if (__get_user(pc, &sf->info.si_regs.pc) || in do_sigreturn32() 183 __get_user(npc, &sf->info.si_regs.npc)) in do_sigreturn32() 197 err = __get_user(regs->y, &sf->info.si_regs.y); in do_sigreturn32() 198 err |= __get_user(psr, &sf->info.si_regs.psr); in do_sigreturn32() 201 err |= __get_user(regs->u_regs[i], &sf->info.si_regs.u_regs[i]); in do_sigreturn32() 203 err |= __get_user(i, &sf->v8plus.g_upper[0]); in do_sigreturn32() [all …]
|
| D | signal_64.c | 261 struct rt_signal_frame __user *sf; in do_rt_sigreturn() local 271 sf = (struct rt_signal_frame __user *) in do_rt_sigreturn() 275 if (invalid_frame_pointer(sf)) in do_rt_sigreturn() 278 if (get_user(ufp, &sf->regs.u_regs[UREG_FP])) in do_rt_sigreturn() 284 err = __get_user(tpc, &sf->regs.tpc); in do_rt_sigreturn() 285 err |= __get_user(tnpc, &sf->regs.tnpc); in do_rt_sigreturn() 293 err |= __get_user(regs->y, &sf->regs.y); in do_rt_sigreturn() 294 err |= __get_user(tstate, &sf->regs.tstate); in do_rt_sigreturn() 295 err |= copy_from_user(regs->u_regs, sf->regs.u_regs, sizeof(regs->u_regs)); in do_rt_sigreturn() 301 err |= __get_user(fpu_save, &sf->fpu_save); in do_rt_sigreturn() [all …]
|
| D | stacktrace.c | 33 struct sparc_stackf *sf; in __save_stack_trace() local 40 sf = (struct sparc_stackf *) fp; in __save_stack_trace() 41 regs = (struct pt_regs *) (sf + 1); in __save_stack_trace() 49 pc = sf->callers_pc; in __save_stack_trace() 50 fp = (unsigned long)sf->fp + STACK_BIAS; in __save_stack_trace()
|
| D | perf_event.c | 1729 struct sparc_stackf *sf; in perf_callchain_kernel() local 1736 sf = (struct sparc_stackf *) fp; in perf_callchain_kernel() 1737 regs = (struct pt_regs *) (sf + 1); in perf_callchain_kernel() 1745 pc = sf->callers_pc; in perf_callchain_kernel() 1746 fp = (unsigned long)sf->fp + STACK_BIAS; in perf_callchain_kernel() 1780 struct sparc_stackf sf; in perf_callchain_user_64() local 1784 if (!valid_user_frame(usf, sizeof(sf))) in perf_callchain_user_64() 1787 if (__copy_from_user_inatomic(&sf, usf, sizeof(sf))) in perf_callchain_user_64() 1790 pc = sf.callers_pc; in perf_callchain_user_64() 1791 ufp = (unsigned long)sf.fp + STACK_BIAS; in perf_callchain_user_64() [all …]
|
| D | traps_64.c | 2346 struct sparc_stackf *sf; in show_stack() local 2352 sf = (struct sparc_stackf *) fp; in show_stack() 2353 regs = (struct pt_regs *) (sf + 1); in show_stack() 2361 pc = sf->callers_pc; in show_stack() 2362 fp = (unsigned long)sf->fp + STACK_BIAS; in show_stack()
|
| /linux-4.4.14/arch/unicore32/kernel/ |
| D | signal.c | 55 static int restore_sigframe(struct pt_regs *regs, struct sigframe __user *sf) in restore_sigframe() argument 60 err = __copy_from_user(&set, &sf->uc.uc_sigmask, sizeof(set)); in restore_sigframe() 64 err |= __get_user(regs->UCreg_00, &sf->uc.uc_mcontext.regs.UCreg_00); in restore_sigframe() 65 err |= __get_user(regs->UCreg_01, &sf->uc.uc_mcontext.regs.UCreg_01); in restore_sigframe() 66 err |= __get_user(regs->UCreg_02, &sf->uc.uc_mcontext.regs.UCreg_02); in restore_sigframe() 67 err |= __get_user(regs->UCreg_03, &sf->uc.uc_mcontext.regs.UCreg_03); in restore_sigframe() 68 err |= __get_user(regs->UCreg_04, &sf->uc.uc_mcontext.regs.UCreg_04); in restore_sigframe() 69 err |= __get_user(regs->UCreg_05, &sf->uc.uc_mcontext.regs.UCreg_05); in restore_sigframe() 70 err |= __get_user(regs->UCreg_06, &sf->uc.uc_mcontext.regs.UCreg_06); in restore_sigframe() 71 err |= __get_user(regs->UCreg_07, &sf->uc.uc_mcontext.regs.UCreg_07); in restore_sigframe() [all …]
|
| /linux-4.4.14/sound/synth/emux/ |
| D | soundfont.c | 40 static int is_identical_font(struct snd_soundfont *sf, int type, unsigned char *name); 44 struct snd_soundfont *sf, struct snd_sf_zone *zp); 46 struct snd_soundfont *sf); 48 struct snd_soundfont *sf, struct snd_sf_sample *sp); 50 struct snd_soundfont *sf); 52 struct snd_soundfont *sf, struct snd_sf_sample *sp); 55 static int remove_info(struct snd_sf_list *sflist, struct snd_soundfont *sf, 59 static struct snd_sf_sample *set_sample(struct snd_soundfont *sf, 61 static struct snd_sf_sample *find_sample(struct snd_soundfont *sf, int sample_id); 236 struct snd_soundfont *sf; in open_patch() local [all …]
|
| /linux-4.4.14/arch/s390/kernel/ |
| D | process.c | 53 struct stack_frame *sf, *low, *high; in thread_saved_pc() local 59 sf = (struct stack_frame *) (tsk->thread.ksp & PSW_ADDR_INSN); in thread_saved_pc() 60 if (sf <= low || sf > high) in thread_saved_pc() 62 sf = (struct stack_frame *) (sf->back_chain & PSW_ADDR_INSN); in thread_saved_pc() 63 if (sf <= low || sf > high) in thread_saved_pc() 65 return sf->gprs[8]; in thread_saved_pc() 126 struct stack_frame sf; in copy_thread() member 145 frame->sf.back_chain = 0; in copy_thread() 147 frame->sf.gprs[8] = (unsigned long) ret_from_fork; in copy_thread() 149 frame->sf.gprs[9] = (unsigned long) frame; in copy_thread() [all …]
|
| D | stacktrace.c | 19 struct stack_frame *sf; in save_context_stack() local 27 sf = (struct stack_frame *)sp; in save_context_stack() 29 addr = sf->gprs[8] & PSW_ADDR_INSN; in save_context_stack() 37 sp = sf->back_chain & PSW_ADDR_INSN; in save_context_stack() 40 if (sp <= low || sp > high - sizeof(*sf)) in save_context_stack() 42 sf = (struct stack_frame *)sp; in save_context_stack() 45 sp = (unsigned long)(sf + 1); in save_context_stack()
|
| D | dumpstack.c | 32 struct stack_frame *sf; in __show_trace() local 38 if (sp < low || sp > high - sizeof(*sf)) in __show_trace() 40 sf = (struct stack_frame *) sp; in __show_trace() 41 addr = sf->gprs[8] & PSW_ADDR_INSN; in __show_trace() 46 sp = sf->back_chain & PSW_ADDR_INSN; in __show_trace() 49 if (sp <= low || sp > high - sizeof(*sf)) in __show_trace() 51 sf = (struct stack_frame *) sp; in __show_trace() 52 addr = sf->gprs[8] & PSW_ADDR_INSN; in __show_trace() 56 sp = (unsigned long) (sf + 1); in __show_trace()
|
| D | perf_event.c | 230 struct stack_frame *sf; in __store_trace() local 235 if (sp < low || sp > high - sizeof(*sf)) in __store_trace() 237 sf = (struct stack_frame *) sp; in __store_trace() 238 perf_callchain_store(entry, sf->gprs[8] & PSW_ADDR_INSN); in __store_trace() 242 sp = sf->back_chain & PSW_ADDR_INSN; in __store_trace() 245 if (sp <= low || sp > high - sizeof(*sf)) in __store_trace() 247 sf = (struct stack_frame *) sp; in __store_trace() 249 sf->gprs[8] & PSW_ADDR_INSN); in __store_trace() 252 sp = (unsigned long) (sf + 1); in __store_trace() 256 perf_callchain_store(entry, sf->gprs[8] & PSW_ADDR_INSN); in __store_trace()
|
| /linux-4.4.14/arch/arc/kernel/ |
| D | signal.c | 66 stash_usr_regs(struct rt_sigframe __user *sf, struct pt_regs *regs, in stash_usr_regs() argument 96 err = __copy_to_user(&(sf->uc.uc_mcontext.regs.scratch), &uregs.scratch, in stash_usr_regs() 97 sizeof(sf->uc.uc_mcontext.regs.scratch)); in stash_usr_regs() 98 err |= __copy_to_user(&sf->uc.uc_sigmask, set, sizeof(sigset_t)); in stash_usr_regs() 103 static int restore_usr_regs(struct pt_regs *regs, struct rt_sigframe __user *sf) in restore_usr_regs() argument 109 err = __copy_from_user(&set, &sf->uc.uc_sigmask, sizeof(set)); in restore_usr_regs() 114 &(sf->uc.uc_mcontext.regs.scratch), in restore_usr_regs() 115 sizeof(sf->uc.uc_mcontext.regs.scratch)); in restore_usr_regs() 154 struct rt_sigframe __user *sf; in SYSCALL_DEFINE0() local 168 sf = (struct rt_sigframe __force __user *)(regs->sp); in SYSCALL_DEFINE0() [all …]
|
| /linux-4.4.14/arch/arm/kernel/ |
| D | signal.c | 142 static int restore_sigframe(struct pt_regs *regs, struct sigframe __user *sf) in restore_sigframe() argument 148 err = __copy_from_user(&set, &sf->uc.uc_sigmask, sizeof(set)); in restore_sigframe() 152 __get_user_error(regs->ARM_r0, &sf->uc.uc_mcontext.arm_r0, err); in restore_sigframe() 153 __get_user_error(regs->ARM_r1, &sf->uc.uc_mcontext.arm_r1, err); in restore_sigframe() 154 __get_user_error(regs->ARM_r2, &sf->uc.uc_mcontext.arm_r2, err); in restore_sigframe() 155 __get_user_error(regs->ARM_r3, &sf->uc.uc_mcontext.arm_r3, err); in restore_sigframe() 156 __get_user_error(regs->ARM_r4, &sf->uc.uc_mcontext.arm_r4, err); in restore_sigframe() 157 __get_user_error(regs->ARM_r5, &sf->uc.uc_mcontext.arm_r5, err); in restore_sigframe() 158 __get_user_error(regs->ARM_r6, &sf->uc.uc_mcontext.arm_r6, err); in restore_sigframe() 159 __get_user_error(regs->ARM_r7, &sf->uc.uc_mcontext.arm_r7, err); in restore_sigframe() [all …]
|
| /linux-4.4.14/arch/s390/oprofile/ |
| D | backtrace.c | 15 struct stack_frame *sf; in __show_trace() local 20 if (sp < low || sp > high - sizeof(*sf)) in __show_trace() 22 sf = (struct stack_frame *) sp; in __show_trace() 24 oprofile_add_trace(sf->gprs[8] & PSW_ADDR_INSN); in __show_trace() 29 sp = sf->back_chain & PSW_ADDR_INSN; in __show_trace() 32 if (sp <= low || sp > high - sizeof(*sf)) in __show_trace() 34 sf = (struct stack_frame *) sp; in __show_trace() 36 oprofile_add_trace(sf->gprs[8] & PSW_ADDR_INSN); in __show_trace() 44 sp = (unsigned long) (sf + 1); in __show_trace() 49 oprofile_add_trace(sf->gprs[8] & PSW_ADDR_INSN); in __show_trace()
|
| /linux-4.4.14/arch/arm64/kernel/ |
| D | signal32.c | 324 struct compat_sigframe __user *sf) in compat_restore_sigframe() argument 330 err = get_sigset_t(&set, &sf->uc.uc_sigmask); in compat_restore_sigframe() 336 __get_user_error(regs->regs[0], &sf->uc.uc_mcontext.arm_r0, err); in compat_restore_sigframe() 337 __get_user_error(regs->regs[1], &sf->uc.uc_mcontext.arm_r1, err); in compat_restore_sigframe() 338 __get_user_error(regs->regs[2], &sf->uc.uc_mcontext.arm_r2, err); in compat_restore_sigframe() 339 __get_user_error(regs->regs[3], &sf->uc.uc_mcontext.arm_r3, err); in compat_restore_sigframe() 340 __get_user_error(regs->regs[4], &sf->uc.uc_mcontext.arm_r4, err); in compat_restore_sigframe() 341 __get_user_error(regs->regs[5], &sf->uc.uc_mcontext.arm_r5, err); in compat_restore_sigframe() 342 __get_user_error(regs->regs[6], &sf->uc.uc_mcontext.arm_r6, err); in compat_restore_sigframe() 343 __get_user_error(regs->regs[7], &sf->uc.uc_mcontext.arm_r7, err); in compat_restore_sigframe() [all …]
|
| D | signal.c | 96 struct rt_sigframe __user *sf) in restore_sigframe() argument 100 void *aux = sf->uc.uc_mcontext.__reserved; in restore_sigframe() 102 err = __copy_from_user(&set, &sf->uc.uc_sigmask, sizeof(set)); in restore_sigframe() 107 __get_user_error(regs->regs[i], &sf->uc.uc_mcontext.regs[i], in restore_sigframe() 109 __get_user_error(regs->sp, &sf->uc.uc_mcontext.sp, err); in restore_sigframe() 110 __get_user_error(regs->pc, &sf->uc.uc_mcontext.pc, err); in restore_sigframe() 111 __get_user_error(regs->pstate, &sf->uc.uc_mcontext.pstate, err); in restore_sigframe() 165 static int setup_sigframe(struct rt_sigframe __user *sf, in setup_sigframe() argument 169 void *aux = sf->uc.uc_mcontext.__reserved; in setup_sigframe() 173 __put_user_error(regs->regs[29], &sf->fp, err); in setup_sigframe() [all …]
|
| /linux-4.4.14/net/sunrpc/auth_gss/ |
| D | gss_generic_token.c | 120 unsigned char sf; in der_read_length() local 125 sf = *(*buf)++; in der_read_length() 127 if (sf & 0x80) { in der_read_length() 128 if ((sf &= 0x7f) > ((*bufsize)-1)) in der_read_length() 130 if (sf > SIZEOF_INT) in der_read_length() 133 for (; sf; sf--) { in der_read_length() 138 ret = sf; in der_read_length()
|
| /linux-4.4.14/arch/powerpc/perf/ |
| D | callchain.c | 224 struct signal_frame_64 __user *sf; in sane_signal_64_frame() local 227 sf = (struct signal_frame_64 __user *) sp; in sane_signal_64_frame() 228 if (read_user_stack_64((unsigned long __user *) &sf->pinfo, &pinfo) || in sane_signal_64_frame() 229 read_user_stack_64((unsigned long __user *) &sf->puc, &puc)) in sane_signal_64_frame() 231 return pinfo == (unsigned long) &sf->info && in sane_signal_64_frame() 232 puc == (unsigned long) &sf->uc; in sane_signal_64_frame() 390 struct signal_frame_32 __user *sf; in sane_signal_32_frame() local 393 sf = (struct signal_frame_32 __user *) (unsigned long) sp; in sane_signal_32_frame() 394 if (read_user_stack_32((unsigned int __user *) &sf->sctx.regs, ®s)) in sane_signal_32_frame() 396 return regs == (unsigned long) &sf->mctx; in sane_signal_32_frame() [all …]
|
| /linux-4.4.14/fs/btrfs/ |
| D | check-integrity.c | 301 static void btrfsic_stack_frame_free(struct btrfsic_stack_frame *sf); 957 struct btrfsic_stack_frame *sf; in btrfsic_stack_frame_alloc() local 959 sf = kzalloc(sizeof(*sf), GFP_NOFS); in btrfsic_stack_frame_alloc() 960 if (NULL == sf) in btrfsic_stack_frame_alloc() 963 sf->magic = BTRFSIC_BLOCK_STACK_FRAME_MAGIC_NUMBER; in btrfsic_stack_frame_alloc() 964 return sf; in btrfsic_stack_frame_alloc() 967 static void btrfsic_stack_frame_free(struct btrfsic_stack_frame *sf) in btrfsic_stack_frame_free() argument 969 BUG_ON(!(NULL == sf || in btrfsic_stack_frame_free() 970 BTRFSIC_BLOCK_STACK_FRAME_MAGIC_NUMBER == sf->magic)); in btrfsic_stack_frame_free() 971 kfree(sf); in btrfsic_stack_frame_free() [all …]
|
| /linux-4.4.14/block/ |
| D | blk-cgroup.c | 495 void blkcg_print_blkgs(struct seq_file *sf, struct blkcg *blkcg, in blkcg_print_blkgs() argument 508 total += prfill(sf, blkg->pd[pol->plid], data); in blkcg_print_blkgs() 514 seq_printf(sf, "Total %llu\n", (unsigned long long)total); in blkcg_print_blkgs() 526 u64 __blkg_prfill_u64(struct seq_file *sf, struct blkg_policy_data *pd, u64 v) in __blkg_prfill_u64() argument 533 seq_printf(sf, "%s %llu\n", dname, (unsigned long long)v); in __blkg_prfill_u64() 546 u64 __blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd, in __blkg_prfill_rwstat() argument 563 seq_printf(sf, "%s %s %llu\n", dname, rwstr[i], in __blkg_prfill_rwstat() 568 seq_printf(sf, "%s Total %llu\n", dname, (unsigned long long)v); in __blkg_prfill_rwstat() 581 u64 blkg_prfill_stat(struct seq_file *sf, struct blkg_policy_data *pd, int off) in blkg_prfill_stat() argument 583 return __blkg_prfill_u64(sf, pd, blkg_stat_read((void *)pd + off)); in blkg_prfill_stat() [all …]
|
| D | cfq-iosched.c | 1695 static u64 cfqg_prfill_weight_device(struct seq_file *sf, in cfqg_prfill_weight_device() argument 1702 return __blkg_prfill_u64(sf, pd, cfqg->dev_weight); in cfqg_prfill_weight_device() 1705 static int cfqg_print_weight_device(struct seq_file *sf, void *v) in cfqg_print_weight_device() argument 1707 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), in cfqg_print_weight_device() 1713 static u64 cfqg_prfill_leaf_weight_device(struct seq_file *sf, in cfqg_prfill_leaf_weight_device() argument 1720 return __blkg_prfill_u64(sf, pd, cfqg->dev_leaf_weight); in cfqg_prfill_leaf_weight_device() 1723 static int cfqg_print_leaf_weight_device(struct seq_file *sf, void *v) in cfqg_print_leaf_weight_device() argument 1725 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), in cfqg_print_leaf_weight_device() 1731 static int cfq_print_weight(struct seq_file *sf, void *v) in cfq_print_weight() argument 1733 struct blkcg *blkcg = css_to_blkcg(seq_css(sf)); in cfq_print_weight() [all …]
|
| D | blk-throttle.c | 1111 static u64 tg_prfill_conf_u64(struct seq_file *sf, struct blkg_policy_data *pd, in tg_prfill_conf_u64() argument 1119 return __blkg_prfill_u64(sf, pd, v); in tg_prfill_conf_u64() 1122 static u64 tg_prfill_conf_uint(struct seq_file *sf, struct blkg_policy_data *pd, in tg_prfill_conf_uint() argument 1130 return __blkg_prfill_u64(sf, pd, v); in tg_prfill_conf_uint() 1133 static int tg_print_conf_u64(struct seq_file *sf, void *v) in tg_print_conf_u64() argument 1135 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), tg_prfill_conf_u64, in tg_print_conf_u64() 1136 &blkcg_policy_throtl, seq_cft(sf)->private, false); in tg_print_conf_u64() 1140 static int tg_print_conf_uint(struct seq_file *sf, void *v) in tg_print_conf_uint() argument 1142 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), tg_prfill_conf_uint, in tg_print_conf_uint() 1143 &blkcg_policy_throtl, seq_cft(sf)->private, false); in tg_print_conf_uint() [all …]
|
| /linux-4.4.14/drivers/hwmon/ |
| D | emc6w201.c | 196 int sf = to_sensor_dev_attr_2(devattr)->index; in show_in() local 200 (unsigned)data->in[sf][nr] * nominal_mv[nr] / 0xC0); in show_in() 208 int sf = to_sensor_dev_attr_2(devattr)->index; in set_in() local 219 reg = (sf == min) ? EMC6W201_REG_IN_LOW(nr) in set_in() 223 data->in[sf][nr] = clamp_val(val, 0, 255); in set_in() 224 err = emc6w201_write8(client, reg, data->in[sf][nr]); in set_in() 234 int sf = to_sensor_dev_attr_2(devattr)->index; in show_temp() local 237 return sprintf(buf, "%d\n", (int)data->temp[sf][nr] * 1000); in show_temp() 245 int sf = to_sensor_dev_attr_2(devattr)->index; in set_temp() local 256 reg = (sf == min) ? EMC6W201_REG_TEMP_LOW(nr) in set_temp() [all …]
|
| /linux-4.4.14/drivers/staging/lustre/lustre/ptlrpc/ |
| D | sec_config.c | 141 static void get_default_flavor(struct sptlrpc_flavor *sf) in get_default_flavor() argument 143 memset(sf, 0, sizeof(*sf)); in get_default_flavor() 145 sf->sf_rpc = SPTLRPC_FLVR_NULL; in get_default_flavor() 146 sf->sf_flags = 0; in get_default_flavor() 382 struct sptlrpc_flavor *sf) in sptlrpc_rule_set_choose() argument 403 *sf = r->sr_flvr; in sptlrpc_rule_set_choose() 735 static inline void flavor_set_flags(struct sptlrpc_flavor *sf, in flavor_set_flags() argument 744 if (sf->sf_rpc == SPTLRPC_FLVR_NULL) in flavor_set_flags() 749 sf->sf_flags |= PTLRPC_SEC_FL_ROOTONLY; in flavor_set_flags() 752 sf->sf_flags |= PTLRPC_SEC_FL_ROOTONLY | PTLRPC_SEC_FL_BULK; in flavor_set_flags() [all …]
|
| D | sec.c | 195 char *sptlrpc_flavor2name_bulk(struct sptlrpc_flavor *sf, in sptlrpc_flavor2name_bulk() argument 198 if (SPTLRPC_FLVR_POLICY(sf->sf_rpc) == SPTLRPC_POLICY_PLAIN) in sptlrpc_flavor2name_bulk() 200 sptlrpc_get_hash_name(sf->u_bulk.hash.hash_alg)); in sptlrpc_flavor2name_bulk() 203 sptlrpc_flavor2name_base(sf->sf_rpc)); in sptlrpc_flavor2name_bulk() 210 char *sptlrpc_flavor2name(struct sptlrpc_flavor *sf, char *buf, int bufsize) in sptlrpc_flavor2name() argument 212 strlcpy(buf, sptlrpc_flavor2name_base(sf->sf_rpc), bufsize); in sptlrpc_flavor2name() 218 if (SPTLRPC_FLVR_POLICY(sf->sf_rpc) == SPTLRPC_POLICY_PLAIN) { in sptlrpc_flavor2name() 222 sptlrpc_flavor2name_bulk(sf, &bspec[1], sizeof(bspec) - 1); in sptlrpc_flavor2name() 1228 struct sptlrpc_flavor *sf, in sptlrpc_sec_create() argument 1241 sptlrpc_flavor2name(sf, str, sizeof(str))); in sptlrpc_sec_create() [all …]
|
| D | sec_null.c | 121 struct sptlrpc_flavor *sf) in null_create_sec() argument 123 LASSERT(SPTLRPC_FLVR_POLICY(sf->sf_rpc) == SPTLRPC_POLICY_NULL); in null_create_sec()
|
| D | ptlrpc_internal.h | 272 struct sptlrpc_flavor *sf);
|
| D | sec_plain.c | 438 struct sptlrpc_flavor *sf) in plain_create_sec() argument 444 LASSERT(SPTLRPC_FLVR_POLICY(sf->sf_rpc) == SPTLRPC_POLICY_PLAIN); in plain_create_sec() 462 sec->ps_flvr = *sf; in plain_create_sec()
|
| /linux-4.4.14/crypto/ |
| D | twofish_common.c | 499 ctx->s[1][i] = mds[1][q0[(b) ^ sb] ^ sf]; \ 507 ctx->s[1][i] = mds[1][q0[q1[(b) ^ sb] ^ sf] ^ sj]; \ 515 ctx->s[1][i] = mds[1][q0[q1[q1[(a) ^ sb] ^ sf] ^ sj] ^ sn]; \ 593 u8 sa = 0, sb = 0, sc = 0, sd = 0, se = 0, sf = 0, sg = 0, sh = 0; in __twofish_setkey() local 618 CALC_S (se, sf, sg, sh, 8, 0x00, 0x2D, 0x01, 0x2D); /* 01 A4 02 A4 */ in __twofish_setkey() 619 CALC_S (se, sf, sg, sh, 9, 0x2D, 0xA4, 0x44, 0x8A); /* A4 56 A1 55 */ in __twofish_setkey() 620 CALC_S (se, sf, sg, sh, 10, 0x8A, 0xD5, 0xBF, 0xD1); /* 55 82 FC 87 */ in __twofish_setkey() 621 CALC_S (se, sf, sg, sh, 11, 0xD1, 0x7F, 0x3D, 0x99); /* 87 F3 C1 5A */ in __twofish_setkey() 622 CALC_S (se, sf, sg, sh, 12, 0x99, 0x46, 0x66, 0x96); /* 5A 1E 47 58 */ in __twofish_setkey() 623 CALC_S (se, sf, sg, sh, 13, 0x96, 0x3C, 0x5B, 0xED); /* 58 C6 AE DB */ in __twofish_setkey() [all …]
|
| /linux-4.4.14/fs/kernfs/ |
| D | file.c | 93 static void kernfs_seq_stop_active(struct seq_file *sf, void *v) in kernfs_seq_stop_active() argument 95 struct kernfs_open_file *of = sf->private; in kernfs_seq_stop_active() 99 ops->seq_stop(sf, v); in kernfs_seq_stop_active() 103 static void *kernfs_seq_start(struct seq_file *sf, loff_t *ppos) in kernfs_seq_start() argument 105 struct kernfs_open_file *of = sf->private; in kernfs_seq_start() 118 void *next = ops->seq_start(sf, ppos); in kernfs_seq_start() 121 kernfs_seq_stop_active(sf, next); in kernfs_seq_start() 132 static void *kernfs_seq_next(struct seq_file *sf, void *v, loff_t *ppos) in kernfs_seq_next() argument 134 struct kernfs_open_file *of = sf->private; in kernfs_seq_next() 138 void *next = ops->seq_next(sf, v, ppos); in kernfs_seq_next() [all …]
|
| D | mount.c | 32 static int kernfs_sop_show_options(struct seq_file *sf, struct dentry *dentry) in kernfs_sop_show_options() argument 38 return scops->show_options(sf, root); in kernfs_sop_show_options()
|
| /linux-4.4.14/fs/xfs/ |
| D | xfs_attr_list.c | 73 xfs_attr_shortform_t *sf; in xfs_attr_shortform_list() local 83 sf = (xfs_attr_shortform_t *)dp->i_afp->if_u1.if_data; in xfs_attr_shortform_list() 84 ASSERT(sf != NULL); in xfs_attr_shortform_list() 85 if (!sf->hdr.count) in xfs_attr_shortform_list() 103 (dp->i_afp->if_bytes + sf->hdr.count * 16) < context->bufsize)) { in xfs_attr_shortform_list() 104 for (i = 0, sfe = &sf->list[0]; i < sf->hdr.count; i++) { in xfs_attr_shortform_list() 134 sbsize = sf->hdr.count * sizeof(*sbuf); in xfs_attr_shortform_list() 142 for (i = 0, sfe = &sf->list[0]; i < sf->hdr.count; i++) { in xfs_attr_shortform_list() 144 ((char *)sfe < (char *)sf) || in xfs_attr_shortform_list() 145 ((char *)sfe >= ((char *)sf + dp->i_afp->if_bytes)))) { in xfs_attr_shortform_list()
|
| /linux-4.4.14/net/netfilter/ |
| D | xt_osf.c | 69 struct xt_osf_finger *kf = NULL, *sf; in xt_osf_add_callback() local 86 list_for_each_entry(sf, &xt_osf_fingers[!!f->df], finger_entry) { in xt_osf_add_callback() 87 if (memcmp(&sf->finger, f, sizeof(struct xt_osf_user_finger))) in xt_osf_add_callback() 112 struct xt_osf_finger *sf; in xt_osf_remove_callback() local 120 list_for_each_entry(sf, &xt_osf_fingers[!!f->df], finger_entry) { in xt_osf_remove_callback() 121 if (memcmp(&sf->finger, f, sizeof(struct xt_osf_user_finger))) in xt_osf_remove_callback() 127 list_del_rcu(&sf->finger_entry); in xt_osf_remove_callback() 128 kfree_rcu(sf, rcu_head); in xt_osf_remove_callback()
|
| D | xt_hashlimit.c | 854 struct seq_file *sf = file->private_data; in dl_proc_open() local 855 sf->private = PDE_DATA(inode); in dl_proc_open()
|
| /linux-4.4.14/Documentation/ABI/stable/ |
| D | sysfs-class-tpm | 4 Contact: tpmdd-devel@lists.sf.net 12 Contact: tpmdd-devel@lists.sf.net 24 Contact: tpmdd-devel@lists.sf.net 32 Contact: tpmdd-devel@lists.sf.net 49 Contact: tpmdd-devel@lists.sf.net 72 Contact: tpmdd-devel@lists.sf.net 81 Contact: tpmdd-devel@lists.sf.net 89 Contact: tpmdd-devel@lists.sf.net 112 Contact: tpmdd-devel@lists.sf.net 164 Contact: tpmdd-devel@lists.sf.net [all …]
|
| /linux-4.4.14/fs/pstore/ |
| D | inode.c | 139 struct seq_file *sf = file->private_data; in pstore_file_read() local 140 struct pstore_private *ps = sf->private; in pstore_file_read() 150 struct seq_file *sf; in pstore_file_open() local 165 sf = file->private_data; in pstore_file_open() 166 sf->private = ps; in pstore_file_open() 173 struct seq_file *sf = file->private_data; in pstore_file_llseek() local 175 if (sf->op) in pstore_file_llseek()
|
| /linux-4.4.14/include/linux/ |
| D | blk-cgroup.h | 189 void blkcg_print_blkgs(struct seq_file *sf, struct blkcg *blkcg, 194 u64 __blkg_prfill_u64(struct seq_file *sf, struct blkg_policy_data *pd, u64 v); 195 u64 __blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd, 197 u64 blkg_prfill_stat(struct seq_file *sf, struct blkg_policy_data *pd, int off); 198 u64 blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd, 200 int blkg_print_stat_bytes(struct seq_file *sf, void *v); 201 int blkg_print_stat_ios(struct seq_file *sf, void *v); 202 int blkg_print_stat_bytes_recursive(struct seq_file *sf, void *v); 203 int blkg_print_stat_ios_recursive(struct seq_file *sf, void *v);
|
| D | cgroup-defs.h | 387 int (*seq_show)(struct seq_file *sf, void *v); 390 void *(*seq_start)(struct seq_file *sf, loff_t *ppos); 391 void *(*seq_next)(struct seq_file *sf, void *v, loff_t *ppos); 392 void (*seq_stop)(struct seq_file *sf, void *v);
|
| D | kernfs.h | 148 int (*show_options)(struct seq_file *sf, struct kernfs_root *root); 201 int (*seq_show)(struct seq_file *sf, void *v); 203 void *(*seq_start)(struct seq_file *sf, loff_t *ppos); 204 void *(*seq_next)(struct seq_file *sf, void *v, loff_t *ppos); 205 void (*seq_stop)(struct seq_file *sf, void *v);
|
| /linux-4.4.14/drivers/media/platform/blackfin/ |
| D | bfin_capture.c | 162 struct bcap_format *sf; in bcap_init_sensor_formats() local 174 sf = kzalloc(num_formats * sizeof(*sf), GFP_KERNEL); in bcap_init_sensor_formats() 175 if (!sf) in bcap_init_sensor_formats() 187 kfree(sf); in bcap_init_sensor_formats() 190 sf[i] = bcap_formats[j]; in bcap_init_sensor_formats() 192 bcap_dev->sensor_formats = sf; in bcap_init_sensor_formats() 612 struct bcap_format *sf = bcap->sensor_formats; in bcap_try_format() local 621 fmt = &sf[i]; in bcap_try_format() 626 fmt = &sf[0]; in bcap_try_format() 636 fmt = &sf[i]; in bcap_try_format() [all …]
|
| /linux-4.4.14/kernel/sched/ |
| D | cpuacct.c | 185 static int cpuacct_stats_show(struct seq_file *sf, void *v) in cpuacct_stats_show() argument 187 struct cpuacct *ca = css_ca(seq_css(sf)); in cpuacct_stats_show() 197 seq_printf(sf, "%s %lld\n", cpuacct_stat_desc[CPUACCT_STAT_USER], val); in cpuacct_stats_show() 208 seq_printf(sf, "%s %lld\n", cpuacct_stat_desc[CPUACCT_STAT_SYSTEM], val); in cpuacct_stats_show()
|
| D | core.c | 8511 static int cpu_stats_show(struct seq_file *sf, void *v) in cpu_stats_show() argument 8513 struct task_group *tg = css_tg(seq_css(sf)); in cpu_stats_show() 8516 seq_printf(sf, "nr_periods %d\n", cfs_b->nr_periods); in cpu_stats_show() 8517 seq_printf(sf, "nr_throttled %d\n", cfs_b->nr_throttled); in cpu_stats_show() 8518 seq_printf(sf, "throttled_time %llu\n", cfs_b->throttled_time); in cpu_stats_show()
|
| /linux-4.4.14/kernel/ |
| D | cgroup_pids.c | 269 static int pids_max_show(struct seq_file *sf, void *v) in pids_max_show() argument 271 struct cgroup_subsys_state *css = seq_css(sf); in pids_max_show() 276 seq_printf(sf, "%s\n", PIDS_MAX_STR); in pids_max_show() 278 seq_printf(sf, "%lld\n", limit); in pids_max_show()
|
| D | cpuset.c | 1747 static int cpuset_common_seq_show(struct seq_file *sf, void *v) in cpuset_common_seq_show() argument 1749 struct cpuset *cs = css_cs(seq_css(sf)); in cpuset_common_seq_show() 1750 cpuset_filetype_t type = seq_cft(sf)->private; in cpuset_common_seq_show() 1757 seq_printf(sf, "%*pbl\n", cpumask_pr_args(cs->cpus_allowed)); in cpuset_common_seq_show() 1760 seq_printf(sf, "%*pbl\n", nodemask_pr_args(&cs->mems_allowed)); in cpuset_common_seq_show() 1763 seq_printf(sf, "%*pbl\n", cpumask_pr_args(cs->effective_cpus)); in cpuset_common_seq_show() 1766 seq_printf(sf, "%*pbl\n", nodemask_pr_args(&cs->effective_mems)); in cpuset_common_seq_show()
|
| D | auditfilter.c | 751 struct audit_field *sf) in audit_dupe_lsm_field() argument 757 lsm_str = kstrdup(sf->lsm_str, GFP_KERNEL); in audit_dupe_lsm_field()
|
| /linux-4.4.14/fs/xfs/libxfs/ |
| D | xfs_attr_leaf.c | 530 xfs_attr_shortform_t *sf; in xfs_attr_shortform_add() local 545 sf = (xfs_attr_shortform_t *)ifp->if_u1.if_data; in xfs_attr_shortform_add() 546 sfe = &sf->list[0]; in xfs_attr_shortform_add() 547 for (i = 0; i < sf->hdr.count; sfe = XFS_ATTR_SF_NEXTENTRY(sfe), i++) { in xfs_attr_shortform_add() 559 offset = (char *)sfe - (char *)sf; in xfs_attr_shortform_add() 562 sf = (xfs_attr_shortform_t *)ifp->if_u1.if_data; in xfs_attr_shortform_add() 563 sfe = (xfs_attr_sf_entry_t *)((char *)sf + offset); in xfs_attr_shortform_add() 570 sf->hdr.count++; in xfs_attr_shortform_add() 571 be16_add_cpu(&sf->hdr.totsize, size); in xfs_attr_shortform_add() 602 xfs_attr_shortform_t *sf; in xfs_attr_shortform_remove() local [all …]
|
| /linux-4.4.14/fs/hostfs/ |
| D | hostfs_kern.c | 193 static int hostfs_statfs(struct dentry *dentry, struct kstatfs *sf) in hostfs_statfs() argument 208 &sf->f_bsize, &f_blocks, &f_bfree, &f_bavail, &f_files, in hostfs_statfs() 209 &f_ffree, &sf->f_fsid, sizeof(sf->f_fsid), in hostfs_statfs() 210 &sf->f_namelen); in hostfs_statfs() 213 sf->f_blocks = f_blocks; in hostfs_statfs() 214 sf->f_bfree = f_bfree; in hostfs_statfs() 215 sf->f_bavail = f_bavail; in hostfs_statfs() 216 sf->f_files = f_files; in hostfs_statfs() 217 sf->f_ffree = f_ffree; in hostfs_statfs() 218 sf->f_type = HOSTFS_SUPER_MAGIC; in hostfs_statfs()
|
| /linux-4.4.14/net/core/ |
| D | netprio_cgroup.c | 176 static int read_priomap(struct seq_file *sf, void *v) in read_priomap() argument 182 seq_printf(sf, "%s %u\n", dev->name, in read_priomap() 183 netprio_prio(seq_css(sf), dev)); in read_priomap()
|
| D | neighbour.c | 2809 struct seq_file *sf = file->private_data; in neigh_stat_seq_open() local 2810 sf->private = PDE_DATA(inode); in neigh_stat_seq_open()
|
| /linux-4.4.14/fs/sysfs/ |
| D | file.c | 42 static int sysfs_kf_seq_show(struct seq_file *sf, void *v) in sysfs_kf_seq_show() argument 44 struct kernfs_open_file *of = sf->private; in sysfs_kf_seq_show() 51 count = seq_get_buf(sf, &buf); in sysfs_kf_seq_show() 53 seq_commit(sf, -1); in sysfs_kf_seq_show() 78 seq_commit(sf, count); in sysfs_kf_seq_show()
|
| /linux-4.4.14/sound/soc/codecs/ |
| D | max9850.c | 136 u8 sf, da; in max9850_hw_params() local 142 sf = (snd_soc_read(codec, MAX9850_CLOCK) >> 2) + 1; in max9850_hw_params() 145 lrclk_div *= sf; in max9850_hw_params()
|
| /linux-4.4.14/arch/arm/mach-omap2/ |
| D | omap_hwmod.c | 1345 u8 idlemode, sf; in _enable_sysc() local 1366 sf = oh->class->sysc->sysc_flags; in _enable_sysc() 1369 if (sf & SYSC_HAS_SIDLEMODE) { in _enable_sysc() 1374 if (sf & SYSC_HAS_ENAWAKEUP) in _enable_sysc() 1394 if (sf & SYSC_HAS_MIDLEMODE) { in _enable_sysc() 1400 if (sf & SYSC_HAS_ENAWAKEUP) in _enable_sysc() 1416 (sf & SYSC_HAS_CLOCKACTIVITY)) in _enable_sysc() 1425 if (sf & SYSC_HAS_AUTOIDLE) { in _enable_sysc() 1444 u8 idlemode, sf; in _idle_sysc() local 1451 sf = oh->class->sysc->sysc_flags; in _idle_sysc() [all …]
|
| /linux-4.4.14/arch/m68k/68360/ |
| D | Makefile | 12 ln -sf head-$(model-y).o $(obj)/head.o
|
| /linux-4.4.14/tools/lguest/ |
| D | Makefile | 8 ln -sf ../../../../include/uapi/linux/virtio_types.h $@
|
| /linux-4.4.14/drivers/usb/misc/sisusbvga/ |
| D | sisusb_init.c | 769 unsigned short si, di, bx, sf; in SiS_LoadDAC() local 795 sf = 0; in SiS_LoadDAC() 808 SiS_SetRegByte(SiS_Pr, DACData, (data2 << sf)); in SiS_LoadDAC() 815 data = table[i] << sf; in SiS_LoadDAC() 825 SiS_WriteDAC(SiS_Pr, DACData, sf, n, in SiS_LoadDAC() 832 SiS_WriteDAC(SiS_Pr, DACData, sf, n, in SiS_LoadDAC()
|
| /linux-4.4.14/net/netlabel/ |
| D | Kconfig | 15 * http://netlabel.sf.net
|
| /linux-4.4.14/drivers/hid/ |
| D | hid-wiimote-debug.c | 130 struct seq_file *sf = f->private_data; in wiidebug_drm_write() local 131 struct wiimote_debug *dbg = sf->private; in wiidebug_drm_write()
|
| /linux-4.4.14/drivers/media/platform/exynos4-is/ |
| D | fimc-m2m.c | 104 struct fimc_frame *sf, *df; in fimc_device_run() local 116 sf = &ctx->s_frame; in fimc_device_run() 121 fimc_prepare_dma_offset(ctx, sf); in fimc_device_run() 126 ret = fimc_prepare_addr(ctx, &src_vb->vb2_buf, sf, &sf->paddr); in fimc_device_run() 163 fimc_hw_set_input_addr(fimc, &sf->paddr); in fimc_device_run()
|
| /linux-4.4.14/drivers/net/wireless/iwlwifi/mvm/ |
| D | Makefile | 3 iwlmvm-y += utils.o rx.o tx.o binding.o quota.o sta.o sf.o
|
| /linux-4.4.14/drivers/net/wireless/zd1211rw/ |
| D | Kconfig | 10 the firmware distribution from http://sf.net/projects/zd1211/files/
|
| /linux-4.4.14/arch/arc/boot/ |
| D | Makefile | 34 @ln -sf $(notdir $<) $@
|
| /linux-4.4.14/fs/ecryptfs/ |
| D | Kconfig | 11 obtained from <http://ecryptfs.sf.net>.
|
| /linux-4.4.14/net/9p/ |
| D | Kconfig | 12 See <http://v9fs.sf.net> for more information.
|
| /linux-4.4.14/Documentation/blockdev/ |
| D | nbd.txt | 16 tools, go to http://nbd.sf.net/.
|
| /linux-4.4.14/tools/perf/tests/ |
| D | make | 5 @echo "Testing Makefile"; $(MAKE) -sf tests/make MK=Makefile 6 @echo "Testing Makefile.perf"; $(MAKE) -sf tests/make MK=Makefile.perf 10 @echo "Testing Makefile"; $(MAKE) -sf tests/make MK=Makefile $@
|
| /linux-4.4.14/fs/ntfs/ |
| D | inode.c | 2312 int ntfs_show_options(struct seq_file *sf, struct dentry *root) in ntfs_show_options() argument 2317 seq_printf(sf, ",uid=%i", from_kuid_munged(&init_user_ns, vol->uid)); in ntfs_show_options() 2318 seq_printf(sf, ",gid=%i", from_kgid_munged(&init_user_ns, vol->gid)); in ntfs_show_options() 2320 seq_printf(sf, ",umask=0%o", vol->fmask); in ntfs_show_options() 2322 seq_printf(sf, ",fmask=0%o", vol->fmask); in ntfs_show_options() 2323 seq_printf(sf, ",dmask=0%o", vol->dmask); in ntfs_show_options() 2325 seq_printf(sf, ",nls=%s", vol->nls_map->charset); in ntfs_show_options() 2327 seq_printf(sf, ",case_sensitive"); in ntfs_show_options() 2329 seq_printf(sf, ",show_sys_files"); in ntfs_show_options() 2331 seq_printf(sf, ",disable_sparse"); in ntfs_show_options() [all …]
|
| D | inode.h | 301 extern int ntfs_show_options(struct seq_file *sf, struct dentry *root);
|
| /linux-4.4.14/Documentation/networking/ |
| D | i40evf.txt | 47 to the issue to e1000-devel@lists.sf.net
|
| D | ixgbevf.txt | 52 to the issue to e1000-devel@lists.sf.net
|
| D | sctp.txt | 32 http://www.sf.net/projects/lksctp
|
| D | igbvf.txt | 80 to the issue to e1000-devel@lists.sf.net
|
| D | README.ipw2200 | 170 SourceForge project at http://ipw2200.sf.net) 433 http://ipw2200.sf.net/ 445 http://ipw2200.sf.net/
|
| D | igb.txt | 129 to the issue to e1000-devel@lists.sf.net
|
| D | README.ipw2100 | 194 You can obtain these images from <http://ipw2100.sf.net/firmware.php>. 258 http://ipw2100.sf.net/
|
| D | ixgbe.txt | 266 http://e1000.sf.net 349 to the issue to e1000-devel@lists.sf.net
|
| D | baycom.txt | 82 simple. Once installed, four interfaces named bc{sf,sh,p,e}[0-3] are available.
|
| D | e1000e.txt | 312 to the issue to e1000-devel@lists.sf.net
|
| D | ixgb.txt | 433 to the issue to e1000-devel@lists.sf.net
|
| D | e1000.txt | 461 to the issue to e1000-devel@lists.sf.net
|
| /linux-4.4.14/fs/9p/ |
| D | Kconfig | 8 See <http://v9fs.sf.net> for more information.
|
| /linux-4.4.14/arch/metag/boot/ |
| D | Makefile | 67 @ln -sf $(notdir $<) $@
|
| /linux-4.4.14/sound/pci/ctxfi/ |
| D | ctsrc.h | 60 int (*set_sf)(struct src *src, unsigned int sf);
|
| D | cthardware.h | 94 int (*src_set_sf)(void *blk, unsigned int sf);
|
| D | ctsrc.c | 58 static int src_set_sf(struct src *src, unsigned int sf) in src_set_sf() argument 63 hw->src_set_sf(src->rsc.ctrl_blk, sf); in src_set_sf()
|
| D | cthw20k2.c | 213 static int src_set_sf(void *blk, unsigned int sf) in src_set_sf() argument 217 set_field(&ctl->ctl, SRCCTL_SF, sf); in src_set_sf()
|
| D | cthw20k1.c | 213 static int src_set_sf(void *blk, unsigned int sf) in src_set_sf() argument 217 set_field(&ctl->ctl, SRCCTL_SF, sf); in src_set_sf()
|
| /linux-4.4.14/arch/arm/vdso/ |
| D | Makefile | 69 ln -sf "../../vdso.so" "$(MODLIB)/vdso/.build-id/$$first/$$last.debug"; \
|
| /linux-4.4.14/arch/blackfin/boot/ |
| D | Makefile | 68 @ln -sf $(notdir $<) $@
|
| /linux-4.4.14/drivers/media/platform/ |
| D | via-camera.c | 467 int sf; in viacam_set_scale() local 472 sf = (cam->user_format.width*2048)/VGA_WIDTH; in viacam_set_scale() 473 avscale = VCR_AVS_HEN | sf; in viacam_set_scale() 476 sf = (1024*cam->user_format.height)/VGA_HEIGHT; in viacam_set_scale() 477 avscale |= VCR_AVS_VEN | (sf << 16); in viacam_set_scale()
|
| /linux-4.4.14/arch/mips/boot/ |
| D | Makefile | 101 @ln -sf $(notdir $<) $@
|
| /linux-4.4.14/Documentation/power/ |
| D | apm-acpi.txt | 32 acpid: http://acpid.sf.net/
|
| D | s2ram.txt | 6 1) Check suspend.sf.net, program s2ram there has long whitelist of
|
| D | video.txt | 27 www.sf.net/projects/suspend . If you get a system that is not in the
|
| D | basic-pm-debugging.txt | 183 tool available from http://suspend.sf.net and documented at
|
| D | swsusp.txt | 437 slow, take a look at suspend.sf.net -- userland suspend is faster and
|
| /linux-4.4.14/arch/powerpc/kernel/ |
| D | signal_32.c | 1502 struct sigframe __user *sf; in sys_sigreturn() local 1516 sf = (struct sigframe __user *)(regs->gpr[1] + __SIGNAL_FRAMESIZE); in sys_sigreturn() 1517 sc = &sf->sctx; in sys_sigreturn() 1535 mcp = (struct mcontext __user *)&sf->mctx; in sys_sigreturn() 1536 tm_mcp = (struct mcontext __user *)&sf->mctx_transact; in sys_sigreturn()
|
| /linux-4.4.14/scripts/package/ |
| D | Makefile | 42 ln -sf $(srctree) $(2); \
|
| D | builddeb | 334 ln -sf "/usr/src/linux-headers-$version" "$kernel_headers_dir/lib/modules/$version/build"
|
| /linux-4.4.14/drivers/media/pci/zoran/ |
| D | Kconfig | 9 a driver homepage at <http://mjpeg.sf.net/driver-zoran/>. For
|
| /linux-4.4.14/arch/sh/boot/ |
| D | Makefile | 110 @ln -sf $(notdir $<) $@
|
| /linux-4.4.14/Documentation/DocBook/media/ |
| D | Makefile | 210 @(ln -sf `cd $(MEDIA_SRC_DIR) && /bin/pwd`/v4l/*xml $(MEDIA_OBJ_DIR)/) 211 @(ln -sf `cd $(MEDIA_SRC_DIR) && /bin/pwd`/dvb/*xml $(MEDIA_OBJ_DIR)/)
|
| /linux-4.4.14/tools/perf/util/ |
| D | sort.c | 329 char *sf, *p; in get_srcfile() local 332 sf = __get_srcline(map->dso, map__rip_2objdump(map, e->ip), in get_srcfile() 334 if (!strcmp(sf, SRCLINE_UNKNOWN)) in get_srcfile() 336 p = strchr(sf, ':'); in get_srcfile() 337 if (p && *sf) { in get_srcfile() 339 return sf; in get_srcfile() 341 free(sf); in get_srcfile()
|
| /linux-4.4.14/drivers/atm/ |
| D | ambassador.c | 1857 static inline void sf (const char * msg) in sf() function 1902 sf ("interrupt"); in amb_reset() 1904 sf ("SUNI data pattern"); in amb_reset() 1906 sf ("SUNI data bits"); in amb_reset() 1908 sf ("SUNI UTOPIA interface"); in amb_reset() 1910 sf ("SUNI cell buffer FIFO"); in amb_reset() 1912 sf ("bad SRAM"); in amb_reset()
|
| /linux-4.4.14/Documentation/fb/ |
| D | internals.txt | 6 James Simmons <jsimmons@user.sf.net>, Nov 26 2002
|
| /linux-4.4.14/drivers/staging/lustre/lustre/include/ |
| D | lustre_sec.h | 913 char *sptlrpc_flavor2name_bulk(struct sptlrpc_flavor *sf, 915 char *sptlrpc_flavor2name(struct sptlrpc_flavor *sf, char *buf, int bufsize);
|
| /linux-4.4.14/drivers/mmc/card/ |
| D | mmc_test.c | 2735 static int mtf_test_show(struct seq_file *sf, void *data) in mtf_test_show() argument 2737 struct mmc_card *card = (struct mmc_card *)sf->private; in mtf_test_show() 2748 seq_printf(sf, "Test %d: %d\n", gr->testcase + 1, gr->result); in mtf_test_show() 2751 seq_printf(sf, "%u %d %lu.%09lu %u %u.%02u\n", in mtf_test_show() 2772 struct seq_file *sf = (struct seq_file *)file->private_data; local 2773 struct mmc_card *card = (struct mmc_card *)sf->private; 2826 static int mtf_testlist_show(struct seq_file *sf, void *data) argument 2833 seq_printf(sf, "%d:\t%s\n", i+1, mmc_test_cases[i].name);
|
| /linux-4.4.14/Documentation/filesystems/ |
| D | ecryptfs.txt | 11 Web Site: http://ecryptfs.sf.net
|
| D | omfs.txt | 18 http://linux-karma.sf.net/
|
| D | 9p.txt | 152 (http://sf.net/apps/mediawiki/v9fs/index.php).
|
| /linux-4.4.14/arch/tile/kernel/ |
| D | hardwall.c | 909 static int hardwall_proc_show(struct seq_file *sf, void *v) in hardwall_proc_show() argument 911 struct hardwall_info *info = sf->private; in hardwall_proc_show() 913 seq_printf(sf, "%*pbl\n", cpumask_pr_args(&info->cpumask)); in hardwall_proc_show()
|
| /linux-4.4.14/drivers/net/wireless/ipw2x00/ |
| D | Kconfig | 24 <http://ipw2100.sf.net/>. Once you have the firmware image, you 86 <http://ipw2200.sf.net/>. See the above referenced README.ipw2200
|
| /linux-4.4.14/drivers/media/dvb-core/ |
| D | dvb_demux.c | 933 struct dmx_section_filter *sf; in prepare_secfilters() local 939 sf = &f->filter; in prepare_secfilters() 942 mode = sf->filter_mode[i]; in prepare_secfilters() 943 mask = sf->filter_mask[i]; in prepare_secfilters()
|
| /linux-4.4.14/tools/testing/selftests/rcutorture/doc/ |
| D | initrd.txt | 35 ln -sf /proc/mounts /etc/mtab
|
| /linux-4.4.14/Documentation/laptops/ |
| D | asus-laptop.txt | 7 http://acpi4asus.sf.net/ 43 site, http://acpi4asus.sf.net/.
|
| D | thinkpad-acpi.txt | 6 Borislav Deianov <borislav@users.sf.net> 8 http://ibm-acpi.sf.net/ 51 site, http://ibm-acpi.sf.net/. I appreciate any success or failure
|
| /linux-4.4.14/net/ipv4/netfilter/ |
| D | ipt_CLUSTERIP.c | 656 struct seq_file *sf = file->private_data; in clusterip_proc_open() local 659 sf->private = c; in clusterip_proc_open()
|
| /linux-4.4.14/Documentation/video4linux/ |
| D | Zoran | 328 the MJPEG-tools (http://mjpeg.sf.net/). 478 an email to <mjpeg-users@lists.sf.net>, for developers (i.e. if you want to 479 help programming), send an email to <mjpeg-developer@lists.sf.net>. See 480 http://www.sf.net/projects/mjpeg/ for subscription information. 484 you're using the latest version (http://mjpeg.sf.net/driver-zoran/).
|
| D | README.cpia2 | 123 and old MJPEG ioctl API. See cpia2.sf.net for 2.4 support.
|
| /linux-4.4.14/arch/x86/entry/vdso/ |
| D | Makefile | 181 ln -sf "../../$(@:install_%=%)" "$(MODLIB)/vdso/.build-id/$$first/$$last.debug"; \
|
| /linux-4.4.14/drivers/video/fbdev/sis/ |
| D | init.c | 2877 unsigned short si, di, bx, sf; in SiS_LoadDAC() local 2900 sf = 0; in SiS_LoadDAC() 2904 sf = 2; in SiS_LoadDAC() 2915 SiS_SetRegByte(DACData, (data2 << sf)); in SiS_LoadDAC() 2922 data = table[i] << sf; in SiS_LoadDAC() 2931 SiS_WriteDAC(SiS_Pr, DACData, sf, n, table[di], table[bx], table[si]); in SiS_LoadDAC() 2936 SiS_WriteDAC(SiS_Pr, DACData, sf, n, table[di], table[si], table[bx]); in SiS_LoadDAC()
|
| /linux-4.4.14/Documentation/scsi/ |
| D | hpsa.txt | 129 agents, etc. See cciss_vol_status at http://cciss.sf.net for some examples.
|
| /linux-4.4.14/arch/powerpc/include/asm/ |
| D | ps3av.h | 497 u8 sf:3; member
|
| /linux-4.4.14/arch/x86/kvm/ |
| D | vmx.c | 3475 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg]; in fix_rmode_seg() local 3500 vmcs_write16(sf->selector, var.selector); in fix_rmode_seg() 3501 vmcs_write32(sf->base, var.base); in fix_rmode_seg() 3502 vmcs_write32(sf->limit, var.limit); in fix_rmode_seg() 3503 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(&var)); in fix_rmode_seg() 3918 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg]; in vmx_set_segment() local 3925 vmcs_write16(sf->selector, var->selector); in vmx_set_segment() 3931 vmcs_writel(sf->base, var->base); in vmx_set_segment() 3932 vmcs_write32(sf->limit, var->limit); in vmx_set_segment() 3933 vmcs_write16(sf->selector, var->selector); in vmx_set_segment() [all …]
|
| /linux-4.4.14/drivers/mmc/host/ |
| D | vub300.c | 1371 struct sdio_func *sf = card->sdio_func[n]; in download_offload_pseudocode() local 1374 sf->vendor, sf->device); in download_offload_pseudocode()
|
| /linux-4.4.14/drivers/ps3/ |
| D | ps3av_cmd.c | 621 info->pb2.sf = 0; in ps3av_cnv_info()
|
| /linux-4.4.14/mm/ |
| D | memcontrol.c | 3593 static int mem_cgroup_oom_control_read(struct seq_file *sf, void *v) in mem_cgroup_oom_control_read() argument 3595 struct mem_cgroup *memcg = mem_cgroup_from_css(seq_css(sf)); in mem_cgroup_oom_control_read() 3597 seq_printf(sf, "oom_kill_disable %d\n", memcg->oom_kill_disable); in mem_cgroup_oom_control_read() 3598 seq_printf(sf, "under_oom %d\n", (bool)memcg->under_oom); in mem_cgroup_oom_control_read()
|
| /linux-4.4.14/Documentation/ide/ |
| D | ide.txt | 128 ln -sf /dev/hdc /dev/cdrom
|
| /linux-4.4.14/kernel/power/ |
| D | Kconfig | 51 from <http://suspend.sf.net>.
|
| /linux-4.4.14/Documentation/ |
| D | Changes | 407 o <http://oprofile.sf.net/download/>
|
| D | devices.txt | 1144 59 char sf firewall package 1145 0 = /dev/firewall Communication with sf kernel module 2034 http://sf.net/projects/evms
|
| /linux-4.4.14/drivers/platform/x86/ |
| D | Kconfig | 90 For more information see <http://acpi4asus.sf.net>. 371 <http://ibm-acpi.sf.net/> .
|
| /linux-4.4.14/arch/m68k/ifpsp060/src/ |
| D | ilsp.S | 131 sf POSNEG(%a6) # unsigned operation
|
| /linux-4.4.14/drivers/dma/ |
| D | imx-sdma.c | 230 u32 sf : 1; member
|
| /linux-4.4.14/ |
| D | CREDITS | 752 E: lfcorreia@users.sf.net 1982 W: http://vtun.sf.net 1983 W: http://bluez.sf.net 3347 E: jsimmons@users.sf.net
|
| D | MAINTAINERS | 1789 W: http://acpi4asus.sf.net 2154 T: git git://git.code.sf.net/p/adi-linux/code 5501 T: git git://git.code.sf.net/p/intel-sas/isci 7356 W: http://netlabel.sf.net 7931 L: oprofile-list@lists.sf.net
|
| /linux-4.4.14/Documentation/sound/oss/ |
| D | README.OSS | 992 uses /dev/dsp (and /dev/audio). Command "ln -sf /dev/dsp1 /dev/dsp"
|
| /linux-4.4.14/Documentation/virtual/uml/ |
| D | UserModeLinux-HOWTO.txt | 4576 <http://user-mode-linux.sourceforge.net/dl-sf.html> page in the Jail
|