/linux-4.1.27/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.1.27/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.1.27/net/mac80211/ |
D | debugfs.c | 102 int sf = 0; /* how many written so far */ in hwflags_read() local 107 sf += scnprintf(buf, mxln - sf, "0x%x\n", local->hw.flags); in hwflags_read() 109 sf += scnprintf(buf + sf, mxln - sf, "HAS_RATE_CONTROL\n"); in hwflags_read() 111 sf += scnprintf(buf + sf, mxln - sf, "RX_INCLUDES_FCS\n"); in hwflags_read() 113 sf += scnprintf(buf + sf, mxln - sf, in hwflags_read() 116 sf += scnprintf(buf + sf, mxln - sf, in hwflags_read() 119 sf += scnprintf(buf + sf, mxln - sf, in hwflags_read() 122 sf += scnprintf(buf + sf, mxln - sf, "SIGNAL_UNSPEC\n"); in hwflags_read() 124 sf += scnprintf(buf + sf, mxln - sf, "SIGNAL_DBM\n"); in hwflags_read() 126 sf += scnprintf(buf + sf, mxln - sf, in hwflags_read() [all …]
|
/linux-4.1.27/arch/sparc/kernel/ |
D | signal_32.c | 65 struct signal_frame __user *sf; in do_sigreturn() local 77 sf = (struct signal_frame __user *) regs->u_regs[UREG_FP]; in do_sigreturn() 80 if (!access_ok(VERIFY_READ, sf, sizeof(*sf))) in do_sigreturn() 83 if (((unsigned long) sf) & 3) in do_sigreturn() 86 err = __get_user(pc, &sf->info.si_regs.pc); in do_sigreturn() 87 err |= __get_user(npc, &sf->info.si_regs.npc); in do_sigreturn() 94 err |= __copy_from_user(regs, &sf->info.si_regs, sizeof(struct pt_regs)); in do_sigreturn() 103 err |= __get_user(fpu_save, &sf->fpu_save); in do_sigreturn() 106 err |= __get_user(rwin_save, &sf->rwin_save); in do_sigreturn() 113 err |= __get_user(set.sig[0], &sf->info.si_mask); in do_sigreturn() [all …]
|
D | signal32.c | 143 struct signal_frame32 __user *sf; in do_sigreturn32() local 158 sf = (struct signal_frame32 __user *) regs->u_regs[UREG_FP]; in do_sigreturn32() 161 if (!access_ok(VERIFY_READ, sf, sizeof(*sf)) || in do_sigreturn32() 162 (((unsigned long) sf) & 3)) in do_sigreturn32() 165 if (get_user(pc, &sf->info.si_regs.pc) || in do_sigreturn32() 166 __get_user(npc, &sf->info.si_regs.npc)) in do_sigreturn32() 180 err = __get_user(regs->y, &sf->info.si_regs.y); in do_sigreturn32() 181 err |= __get_user(psr, &sf->info.si_regs.psr); in do_sigreturn32() 184 err |= __get_user(regs->u_regs[i], &sf->info.si_regs.u_regs[i]); in do_sigreturn32() 186 err |= __get_user(i, &sf->v8plus.g_upper[0]); in do_sigreturn32() [all …]
|
D | signal_64.c | 249 struct rt_signal_frame __user *sf; in do_rt_sigreturn() local 260 sf = (struct rt_signal_frame __user *) in do_rt_sigreturn() 264 if (((unsigned long) sf) & 3) in do_rt_sigreturn() 267 err = get_user(tpc, &sf->regs.tpc); in do_rt_sigreturn() 268 err |= __get_user(tnpc, &sf->regs.tnpc); in do_rt_sigreturn() 276 err |= __get_user(regs->y, &sf->regs.y); in do_rt_sigreturn() 277 err |= __get_user(tstate, &sf->regs.tstate); in do_rt_sigreturn() 278 err |= copy_from_user(regs->u_regs, sf->regs.u_regs, sizeof(regs->u_regs)); in do_rt_sigreturn() 284 err |= __get_user(fpu_save, &sf->fpu_save); in do_rt_sigreturn() 288 err |= __copy_from_user(&set, &sf->mask, sizeof(sigset_t)); 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 | 1711 struct sparc_stackf *sf; in perf_callchain_kernel() local 1718 sf = (struct sparc_stackf *) fp; in perf_callchain_kernel() 1719 regs = (struct pt_regs *) (sf + 1); in perf_callchain_kernel() 1727 pc = sf->callers_pc; in perf_callchain_kernel() 1728 fp = (unsigned long)sf->fp + STACK_BIAS; in perf_callchain_kernel() 1752 struct sparc_stackf sf; in perf_callchain_user_64() local 1756 if (__copy_from_user_inatomic(&sf, usf, sizeof(sf))) in perf_callchain_user_64() 1759 pc = sf.callers_pc; in perf_callchain_user_64() 1760 ufp = (unsigned long)sf.fp + STACK_BIAS; in perf_callchain_user_64() 1776 struct sparc_stackf sf; in perf_callchain_user_32() local [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.1.27/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.1.27/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.1.27/arch/arc/kernel/ |
D | signal.c | 66 stash_usr_regs(struct rt_sigframe __user *sf, struct pt_regs *regs, in stash_usr_regs() argument 70 err = __copy_to_user(&(sf->uc.uc_mcontext.regs.scratch), regs, in stash_usr_regs() 71 sizeof(sf->uc.uc_mcontext.regs.scratch)); in stash_usr_regs() 72 err |= __copy_to_user(&sf->uc.uc_sigmask, set, sizeof(sigset_t)); in stash_usr_regs() 77 static int restore_usr_regs(struct pt_regs *regs, struct rt_sigframe __user *sf) in restore_usr_regs() argument 82 err = __copy_from_user(&set, &sf->uc.uc_sigmask, sizeof(set)); in restore_usr_regs() 86 err |= __copy_from_user(regs, &(sf->uc.uc_mcontext.regs.scratch), in restore_usr_regs() 87 sizeof(sf->uc.uc_mcontext.regs.scratch)); in restore_usr_regs() 102 struct rt_sigframe __user *sf; in SYSCALL_DEFINE0() local 116 sf = (struct rt_sigframe __force __user *)(regs->sp); in SYSCALL_DEFINE0() [all …]
|
/linux-4.1.27/arch/s390/kernel/ |
D | process.c | 49 struct stack_frame *sf, *low, *high; in thread_saved_pc() local 55 sf = (struct stack_frame *) (tsk->thread.ksp & PSW_ADDR_INSN); in thread_saved_pc() 56 if (sf <= low || sf > high) in thread_saved_pc() 58 sf = (struct stack_frame *) (sf->back_chain & PSW_ADDR_INSN); in thread_saved_pc() 59 if (sf <= low || sf > high) in thread_saved_pc() 61 return sf->gprs[8]; in thread_saved_pc() 94 struct stack_frame sf; in copy_thread() member 113 frame->sf.back_chain = 0; in copy_thread() 115 frame->sf.gprs[8] = (unsigned long) ret_from_fork; in copy_thread() 117 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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/drivers/staging/lustre/lustre/ptlrpc/ |
D | sec_config.c | 162 static void get_default_flavor(struct sptlrpc_flavor *sf) in get_default_flavor() argument 164 memset(sf, 0, sizeof(*sf)); in get_default_flavor() 166 sf->sf_rpc = SPTLRPC_FLVR_NULL; in get_default_flavor() 167 sf->sf_flags = 0; in get_default_flavor() 406 struct sptlrpc_flavor *sf) in sptlrpc_rule_set_choose() argument 427 *sf = r->sr_flvr; in sptlrpc_rule_set_choose() 773 static inline void flavor_set_flags(struct sptlrpc_flavor *sf, in flavor_set_flags() argument 782 if (sf->sf_rpc == SPTLRPC_FLVR_NULL) in flavor_set_flags() 787 sf->sf_flags |= PTLRPC_SEC_FL_ROOTONLY; in flavor_set_flags() 790 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() 1277 struct sptlrpc_flavor *sf, in sptlrpc_sec_create() argument 1290 sptlrpc_flavor2name(sf, str, sizeof(str))); in sptlrpc_sec_create() [all …]
|
D | sec_null.c | 119 struct sptlrpc_flavor *sf) in null_create_sec() argument 121 LASSERT(SPTLRPC_FLVR_POLICY(sf->sf_rpc) == SPTLRPC_POLICY_NULL); in null_create_sec()
|
D | ptlrpc_internal.h | 284 struct sptlrpc_flavor *sf);
|
D | sec_plain.c | 439 struct sptlrpc_flavor *sf) in plain_create_sec() argument 445 LASSERT(SPTLRPC_FLVR_POLICY(sf->sf_rpc) == SPTLRPC_POLICY_PLAIN); in plain_create_sec() 463 sec->ps_flvr = *sf; in plain_create_sec()
|
D | lproc_ptlrpc.c | 910 struct seq_file *sf = seq_file; in target_print_req() local 916 seq_printf(sf, "<not swabbed>\n"); in target_print_req() 924 seq_printf(sf, "opc %d\n", lustre_msg_get_opc(req->rq_reqmsg)); in target_print_req()
|
/linux-4.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/include/linux/ |
D | cgroup-defs.h | 359 int (*seq_show)(struct seq_file *sf, void *v); 362 void *(*seq_start)(struct seq_file *sf, loff_t *ppos); 363 void *(*seq_next)(struct seq_file *sf, void *v, loff_t *ppos); 364 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.1.27/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.1.27/block/ |
D | blk-cgroup.c | 513 void blkcg_print_blkgs(struct seq_file *sf, struct blkcg *blkcg, in blkcg_print_blkgs() argument 526 total += prfill(sf, blkg->pd[pol->plid], data); in blkcg_print_blkgs() 532 seq_printf(sf, "Total %llu\n", (unsigned long long)total); in blkcg_print_blkgs() 544 u64 __blkg_prfill_u64(struct seq_file *sf, struct blkg_policy_data *pd, u64 v) in __blkg_prfill_u64() argument 551 seq_printf(sf, "%s %llu\n", dname, (unsigned long long)v); in __blkg_prfill_u64() 564 u64 __blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd, in __blkg_prfill_rwstat() argument 581 seq_printf(sf, "%s %s %llu\n", dname, rwstr[i], in __blkg_prfill_rwstat() 585 seq_printf(sf, "%s Total %llu\n", dname, (unsigned long long)v); in __blkg_prfill_rwstat() 598 u64 blkg_prfill_stat(struct seq_file *sf, struct blkg_policy_data *pd, int off) in blkg_prfill_stat() argument 600 return __blkg_prfill_u64(sf, pd, blkg_stat_read((void *)pd + off)); in blkg_prfill_stat() [all …]
|
D | blk-throttle.c | 1288 static u64 tg_prfill_cpu_rwstat(struct seq_file *sf, in tg_prfill_cpu_rwstat() argument 1306 return __blkg_prfill_rwstat(sf, pd, &rwstat); in tg_prfill_cpu_rwstat() 1309 static int tg_print_cpu_rwstat(struct seq_file *sf, void *v) in tg_print_cpu_rwstat() argument 1311 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), tg_prfill_cpu_rwstat, in tg_print_cpu_rwstat() 1312 &blkcg_policy_throtl, seq_cft(sf)->private, true); in tg_print_cpu_rwstat() 1316 static u64 tg_prfill_conf_u64(struct seq_file *sf, struct blkg_policy_data *pd, in tg_prfill_conf_u64() argument 1324 return __blkg_prfill_u64(sf, pd, v); in tg_prfill_conf_u64() 1327 static u64 tg_prfill_conf_uint(struct seq_file *sf, struct blkg_policy_data *pd, in tg_prfill_conf_uint() argument 1335 return __blkg_prfill_u64(sf, pd, v); in tg_prfill_conf_uint() 1338 static int tg_print_conf_u64(struct seq_file *sf, void *v) in tg_print_conf_u64() argument [all …]
|
D | cfq-iosched.c | 1638 static u64 cfqg_prfill_weight_device(struct seq_file *sf, in cfqg_prfill_weight_device() argument 1645 return __blkg_prfill_u64(sf, pd, cfqg->dev_weight); in cfqg_prfill_weight_device() 1648 static int cfqg_print_weight_device(struct seq_file *sf, void *v) in cfqg_print_weight_device() argument 1650 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), in cfqg_print_weight_device() 1656 static u64 cfqg_prfill_leaf_weight_device(struct seq_file *sf, in cfqg_prfill_leaf_weight_device() argument 1663 return __blkg_prfill_u64(sf, pd, cfqg->dev_leaf_weight); in cfqg_prfill_leaf_weight_device() 1666 static int cfqg_print_leaf_weight_device(struct seq_file *sf, void *v) in cfqg_print_leaf_weight_device() argument 1668 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), in cfqg_print_leaf_weight_device() 1674 static int cfq_print_weight(struct seq_file *sf, void *v) in cfq_print_weight() argument 1676 seq_printf(sf, "%u\n", css_to_blkcg(seq_css(sf))->cfq_weight); in cfq_print_weight() [all …]
|
D | blk-cgroup.h | 153 void blkcg_print_blkgs(struct seq_file *sf, struct blkcg *blkcg, 158 u64 __blkg_prfill_u64(struct seq_file *sf, struct blkg_policy_data *pd, u64 v); 159 u64 __blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd, 161 u64 blkg_prfill_stat(struct seq_file *sf, struct blkg_policy_data *pd, int off); 162 u64 blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
|
/linux-4.1.27/drivers/media/platform/blackfin/ |
D | bfin_capture.c | 160 struct bcap_format *sf; in bcap_init_sensor_formats() local 170 sf = kzalloc(num_formats * sizeof(*sf), GFP_KERNEL); in bcap_init_sensor_formats() 171 if (!sf) in bcap_init_sensor_formats() 182 kfree(sf); in bcap_init_sensor_formats() 185 sf[i] = bcap_formats[j]; in bcap_init_sensor_formats() 187 bcap_dev->sensor_formats = sf; in bcap_init_sensor_formats() 598 struct bcap_format *sf = bcap->sensor_formats; in bcap_try_format() local 604 fmt = &sf[i]; in bcap_try_format() 609 fmt = &sf[0]; in bcap_try_format() 619 fmt = &sf[i]; in bcap_try_format() [all …]
|
/linux-4.1.27/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 | 8298 static int cpu_stats_show(struct seq_file *sf, void *v) in cpu_stats_show() argument 8300 struct task_group *tg = css_tg(seq_css(sf)); in cpu_stats_show() 8303 seq_printf(sf, "nr_periods %d\n", cfs_b->nr_periods); in cpu_stats_show() 8304 seq_printf(sf, "nr_throttled %d\n", cfs_b->nr_throttled); in cpu_stats_show() 8305 seq_printf(sf, "throttled_time %llu\n", cfs_b->throttled_time); in cpu_stats_show()
|
/linux-4.1.27/fs/xfs/libxfs/ |
D | xfs_attr_leaf.c | 526 xfs_attr_shortform_t *sf; in xfs_attr_shortform_add() local 541 sf = (xfs_attr_shortform_t *)ifp->if_u1.if_data; in xfs_attr_shortform_add() 542 sfe = &sf->list[0]; in xfs_attr_shortform_add() 543 for (i = 0; i < sf->hdr.count; sfe = XFS_ATTR_SF_NEXTENTRY(sfe), i++) { in xfs_attr_shortform_add() 555 offset = (char *)sfe - (char *)sf; in xfs_attr_shortform_add() 558 sf = (xfs_attr_shortform_t *)ifp->if_u1.if_data; in xfs_attr_shortform_add() 559 sfe = (xfs_attr_sf_entry_t *)((char *)sf + offset); in xfs_attr_shortform_add() 566 sf->hdr.count++; in xfs_attr_shortform_add() 567 be16_add_cpu(&sf->hdr.totsize, size); in xfs_attr_shortform_add() 598 xfs_attr_shortform_t *sf; in xfs_attr_shortform_remove() local [all …]
|
/linux-4.1.27/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.1.27/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 | 2757 struct seq_file *sf = file->private_data; in neigh_stat_seq_open() local 2758 sf->private = PDE_DATA(inode); in neigh_stat_seq_open()
|
/linux-4.1.27/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.1.27/sound/soc/codecs/ |
D | max9850.c | 137 u8 sf, da; in max9850_hw_params() local 143 sf = (snd_soc_read(codec, MAX9850_CLOCK) >> 2) + 1; in max9850_hw_params() 146 lrclk_div *= sf; in max9850_hw_params()
|
/linux-4.1.27/arch/arm/mach-omap2/ |
D | omap_hwmod.c | 1331 u8 idlemode, sf; in _enable_sysc() local 1352 sf = oh->class->sysc->sysc_flags; in _enable_sysc() 1355 if (sf & SYSC_HAS_SIDLEMODE) { in _enable_sysc() 1360 if (sf & SYSC_HAS_ENAWAKEUP) in _enable_sysc() 1380 if (sf & SYSC_HAS_MIDLEMODE) { in _enable_sysc() 1386 if (sf & SYSC_HAS_ENAWAKEUP) in _enable_sysc() 1402 (sf & SYSC_HAS_CLOCKACTIVITY)) in _enable_sysc() 1411 if (sf & SYSC_HAS_AUTOIDLE) { in _enable_sysc() 1430 u8 idlemode, sf; in _idle_sysc() local 1437 sf = oh->class->sysc->sysc_flags; in _idle_sysc() [all …]
|
/linux-4.1.27/fs/hppfs/ |
D | hppfs.c | 588 static int hppfs_statfs(struct dentry *dentry, struct kstatfs *sf) in hppfs_statfs() argument 590 sf->f_blocks = 0; in hppfs_statfs() 591 sf->f_bfree = 0; in hppfs_statfs() 592 sf->f_bavail = 0; in hppfs_statfs() 593 sf->f_files = 0; in hppfs_statfs() 594 sf->f_ffree = 0; in hppfs_statfs() 595 sf->f_type = HPPFS_SUPER_MAGIC; in hppfs_statfs()
|
/linux-4.1.27/arch/m68k/68360/ |
D | Makefile | 12 ln -sf head-$(model-y).o $(obj)/head.o
|
/linux-4.1.27/tools/lguest/ |
D | Makefile | 8 ln -sf ../../../../include/uapi/linux/virtio_types.h $@
|
/linux-4.1.27/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.1.27/net/netlabel/ |
D | Kconfig | 15 * http://netlabel.sf.net
|
/linux-4.1.27/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.1.27/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.1.27/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, sf, &sf->paddr); in fimc_device_run() 163 fimc_hw_set_input_addr(fimc, &sf->paddr); in fimc_device_run()
|
/linux-4.1.27/drivers/net/wireless/zd1211rw/ |
D | Kconfig | 10 the firmware distribution from http://sf.net/projects/zd1211/files/
|
/linux-4.1.27/arch/arc/boot/ |
D | Makefile | 34 @ln -sf $(notdir $<) $@
|
/linux-4.1.27/net/9p/ |
D | Kconfig | 12 See <http://v9fs.sf.net> for more information.
|
/linux-4.1.27/fs/ecryptfs/ |
D | Kconfig | 11 obtained from <http://ecryptfs.sf.net>.
|
/linux-4.1.27/Documentation/blockdev/ |
D | nbd.txt | 16 tools, go to http://nbd.sf.net/.
|
/linux-4.1.27/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.1.27/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.1.27/fs/9p/ |
D | Kconfig | 8 See <http://v9fs.sf.net> for more information.
|
/linux-4.1.27/arch/metag/boot/ |
D | Makefile | 67 @ln -sf $(notdir $<) $@
|
/linux-4.1.27/drivers/staging/lustre/lustre/include/ |
D | lustre_sec.h | 341 struct sptlrpc_flavor *sf); 932 char *sptlrpc_flavor2name_bulk(struct sptlrpc_flavor *sf, 934 char *sptlrpc_flavor2name(struct sptlrpc_flavor *sf, char *buf, int bufsize);
|
/linux-4.1.27/kernel/ |
D | cpuset.c | 1712 static int cpuset_common_seq_show(struct seq_file *sf, void *v) in cpuset_common_seq_show() argument 1714 struct cpuset *cs = css_cs(seq_css(sf)); in cpuset_common_seq_show() 1715 cpuset_filetype_t type = seq_cft(sf)->private; in cpuset_common_seq_show() 1722 seq_printf(sf, "%*pbl\n", cpumask_pr_args(cs->cpus_allowed)); in cpuset_common_seq_show() 1725 seq_printf(sf, "%*pbl\n", nodemask_pr_args(&cs->mems_allowed)); in cpuset_common_seq_show() 1728 seq_printf(sf, "%*pbl\n", cpumask_pr_args(cs->effective_cpus)); in cpuset_common_seq_show() 1731 seq_printf(sf, "%*pbl\n", nodemask_pr_args(&cs->effective_mems)); in cpuset_common_seq_show()
|
D | auditfilter.c | 716 struct audit_field *sf) in audit_dupe_lsm_field() argument 722 lsm_str = kstrdup(sf->lsm_str, GFP_KERNEL); in audit_dupe_lsm_field()
|
/linux-4.1.27/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.1.27/arch/arm/vdso/ |
D | Makefile | 69 ln -sf "../../vdso.so" "$(MODLIB)/vdso/.build-id/$$first/$$last.debug"; \
|
/linux-4.1.27/arch/blackfin/boot/ |
D | Makefile | 68 @ln -sf $(notdir $<) $@
|
/linux-4.1.27/drivers/media/platform/ |
D | via-camera.c | 465 int sf; in viacam_set_scale() local 470 sf = (cam->user_format.width*2048)/VGA_WIDTH; in viacam_set_scale() 471 avscale = VCR_AVS_HEN | sf; in viacam_set_scale() 474 sf = (1024*cam->user_format.height)/VGA_HEIGHT; in viacam_set_scale() 475 avscale |= VCR_AVS_VEN | (sf << 16); in viacam_set_scale()
|
/linux-4.1.27/arch/mips/boot/ |
D | Makefile | 101 @ln -sf $(notdir $<) $@
|
/linux-4.1.27/scripts/package/ |
D | Makefile | 46 ln -sf $(srctree) $(KERNELPATH)
|
D | builddeb | 312 ln -sf "/usr/src/linux-headers-$version" "$kernel_headers_dir/lib/modules/$version/build"
|
/linux-4.1.27/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 | swsusp.txt | 414 resume. uswsusp should be able to work with LVM. See suspend.sf.net. 428 slow, take a look at suspend.sf.net -- userland suspend is faster and
|
D | basic-pm-debugging.txt | 183 tool available from http://suspend.sf.net and documented at
|
/linux-4.1.27/arch/powerpc/kernel/ |
D | signal_32.c | 1497 struct sigframe __user *sf; in sys_sigreturn() local 1511 sf = (struct sigframe __user *)(regs->gpr[1] + __SIGNAL_FRAMESIZE); in sys_sigreturn() 1512 sc = &sf->sctx; in sys_sigreturn() 1530 mcp = (struct mcontext __user *)&sf->mctx; in sys_sigreturn() 1531 tm_mcp = (struct mcontext __user *)&sf->mctx_transact; in sys_sigreturn()
|
/linux-4.1.27/drivers/media/pci/zoran/ |
D | Kconfig | 9 a driver homepage at <http://mjpeg.sf.net/driver-zoran/>. For
|
/linux-4.1.27/arch/sh/boot/ |
D | Makefile | 110 @ln -sf $(notdir $<) $@
|
/linux-4.1.27/Documentation/DocBook/media/ |
D | Makefile | 205 @(ln -sf `cd $(MEDIA_SRC_DIR) && /bin/pwd`/v4l/*xml $(MEDIA_OBJ_DIR)/) 206 @(ln -sf `cd $(MEDIA_SRC_DIR) && /bin/pwd`/dvb/*xml $(MEDIA_OBJ_DIR)/)
|
/linux-4.1.27/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.1.27/Documentation/fb/ |
D | internals.txt | 6 James Simmons <jsimmons@user.sf.net>, Nov 26 2002
|
/linux-4.1.27/drivers/mmc/card/ |
D | mmc_test.c | 2810 static int mtf_test_show(struct seq_file *sf, void *data) in mtf_test_show() argument 2812 struct mmc_card *card = (struct mmc_card *)sf->private; in mtf_test_show() 2823 seq_printf(sf, "Test %d: %d\n", gr->testcase + 1, gr->result); in mtf_test_show() 2826 seq_printf(sf, "%u %d %lu.%09lu %u %u.%02u\n", in mtf_test_show() 2847 struct seq_file *sf = (struct seq_file *)file->private_data; local 2848 struct mmc_card *card = (struct mmc_card *)sf->private; 2901 static int mtf_testlist_show(struct seq_file *sf, void *data) argument 2908 seq_printf(sf, "%d:\t%s\n", i+1, mmc_test_cases[i].name);
|
/linux-4.1.27/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.1.27/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.1.27/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.1.27/drivers/media/dvb-core/ |
D | dvb_demux.c | 934 struct dmx_section_filter *sf; in prepare_secfilters() local 940 sf = &f->filter; in prepare_secfilters() 943 mode = sf->filter_mode[i]; in prepare_secfilters() 944 mask = sf->filter_mask[i]; in prepare_secfilters()
|
/linux-4.1.27/tools/testing/selftests/rcutorture/doc/ |
D | initrd.txt | 35 ln -sf /proc/mounts /etc/mtab
|
/linux-4.1.27/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.1.27/net/ipv4/netfilter/ |
D | ipt_CLUSTERIP.c | 651 struct seq_file *sf = file->private_data; in clusterip_proc_open() local 654 sf->private = c; in clusterip_proc_open()
|
/linux-4.1.27/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.1.27/arch/x86/vdso/ |
D | Makefile | 194 ln -sf "../../$(@:install_%=%)" "$(MODLIB)/vdso/.build-id/$$first/$$last.debug"; \
|
/linux-4.1.27/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.1.27/arch/um/ |
D | Kconfig.um | 57 See <http://user-mode-linux.sf.net/old/hppfs.html> for more information.
|
/linux-4.1.27/arch/x86/kvm/ |
D | vmx.c | 3338 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg]; in fix_rmode_seg() local 3363 vmcs_write16(sf->selector, var.selector); in fix_rmode_seg() 3364 vmcs_write32(sf->base, var.base); in fix_rmode_seg() 3365 vmcs_write32(sf->limit, var.limit); in fix_rmode_seg() 3366 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(&var)); in fix_rmode_seg() 3776 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg]; in vmx_set_segment() local 3783 vmcs_write16(sf->selector, var->selector); in vmx_set_segment() 3789 vmcs_writel(sf->base, var->base); in vmx_set_segment() 3790 vmcs_write32(sf->limit, var->limit); in vmx_set_segment() 3791 vmcs_write16(sf->selector, var->selector); in vmx_set_segment() [all …]
|
/linux-4.1.27/arch/powerpc/include/asm/ |
D | ps3av.h | 497 u8 sf:3; member
|
/linux-4.1.27/Documentation/scsi/ |
D | hpsa.txt | 129 agents, etc. See cciss_vol_status at http://cciss.sf.net for some examples.
|
/linux-4.1.27/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.1.27/drivers/ps3/ |
D | ps3av_cmd.c | 621 info->pb2.sf = 0; in ps3av_cnv_info()
|
/linux-4.1.27/kernel/power/ |
D | Kconfig | 41 from <http://suspend.sf.net>.
|
/linux-4.1.27/Documentation/ide/ |
D | ide.txt | 128 ln -sf /dev/hdc /dev/cdrom
|
/linux-4.1.27/Documentation/ |
D | Changes | 390 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.1.27/mm/ |
D | memcontrol.c | 3893 static int mem_cgroup_oom_control_read(struct seq_file *sf, void *v) in mem_cgroup_oom_control_read() argument 3895 struct mem_cgroup *memcg = mem_cgroup_from_css(seq_css(sf)); in mem_cgroup_oom_control_read() 3897 seq_printf(sf, "oom_kill_disable %d\n", memcg->oom_kill_disable); in mem_cgroup_oom_control_read() 3898 seq_printf(sf, "under_oom %d\n", (bool)atomic_read(&memcg->under_oom)); in mem_cgroup_oom_control_read()
|
/linux-4.1.27/drivers/platform/x86/ |
D | Kconfig | 89 For more information see <http://acpi4asus.sf.net>. 346 <http://ibm-acpi.sf.net/> .
|
/linux-4.1.27/drivers/dma/ |
D | imx-sdma.c | 176 u32 sf : 1; member
|
/linux-4.1.27/arch/m68k/ifpsp060/src/ |
D | ilsp.S | 131 sf POSNEG(%a6) # unsigned operation
|
/linux-4.1.27/ |
D | CREDITS | 748 E: lfcorreia@users.sf.net 1978 W: http://vtun.sf.net 1979 W: http://bluez.sf.net 3335 E: jsimmons@users.sf.net
|
D | MAINTAINERS | 1671 W: http://acpi4asus.sf.net 1997 T: git git://git.code.sf.net/p/adi-linux/code 5117 T: git git://git.code.sf.net/p/intel-sas/isci 6769 W: http://netlabel.sf.net 7310 L: oprofile-list@lists.sf.net
|
/linux-4.1.27/Documentation/sound/oss/ |
D | README.OSS | 992 uses /dev/dsp (and /dev/audio). Command "ln -sf /dev/dsp1 /dev/dsp"
|
/linux-4.1.27/Documentation/virtual/uml/ |
D | UserModeLinux-HOWTO.txt | 4576 <http://user-mode-linux.sourceforge.net/dl-sf.html> page in the Jail
|