/linux-4.1.27/tools/firewire/ |
H A D | Makefile | 2 nosy-dump-version = 0.4 6 all : nosy-dump 8 nosy-dump : CFLAGS = -Wall -O2 -g 9 nosy-dump : CPPFLAGS = -DVERSION=\"$(nosy-dump-version)\" -I../../drivers/firewire 10 nosy-dump : LDFLAGS = -g 11 nosy-dump : LDLIBS = -lpopt 13 nosy-dump : nosy-dump.o decode-fcp.o 16 rm -rf *.o nosy-dump 19 install nosy-dump $(prefix)/bin/nosy-dump
|
/linux-4.1.27/arch/x86/include/asm/ |
H A D | a.out-core.h | 23 * fill in the user structure for an a.out core dump 25 static inline void aout_dump_thread(struct pt_regs *regs, struct user *dump) aout_dump_thread() argument 28 dump->magic = CMAGIC; aout_dump_thread() 29 dump->start_code = 0; aout_dump_thread() 30 dump->start_stack = regs->sp & ~(PAGE_SIZE - 1); aout_dump_thread() 31 dump->u_tsize = ((unsigned long)current->mm->end_code) >> PAGE_SHIFT; aout_dump_thread() 32 dump->u_dsize = ((unsigned long)(current->mm->brk + (PAGE_SIZE - 1))) aout_dump_thread() 34 dump->u_dsize -= dump->u_tsize; aout_dump_thread() 35 dump->u_ssize = 0; aout_dump_thread() 36 aout_dump_debugregs(dump); aout_dump_thread() 38 if (dump->start_stack < TASK_SIZE) aout_dump_thread() 39 dump->u_ssize = ((unsigned long)(TASK_SIZE - dump->start_stack)) aout_dump_thread() 42 dump->regs.bx = regs->bx; aout_dump_thread() 43 dump->regs.cx = regs->cx; aout_dump_thread() 44 dump->regs.dx = regs->dx; aout_dump_thread() 45 dump->regs.si = regs->si; aout_dump_thread() 46 dump->regs.di = regs->di; aout_dump_thread() 47 dump->regs.bp = regs->bp; aout_dump_thread() 48 dump->regs.ax = regs->ax; aout_dump_thread() 49 dump->regs.ds = (u16)regs->ds; aout_dump_thread() 50 dump->regs.es = (u16)regs->es; aout_dump_thread() 51 dump->regs.fs = (u16)regs->fs; aout_dump_thread() 52 dump->regs.gs = get_user_gs(regs); aout_dump_thread() 53 dump->regs.orig_ax = regs->orig_ax; aout_dump_thread() 54 dump->regs.ip = regs->ip; aout_dump_thread() 55 dump->regs.cs = (u16)regs->cs; aout_dump_thread() 56 dump->regs.flags = regs->flags; aout_dump_thread() 57 dump->regs.sp = regs->sp; aout_dump_thread() 58 dump->regs.ss = (u16)regs->ss; aout_dump_thread() 60 dump->u_fpvalid = dump_fpu(regs, &dump->i387); aout_dump_thread()
|
H A D | kdebug.h | 35 /* no crash dump is ever in progress if no crash kernel can be kexec'd */
|
H A D | user.h | 25 * extended register state through ptrace and core-dump (NT_X86_XSTATE note) 37 * 64bit mask returned by the xgetbv's xCR0). Users (analyzing core dump
|
H A D | user32.h | 59 __u32 signal; /* Signal that caused the core dump. */
|
H A D | debugreg.h | 92 extern void aout_dump_debugregs(struct user *dump);
|
/linux-4.1.27/arch/m68k/include/asm/ |
H A D | a.out-core.h | 21 * fill in the user structure for an a.out core dump 23 static inline void aout_dump_thread(struct pt_regs *regs, struct user *dump) aout_dump_thread() argument 28 dump->magic = CMAGIC; aout_dump_thread() 29 dump->start_code = 0; aout_dump_thread() 30 dump->start_stack = rdusp() & ~(PAGE_SIZE - 1); aout_dump_thread() 31 dump->u_tsize = ((unsigned long) current->mm->end_code) >> PAGE_SHIFT; aout_dump_thread() 32 dump->u_dsize = ((unsigned long) (current->mm->brk + aout_dump_thread() 34 dump->u_dsize -= dump->u_tsize; aout_dump_thread() 35 dump->u_ssize = 0; aout_dump_thread() 37 if (dump->start_stack < TASK_SIZE) aout_dump_thread() 38 dump->u_ssize = ((unsigned long) (TASK_SIZE - dump->start_stack)) >> PAGE_SHIFT; aout_dump_thread() 40 dump->u_ar0 = offsetof(struct user, regs); aout_dump_thread() 42 dump->regs.d1 = regs->d1; aout_dump_thread() 43 dump->regs.d2 = regs->d2; aout_dump_thread() 44 dump->regs.d3 = regs->d3; aout_dump_thread() 45 dump->regs.d4 = regs->d4; aout_dump_thread() 46 dump->regs.d5 = regs->d5; aout_dump_thread() 47 dump->regs.d6 = sw->d6; aout_dump_thread() 48 dump->regs.d7 = sw->d7; aout_dump_thread() 49 dump->regs.a0 = regs->a0; aout_dump_thread() 50 dump->regs.a1 = regs->a1; aout_dump_thread() 51 dump->regs.a2 = regs->a2; aout_dump_thread() 52 dump->regs.a3 = sw->a3; aout_dump_thread() 53 dump->regs.a4 = sw->a4; aout_dump_thread() 54 dump->regs.a5 = sw->a5; aout_dump_thread() 55 dump->regs.a6 = sw->a6; aout_dump_thread() 56 dump->regs.d0 = regs->d0; aout_dump_thread() 57 dump->regs.orig_d0 = regs->orig_d0; aout_dump_thread() 58 dump->regs.stkadj = regs->stkadj; aout_dump_thread() 59 dump->regs.sr = regs->sr; aout_dump_thread() 60 dump->regs.pc = regs->pc; aout_dump_thread() 61 dump->regs.fmtvec = (regs->format << 12) | regs->vector; aout_dump_thread() 62 /* dump floating point stuff */ aout_dump_thread() 63 dump->u_fpvalid = dump_fpu (regs, &dump->m68kfp); aout_dump_thread()
|
/linux-4.1.27/arch/alpha/include/asm/ |
H A D | a.out-core.h | 20 * Fill in the user structure for an ECOFF core dump. 22 static inline void aout_dump_thread(struct pt_regs *pt, struct user *dump) aout_dump_thread() argument 27 dump->magic = CMAGIC; aout_dump_thread() 28 dump->start_code = current->mm->start_code; aout_dump_thread() 29 dump->start_data = current->mm->start_data; aout_dump_thread() 30 dump->start_stack = rdusp() & ~(PAGE_SIZE - 1); aout_dump_thread() 31 dump->u_tsize = ((current->mm->end_code - dump->start_code) aout_dump_thread() 33 dump->u_dsize = ((current->mm->brk + PAGE_SIZE-1 - dump->start_data) aout_dump_thread() 35 dump->u_ssize = (current->mm->start_stack - dump->start_stack aout_dump_thread() 43 dump->regs[EF_V0] = pt->r0; aout_dump_thread() 44 dump->regs[EF_T0] = pt->r1; aout_dump_thread() 45 dump->regs[EF_T1] = pt->r2; aout_dump_thread() 46 dump->regs[EF_T2] = pt->r3; aout_dump_thread() 47 dump->regs[EF_T3] = pt->r4; aout_dump_thread() 48 dump->regs[EF_T4] = pt->r5; aout_dump_thread() 49 dump->regs[EF_T5] = pt->r6; aout_dump_thread() 50 dump->regs[EF_T6] = pt->r7; aout_dump_thread() 51 dump->regs[EF_T7] = pt->r8; aout_dump_thread() 52 dump->regs[EF_S0] = sw->r9; aout_dump_thread() 53 dump->regs[EF_S1] = sw->r10; aout_dump_thread() 54 dump->regs[EF_S2] = sw->r11; aout_dump_thread() 55 dump->regs[EF_S3] = sw->r12; aout_dump_thread() 56 dump->regs[EF_S4] = sw->r13; aout_dump_thread() 57 dump->regs[EF_S5] = sw->r14; aout_dump_thread() 58 dump->regs[EF_S6] = sw->r15; aout_dump_thread() 59 dump->regs[EF_A3] = pt->r19; aout_dump_thread() 60 dump->regs[EF_A4] = pt->r20; aout_dump_thread() 61 dump->regs[EF_A5] = pt->r21; aout_dump_thread() 62 dump->regs[EF_T8] = pt->r22; aout_dump_thread() 63 dump->regs[EF_T9] = pt->r23; aout_dump_thread() 64 dump->regs[EF_T10] = pt->r24; aout_dump_thread() 65 dump->regs[EF_T11] = pt->r25; aout_dump_thread() 66 dump->regs[EF_RA] = pt->r26; aout_dump_thread() 67 dump->regs[EF_T12] = pt->r27; aout_dump_thread() 68 dump->regs[EF_AT] = pt->r28; aout_dump_thread() 69 dump->regs[EF_SP] = rdusp(); aout_dump_thread() 70 dump->regs[EF_PS] = pt->ps; aout_dump_thread() 71 dump->regs[EF_PC] = pt->pc; aout_dump_thread() 72 dump->regs[EF_GP] = pt->gp; aout_dump_thread() 73 dump->regs[EF_A0] = pt->r16; aout_dump_thread() 74 dump->regs[EF_A1] = pt->r17; aout_dump_thread() 75 dump->regs[EF_A2] = pt->r18; aout_dump_thread() 76 memcpy((char *)dump->regs + EF_SIZE, sw->fp, 32 * 8); aout_dump_thread()
|
H A D | user.h | 41 long int signal; /* signal causing core dump */
|
/linux-4.1.27/arch/powerpc/platforms/powernv/ |
H A D | opal-dump.c | 35 ssize_t (*show)(struct dump_obj *dump, struct dump_attribute *attr, 37 ssize_t (*store)(struct dump_obj *dump, struct dump_attribute *attr, 72 return sprintf(buf, "ack - acknowledge dump\n"); dump_ack_show() 100 /* Attributes of a dump 101 * The binary attribute of the dump itself is dynamic 102 * due to the dynamic size of the dump 115 return sprintf(buf, "1 - initiate Service Processor(FSP) dump\n"); init_dump_show() 124 pr_warn("%s: Failed to initiate FSP dump (%d)\n", dump_fips_init() 138 pr_info("%s: Initiated FSP dump\n", __func__); init_dump_store() 162 struct dump_obj *dump; dump_attr_show() local 165 dump = to_dump_obj(kobj); dump_attr_show() 170 return attribute->show(dump, attribute, buf); dump_attr_show() 178 struct dump_obj *dump; dump_attr_store() local 181 dump = to_dump_obj(kobj); dump_attr_store() 186 return attribute->store(dump, attribute, buf, len); dump_attr_store() 196 struct dump_obj *dump; dump_release() local 198 dump = to_dump_obj(kobj); dump_release() 199 vfree(dump->buffer); dump_release() 200 kfree(dump); dump_release() 232 pr_warn("%s: Failed to get dump info (%d)\n", dump_read_info() 237 static int64_t dump_read_data(struct dump_obj *dump) dump_read_data() argument 244 dump->buffer = vzalloc(PAGE_ALIGN(dump->size)); dump_read_data() 245 if (!dump->buffer) { dump_read_data() 252 list = opal_vmalloc_to_sg_list(dump->buffer, dump->size); dump_read_data() 264 rc = opal_dump_read(dump->id, addr); dump_read_data() 272 pr_warn("%s: Extract dump failed for ID 0x%x\n", dump_read_data() 273 __func__, dump->id); dump_read_data() 288 struct dump_obj *dump = to_dump_obj(kobj); dump_attr_read() local 290 if (!dump->buffer) { dump_attr_read() 291 rc = dump_read_data(dump); dump_attr_read() 294 vfree(dump->buffer); dump_attr_read() 295 dump->buffer = NULL; dump_attr_read() 304 pr_info("%s: Platform dump partially read. ID = 0x%x\n", dump_attr_read() 305 __func__, dump->id); dump_attr_read() 310 memcpy(buffer, dump->buffer + pos, count); dump_attr_read() 312 /* You may think we could free the dump buffer now and retrieve dump_attr_read() 315 * we keep the dump around until it's acknowledged by userspace. dump_attr_read() 324 struct dump_obj *dump; create_dump_obj() local 327 dump = kzalloc(sizeof(*dump), GFP_KERNEL); create_dump_obj() 328 if (!dump) create_dump_obj() 331 dump->kobj.kset = dump_kset; create_dump_obj() 333 kobject_init(&dump->kobj, &dump_ktype); create_dump_obj() 335 sysfs_bin_attr_init(&dump->dump_attr); create_dump_obj() 337 dump->dump_attr.attr.name = "dump"; create_dump_obj() 338 dump->dump_attr.attr.mode = 0400; create_dump_obj() 339 dump->dump_attr.size = size; create_dump_obj() 340 dump->dump_attr.read = dump_attr_read; create_dump_obj() 342 dump->id = id; create_dump_obj() 343 dump->size = size; create_dump_obj() 344 dump->type = type; create_dump_obj() 346 rc = kobject_add(&dump->kobj, NULL, "0x%x-0x%x", type, id); create_dump_obj() 348 kobject_put(&dump->kobj); create_dump_obj() 352 rc = sysfs_create_bin_file(&dump->kobj, &dump->dump_attr); create_dump_obj() 354 kobject_put(&dump->kobj); create_dump_obj() 358 pr_info("%s: New platform dump. ID = 0x%x Size %u\n", create_dump_obj() 359 __func__, dump->id, dump->size); create_dump_obj() 361 kobject_uevent(&dump->kobj, KOBJ_ADD); create_dump_obj() 363 return dump; create_dump_obj() 370 struct dump_obj *dump; process_dump() local 386 dump = create_dump_obj(dump_id, dump_size, dump_type); process_dump() 387 if (!dump) process_dump() 406 * New dump available notification 409 * We only fetch the dump on demand, and create sysfs asynchronously. 434 dump_kset = kset_create_and_add("dump", NULL, opal_kobj); opal_platform_dump_init() 436 pr_warn("%s: Failed to create dump kset\n", __func__); opal_platform_dump_init() 442 pr_warn("%s: Failed to create initiate dump attr group\n", opal_platform_dump_init()
|
/linux-4.1.27/drivers/input/joystick/ |
H A D | joydump.c | 6 * This is just a very simple driver that can dump the data 52 struct joydump *dump, *prev; /* one entry each */ joydump_connect() local 88 dump = buf; joydump_connect() 96 dump->data = u; joydump_connect() 97 dump->time = t; joydump_connect() 98 dump++; joydump_connect() 104 dump->data = gameport_read(gameport); joydump_connect() 106 if (dump->data ^ u) { joydump_connect() 107 u = dump->data; joydump_connect() 108 dump->time = t; joydump_connect() 110 dump++; joydump_connect() 122 dump = buf; joydump_connect() 123 prev = dump; joydump_connect() 128 printk("%d", (dump->data >> j) & 1); joydump_connect() 130 dump++; joydump_connect() 132 for (i = 1; i < t; i++, dump++, prev++) { joydump_connect() 134 i, dump->time - prev->time); joydump_connect() 136 printk("%d", (dump->data >> j) & 1); joydump_connect()
|
/linux-4.1.27/arch/x86/ia32/ |
H A D | ia32_aout.c | 51 * fill in the user structure for a core dump.. 53 static void dump_thread32(struct pt_regs *regs, struct user32 *dump) dump_thread32() argument 56 memset(dump, 0, sizeof(*dump)); dump_thread32() 59 dump->magic = CMAGIC; dump_thread32() 60 dump->start_code = 0; dump_thread32() 61 dump->start_stack = regs->sp & ~(PAGE_SIZE - 1); dump_thread32() 62 dump->u_tsize = ((unsigned long) current->mm->end_code) >> PAGE_SHIFT; dump_thread32() 63 dump->u_dsize = ((unsigned long) dump_thread32() 65 dump->u_dsize -= dump->u_tsize; dump_thread32() 66 dump->u_debugreg[0] = get_dr(0); dump_thread32() 67 dump->u_debugreg[1] = get_dr(1); dump_thread32() 68 dump->u_debugreg[2] = get_dr(2); dump_thread32() 69 dump->u_debugreg[3] = get_dr(3); dump_thread32() 70 dump->u_debugreg[6] = current->thread.debugreg6; dump_thread32() 71 dump->u_debugreg[7] = current->thread.ptrace_dr7; dump_thread32() 73 if (dump->start_stack < 0xc0000000) { dump_thread32() 76 tmp = (unsigned long) (0xc0000000 - dump->start_stack); dump_thread32() 77 dump->u_ssize = tmp >> PAGE_SHIFT; dump_thread32() 80 dump->regs.ebx = regs->bx; dump_thread32() 81 dump->regs.ecx = regs->cx; dump_thread32() 82 dump->regs.edx = regs->dx; dump_thread32() 83 dump->regs.esi = regs->si; dump_thread32() 84 dump->regs.edi = regs->di; dump_thread32() 85 dump->regs.ebp = regs->bp; dump_thread32() 86 dump->regs.eax = regs->ax; dump_thread32() 87 dump->regs.ds = current->thread.ds; dump_thread32() 88 dump->regs.es = current->thread.es; dump_thread32() 90 dump->regs.fs = fs; dump_thread32() 92 dump->regs.gs = gs; dump_thread32() 93 dump->regs.orig_eax = regs->orig_ax; dump_thread32() 94 dump->regs.eip = regs->ip; dump_thread32() 95 dump->regs.cs = regs->cs; dump_thread32() 96 dump->regs.eflags = regs->flags; dump_thread32() 97 dump->regs.esp = regs->sp; dump_thread32() 98 dump->regs.ss = regs->ss; dump_thread32() 101 dump->u_fpvalid = 0; dump_thread32() 103 dump->u_fpvalid = dump_fpu(regs, &dump->i387); dump_thread32() 140 * Routine writes a core dump image in the current directory. 143 * Note that setuid/setgid files won't make a core-dump if the uid/gid 154 struct user32 dump; aout_core_dump() local 159 strncpy(dump.u_comm, current->comm, sizeof(current->comm)); aout_core_dump() 160 dump.u_ar0 = offsetof(struct user32, regs); aout_core_dump() 161 dump.signal = cprm->siginfo->si_signo; aout_core_dump() 162 dump_thread32(cprm->regs, &dump); aout_core_dump() 165 * If the size of the dump file exceeds the rlimit, then see aout_core_dump() 169 if ((dump.u_dsize + dump.u_ssize + 1) * PAGE_SIZE > cprm->limit) aout_core_dump() 170 dump.u_dsize = 0; aout_core_dump() 173 if ((dump.u_ssize + 1) * PAGE_SIZE > cprm->limit) aout_core_dump() 174 dump.u_ssize = 0; aout_core_dump() 176 /* make sure we actually have a data and stack area to dump */ aout_core_dump() 178 if (!access_ok(VERIFY_READ, (void *) (unsigned long)START_DATA(dump), aout_core_dump() 179 dump.u_dsize << PAGE_SHIFT)) aout_core_dump() 180 dump.u_dsize = 0; aout_core_dump() 181 if (!access_ok(VERIFY_READ, (void *) (unsigned long)START_STACK(dump), aout_core_dump() 182 dump.u_ssize << PAGE_SHIFT)) aout_core_dump() 183 dump.u_ssize = 0; aout_core_dump() 187 if (!dump_emit(cprm, &dump, sizeof(dump))) aout_core_dump() 189 /* Now dump all of the user data. Include malloced stuff as well */ aout_core_dump() 190 if (!dump_skip(cprm, PAGE_SIZE - sizeof(dump))) aout_core_dump() 195 if (dump.u_dsize != 0) { aout_core_dump() 196 dump_start = START_DATA(dump); aout_core_dump() 197 dump_size = dump.u_dsize << PAGE_SHIFT; aout_core_dump() 201 /* Now prepare to dump the stack area */ aout_core_dump() 202 if (dump.u_ssize != 0) { aout_core_dump() 203 dump_start = START_STACK(dump); aout_core_dump() 204 dump_size = dump.u_ssize << PAGE_SHIFT; aout_core_dump()
|
/linux-4.1.27/arch/arm64/mm/ |
H A D | Makefile | 6 obj-$(CONFIG_ARM64_PTDUMP) += dump.o
|
/linux-4.1.27/drivers/fmc/ |
H A D | Makefile | 8 fmc-y += fmc-dump.o
|
H A D | fmc-dump.c | 73 /* If the argument is not-zero, do simple dump (== show) */ fmc_dump_sdb() 80 /* If bigger than 1, dump it seriously, to help debugging */ fmc_dump_sdb() 88 * So, lazily, just dump the top-level array fmc_dump_sdb() 92 pr_info("FMC: poor dump of sdb first level:\n"); fmc_dump_sdb()
|
/linux-4.1.27/arch/um/kernel/ |
H A D | kmsg_dump.c | 15 /* only dump kmsg when no console is available */ kmsg_dumper_stdout() 35 .dump = kmsg_dumper_stdout
|
/linux-4.1.27/fs/ |
H A D | binfmt_aout.c | 38 * Routine writes a core dump image in the current directory. 41 * Note that setuid/setgid files won't make a core-dump if the uid/gid 52 struct user dump; aout_core_dump() local 64 strncpy(dump.u_comm, current->comm, sizeof(dump.u_comm)); aout_core_dump() 65 dump.u_ar0 = offsetof(struct user, regs); aout_core_dump() 66 dump.signal = cprm->siginfo->si_signo; aout_core_dump() 67 aout_dump_thread(cprm->regs, &dump); aout_core_dump() 69 /* If the size of the dump file exceeds the rlimit, then see what would happen aout_core_dump() 71 if ((dump.u_dsize + dump.u_ssize+1) * PAGE_SIZE > cprm->limit) aout_core_dump() 72 dump.u_dsize = 0; aout_core_dump() 75 if ((dump.u_ssize + 1) * PAGE_SIZE > cprm->limit) aout_core_dump() 76 dump.u_ssize = 0; aout_core_dump() 78 /* make sure we actually have a data and stack area to dump */ aout_core_dump() 80 if (!access_ok(VERIFY_READ, START_DATA(dump), dump.u_dsize << PAGE_SHIFT)) aout_core_dump() 81 dump.u_dsize = 0; aout_core_dump() 82 if (!access_ok(VERIFY_READ, START_STACK(dump), dump.u_ssize << PAGE_SHIFT)) aout_core_dump() 83 dump.u_ssize = 0; aout_core_dump() 87 if (!dump_emit(cprm, &dump, sizeof(dump))) aout_core_dump() 89 /* Now dump all of the user data. Include malloced stuff as well */ aout_core_dump() 90 if (!dump_skip(cprm, PAGE_SIZE - sizeof(dump))) aout_core_dump() 95 if (dump.u_dsize != 0) { aout_core_dump() 96 dump_start = START_DATA(dump); aout_core_dump() 97 dump_size = dump.u_dsize << PAGE_SHIFT; aout_core_dump() 101 /* Now prepare to dump the stack area */ aout_core_dump() 102 if (dump.u_ssize != 0) { aout_core_dump() 103 dump_start = START_STACK(dump); aout_core_dump() 104 dump_size = dump.u_ssize << PAGE_SHIFT; aout_core_dump()
|
H A D | coredump.c | 546 * so we dump it as root in mode 2, and only into a controlled do_coredump() 550 /* Setuid core dump mode */ do_coredump() 602 printk(KERN_WARNING "Skipping core dump\n"); do_coredump() 623 printk(KERN_INFO "Core dump to |%s pipe failed\n", do_coredump() 636 printk(KERN_WARNING "Pid %d(%s) can only dump core "\ do_coredump() 639 printk(KERN_WARNING "Skipping core dump\n"); do_coredump() 673 * directories. Since the intention of the "only dump do_coredump() 705 * Don't dump core if the filesystem changed owner or mode do_coredump()
|
/linux-4.1.27/arch/powerpc/kernel/ |
H A D | fadump.c | 2 * Firmware Assisted dump: A robust mechanism to get reliable kernel crash 3 * dump with assistance from firmware. This approach does not use kexec, 6 * from phyp assisted dump implementation written by Linas Vepstas and 54 /* Scan the Firmware Assisted dump configuration details. */ early_init_dt_scan_fw_dump() 67 * Check if Firmware Assisted dump is supported. if yes, check early_init_dt_scan_fw_dump() 68 * if dump has been initiated on last reboot. early_init_dt_scan_fw_dump() 70 token = of_get_flat_dt_prop(node, "ibm,configure-kernel-dump", NULL); early_init_dt_scan_fw_dump() 78 * The 'ibm,kernel-dump' rtas node is present only if there is early_init_dt_scan_fw_dump() 79 * dump data waiting for us. early_init_dt_scan_fw_dump() 81 fdm_active = of_get_flat_dt_prop(node, "ibm,kernel-dump", NULL); early_init_dt_scan_fw_dump() 85 /* Get the sizes required to store dump data for the firmware provided early_init_dt_scan_fw_dump() 86 * dump sections. early_init_dt_scan_fw_dump() 87 * For each dump section type supported, a 32bit cell which defines early_init_dt_scan_fw_dump() 91 sections = of_get_flat_dt_prop(node, "ibm,configure-kernel-dump-sizes", early_init_dt_scan_fw_dump() 122 /* Print firmware assisted dump configurations for debugging purpose. */ fadump_show_config() 125 pr_debug("Support for firmware-assisted dump (fadump): %s\n", fadump_show_config() 157 * Fields for disk dump option. init_fadump_mem_struct() 158 * We are not using disk dump option, hence set these fields to 0. init_fadump_mem_struct() 165 /* set 0 to disable an automatic dump-reboot. */ init_fadump_mem_struct() 168 /* Kernel dump sections */ init_fadump_mem_struct() 203 * This function has been taken from phyp-assisted dump feature implementation. 237 * firmware-assisted dump registration. 264 printk(KERN_INFO "Firmware-assisted dump is not supported on" fadump_reserve_mem() 271 * If dump is active then we have already calculated the size during fadump_reserve_mem() 293 " dump, now %#016llx\n", memory_limit); fadump_reserve_mem() 301 printk(KERN_INFO "Firmware-assisted dump is active.\n"); fadump_reserve_mem() 305 * dump is written to disk by userspace tool. This memory fadump_reserve_mem() 306 * will be released for general use once the dump is saved. fadump_reserve_mem() 312 "for saving crash dump\n", fadump_reserve_mem() 327 "for firmware-assisted dump\n", fadump_reserve_mem() 365 pr_debug("Registering for firmware-assisted kernel dump...\n"); register_fw_dump() 382 " dump. Hardware Error(%d).\n", rc); register_fw_dump() 386 " dump. Parameter Error(%d).\n", rc); register_fw_dump() 389 printk(KERN_ERR "firmware-assisted kernel dump is already " register_fw_dump() 394 printk(KERN_INFO "firmware-assisted kernel dump registration" register_fw_dump() 420 /* Call ibm,os-term rtas call to trigger firmware assisted dump */ crash_fadump() 579 * Read CPU state dump data and convert it into ELF notes. 580 * The CPU dump starts with magic number "REGSAVE". NumCpusOffset should be 588 * Only for the crashing cpu we ignore the CPU dump data and get exact 683 * Validate and process the dump data stored by firmware before exporting 694 /* Check if the dump data is valid. */ process_fadump() 720 * We are done validating dump info and elfcore header is now ready process_fadump() 818 /* add this range excluding the reserved dump area. */ for_each_memblock() 825 * return the relocated address that points to the dump region reserved 947 * assisted dump. register_fadump() 962 /* register the future kernel dump with firmware. */ register_fadump() 971 pr_debug("Un-register firmware-assisted dump\n"); fadump_unregister_dump() 985 printk(KERN_ERR "Failed to un-register firmware-assisted dump." fadump_unregister_dump() 998 pr_debug("Invalidating firmware-assisted dump registration\n"); fadump_invalidate_dump() 1012 printk(KERN_ERR "Failed to invalidate firmware-assisted dump " fadump_invalidate_dump() 1023 /* Invalidate the registration only if dump is active. */ fadump_cleanup() 1045 * exclude the dump reserve area. Will reuse it for next fadump_release_memory() 1092 /* Initialize the kernel dump memory structure for FAD registration. */ fadump_invalidate_release_mem() 1105 * Take away the '/proc/vmcore'. We are releasing the dump fadump_release_memory_store() 1147 /* Un-register Firmware-assisted dump */ fadump_register_store() 1155 /* Register Firmware-assisted dump */ fadump_register_store() 1283 * Prepare for firmware-assisted dump. 1291 printk(KERN_ERR "Firmware-assisted dump is not supported on" setup_fadump() 1298 * If dump data is available then see if it is valid and prepare for setup_fadump() 1303 * if dump process fails then invalidate the registration setup_fadump() 1309 /* Initialize the kernel dump memory structure for FAD registration. */ setup_fadump()
|
/linux-4.1.27/drivers/net/wireless/mwifiex/ |
H A D | ethtool.c | 68 mwifiex_get_dump_flag(struct net_device *dev, struct ethtool_dump *dump) mwifiex_get_dump_flag() argument 77 dump->flag = adapter->curr_mem_idx; mwifiex_get_dump_flag() 78 dump->version = 1; mwifiex_get_dump_flag() 80 dump->len = adapter->drv_info_size; mwifiex_get_dump_flag() 83 dump->len = entry->mem_size; mwifiex_get_dump_flag() 85 dump->len = 0; mwifiex_get_dump_flag() 92 mwifiex_get_dump_data(struct net_device *dev, struct ethtool_dump *dump, mwifiex_get_dump_data() argument 111 dev_err(adapter->dev, "firmware dump in progress!!\n"); mwifiex_get_dump_data() 143 dev_err(adapter->dev, "firmware dump in progress!!\n"); mwifiex_set_dump()
|
/linux-4.1.27/arch/powerpc/include/asm/ |
H A D | fadump.h | 2 * Firmware Assisted dump header file. 52 /* Firmware provided dump sections */ 91 /* ibm,configure-kernel-dump header. */ 98 /* Fields for disk dump option. */ 104 /* Maximum time allowed to prevent an automatic dump-reboot. */ 109 * Firmware Assisted dump memory structure. This structure is required for 110 * registering future kernel dump with power firmware through rtas call. 112 * No disk dump option. Hence disk dump path string section is not included. 117 /* Kernel dump sections */ 123 /* Firmware-assisted dump configuration details. */ 166 /* The firmware-assisted dump format. 170 * assisted dump. The dump format contains register save area header followed
|
H A D | kexec.h | 60 * via panic or invoking dump using sysrq-trigger.
|
H A D | rheap.h | 83 /* Simple dump of remote heap info */
|
H A D | user.h | 40 long int signal; /* signal causing core dump */
|
/linux-4.1.27/drivers/mtd/ubi/ |
H A D | debug.c | 28 * ubi_dump_flash - dump a region of flash. 30 * @pnum: the physical eraseblock number to dump 31 * @offset: the starting offset within the physical eraseblock to dump 32 * @len: the length of the region to dump 60 * ubi_dump_ec_hdr - dump an erase counter header. 61 * @ec_hdr: the erase counter header to dump 65 pr_err("Erase counter header dump:\n"); ubi_dump_ec_hdr() 79 * ubi_dump_vid_hdr - dump a volume identifier header. 80 * @vid_hdr: the volume identifier header to dump 84 pr_err("Volume identifier header dump:\n"); ubi_dump_vid_hdr() 104 * ubi_dump_vol_info - dump volume information. 109 pr_err("Volume information dump:\n"); ubi_dump_vol_info() 134 * ubi_dump_vtbl_record - dump a &struct ubi_vtbl_record object. 135 * @r: the object to dump 142 pr_err("Volume table record %d dump:\n", idx); ubi_dump_vtbl_record() 167 * ubi_dump_av - dump a &struct ubi_ainf_volume object. 168 * @av: the object to dump 172 pr_err("Volume attaching information dump:\n"); ubi_dump_av() 184 * ubi_dump_aeb - dump a &struct ubi_ainf_peb object. 185 * @aeb: the object to dump 190 pr_err("eraseblock attaching information dump:\n"); ubi_dump_aeb() 201 * ubi_dump_mkvol_req - dump a &struct ubi_mkvol_req object. 202 * @req: the object to dump 208 pr_err("Volume creation request dump:\n"); ubi_dump_mkvol_req()
|
/linux-4.1.27/drivers/acpi/acpica/ |
H A D | utbuffer.c | 3 * Module Name: utbuffer - Buffer dump routines 54 * PARAMETERS: buffer - Buffer to dump 55 * count - Amount to dump, in bytes 65 * DESCRIPTION: Generic dump buffer in both hex and ascii. 84 /* Nasty little dump buffer routine! */ acpi_ut_dump_buffer() 182 * PARAMETERS: buffer - Buffer to dump 183 * count - Amount to dump, in bytes 193 * DESCRIPTION: Generic dump buffer in both hex and ascii. 201 /* Only dump the buffer if tracing is enabled */ acpi_ut_debug_dump_buffer() 217 * buffer - Buffer to dump 218 * count - Amount to dump, in bytes 228 * DESCRIPTION: Generic dump buffer in both hex and ascii to a file. 251 /* Nasty little dump buffer routine! */ acpi_ut_dump_buffer_to_file()
|
H A D | rsdump.c | 92 * DESCRIPTION: Dispatches the structure to the correct dump routine. 109 /* Walk list and dump all resource descriptors (END_TAG terminates) */ acpi_rs_dump_resource_list() 159 * PARAMETERS: route_table - Pointer to the routing table to dump. 203 * DESCRIPTION: Dump a resource descriptor based on a dump table entry. 481 * output of the resource dump routines 528 * DESCRIPTION: Miscellaneous functions to dump lists of raw data
|
H A D | nsdump.c | 526 /* Decode the type of attached object and dump the contents */ acpi_ns_dump_one_object() 635 * max_depth - Maximum depth of dump. Use ACPI_UINT32_MAX 660 * Just lock the entire namespace for the duration of the dump. acpi_ns_dump_objects() 759 * max_depth - Maximum depth of dump. Use ACPI_UINT32_MAX 784 * Just lock the entire namespace for the duration of the dump. acpi_ns_dump_object_paths() 803 /* Now dump the entire namespace */ acpi_ns_dump_object_paths() 847 * NS_ALL to dump the entire namespace 848 * max_depth - Maximum depth of dump. Use INT_MAX 866 * there is nothing to dump. acpi_ns_dump_tables()
|
H A D | exdump.c | 351 * PARAMETERS: obj_desc - Descriptor to dump 713 /* Debug only -- dump the buffer contents */ 742 * and debug_level exceeds 1, dump package's elements. 900 "**** Start operand dump for opcode [%s], %u operands\n", acpi_ex_dump_operands() 916 "**** End operand dump for [%s]\n", opcode_name)); acpi_ex_dump_operands() 927 * DESCRIPTION: Object dump output formatting functions. These functions 947 * PARAMETERS: node - Descriptor to dump 980 * PARAMETERS: object - Descriptor to dump 1036 * PARAMETERS: obj_desc - Descriptor to dump 1130 * PARAMETERS: obj_desc - Descriptor to dump
|
H A D | nsdumpdv.c | 120 /* Only dump the table if tracing is enabled */ acpi_ns_dump_root_devices()
|
/linux-4.1.27/arch/m68k/coldfire/ |
H A D | vectors.c | 26 extern void dump(struct pt_regs *fp); dbginterrupt_c() 28 dump((struct pt_regs *) fp); dbginterrupt_c()
|
/linux-4.1.27/drivers/staging/rtl8188eu/hal/ |
H A D | rtl8188e_xmit.c | 70 if (dmp_txpkt == 1) {/* dump txdesc for data frame */ _dbg_dump_tx_info() 71 DBG_88E("dump tx_desc for data frame\n"); _dbg_dump_tx_info() 74 } else if (dmp_txpkt == 2) {/* dump txdesc for mgnt frame */ _dbg_dump_tx_info() 75 DBG_88E("dump tx_desc for mgnt frame\n"); _dbg_dump_tx_info()
|
/linux-4.1.27/arch/powerpc/platforms/pseries/ |
H A D | scanlog.c | 12 * of the system. After a reboot the operating system can access a dump 13 * of this data using this driver. A dump exists if the device-tree 16 * This driver exports /proc/powerpc/scan-log-dump which can be read. 37 /* Status returns from ibm,scan-log-dump */ 173 ibm_scan_log_dump = rtas_token("ibm,scan-log-dump"); scanlog_init() 182 ent = proc_create("powerpc/rtas/scan-log-dump", S_IRUSR, NULL, scanlog_init() 194 remove_proc_entry("powerpc/rtas/scan-log-dump", NULL); scanlog_cleanup()
|
H A D | firmware.c | 51 {FW_FEATURE_DUMP, "hcall-dump"},
|
/linux-4.1.27/include/uapi/linux/ |
H A D | ptrace.h | 34 * using the corresponding NT_* types (which are also used in the core dump). 35 * Please note that the NT_PRSTATUS note type in a core dump contains a full 38 * other user_regset flavors, the user_regset layout and the ELF core dump note
|
H A D | inet_diag.h | 33 __u32 idiag_states; /* States to dump */ 34 __u32 idiag_dbs; /* Tables to dump (NI) */
|
H A D | ethtool.h | 165 * @regdump_len: Size of register dump returned by the %ETHTOOL_GREGS 242 * struct ethtool_regs - hardware register dump 246 * version numbers whenever the dump format changes in an 250 * @data: Buffer for the register dump 253 * a register dump for the interface. They must allocate the buffer 264 * struct ethtool_eeprom - EEPROM dump 978 * struct ethtool_dump - used for retrieving, setting device dump 981 * @version: FW version of the dump, filled in by driver 982 * @flag: driver dependent flag for dump setting, filled in by driver during 985 * firmware dump is disabled. 986 * @len: length of dump data, used as the length of the user buffer on entry to 987 * %ETHTOOL_GET_DUMP_DATA and this is returned as dump length by driver 989 * @data: data collected for get dump data operation 1179 #define ETHTOOL_SET_DUMP 0x0000003e /* Set dump settings */ 1180 #define ETHTOOL_GET_DUMP_FLAG 0x0000003f /* Get dump settings */ 1181 #define ETHTOOL_GET_DUMP_DATA 0x00000040 /* Get dump data */
|
H A D | nfc.h | 38 * %NFC_ATTR_DEVICE_INDEX) or dump request to get a list of all nfc devices 47 * @NFC_CMD_GET_TARGET: dump all targets found by the previous poll (requires
|
/linux-4.1.27/drivers/mfd/ |
H A D | ipaq-micro.c | 247 u8 dump[256]; ipaq_micro_eeprom_dump() local 250 ipaq_micro_eeprom_read(micro, 0, 128, dump); ipaq_micro_eeprom_dump() 251 str = ipaq_micro_str(dump, 10); ipaq_micro_eeprom_dump() 256 str = ipaq_micro_str(dump+10, 40); ipaq_micro_eeprom_dump() 263 str = ipaq_micro_str(dump+50, 20); ipaq_micro_eeprom_dump() 268 str = ipaq_micro_str(dump+70, 10); ipaq_micro_eeprom_dump() 273 dev_info(micro->dev, "product ID: %u\n", ipaq_micro_to_u16(dump+80)); ipaq_micro_eeprom_dump() 275 ipaq_micro_to_u16(dump+82)); ipaq_micro_eeprom_dump() 276 dev_info(micro->dev, "page mode: %u\n", ipaq_micro_to_u16(dump+84)); ipaq_micro_eeprom_dump() 277 dev_info(micro->dev, "country ID: %u\n", ipaq_micro_to_u16(dump+86)); ipaq_micro_eeprom_dump() 279 ipaq_micro_to_u16(dump+88) ? "yes" : "no"); ipaq_micro_eeprom_dump() 280 dev_info(micro->dev, "ROM size: %u MiB\n", ipaq_micro_to_u16(dump+90)); ipaq_micro_eeprom_dump() 281 dev_info(micro->dev, "RAM size: %u KiB\n", ipaq_micro_to_u16(dump+92)); ipaq_micro_eeprom_dump() 283 ipaq_micro_to_u16(dump+94), ipaq_micro_to_u16(dump+96)); ipaq_micro_eeprom_dump() 285 dump, 256, true); ipaq_micro_eeprom_dump()
|
H A D | pcf50633-core.c | 89 u8 dump[16]; show_dump_regs() local 101 for (n = 0; n < 256; n += sizeof(dump)) { show_dump_regs() 102 for (n1 = 0; n1 < sizeof(dump); n1++) show_dump_regs() 105 dump[n1] = 0x00; show_dump_regs() 107 dump[n1] = pcf50633_reg_read(pcf, n + n1); show_dump_regs() 109 buf1 += sprintf(buf1, "%*ph\n", (int)sizeof(dump), dump); show_dump_regs()
|
/linux-4.1.27/arch/um/include/asm/ |
H A D | a.out-core.h | 20 * fill in the user structure for an a.out core dump
|
/linux-4.1.27/include/linux/ |
H A D | sock_diag.h | 13 int (*dump)(struct sk_buff *skb, struct nlmsghdr *nlh); member in struct:sock_diag_handler
|
H A D | inet_diag.h | 14 void (*dump)(struct sk_buff *skb, member in struct:inet_diag_handler
|
H A D | kmsg_dump.h | 36 * @dump: Call into dumping code which will retrieve the data with 43 void (*dump)(struct kmsg_dumper *dumper, enum kmsg_dump_reason reason); member in struct:kmsg_dumper
|
H A D | netpoll.h | 2 * Common code for low-level network console, dump, and debugger code
|
H A D | netlink.h | 123 int (*dump)(struct sk_buff * skb, member in struct:netlink_callback 127 /* the module that dump function belong to */ 145 int (*dump)(struct sk_buff *skb, struct netlink_callback *); member in struct:netlink_dump_control
|
H A D | binfmts.h | 80 unsigned long min_coredump; /* minimal dump size */
|
H A D | ethtool.h | 192 * @get_dump_flag: Get dump flag indicating current dump length, version, 194 * @get_dump_data: Get dump data. 195 * @set_dump: Set dump specific flags to the device.
|
/linux-4.1.27/arch/sh/include/asm/ |
H A D | unwinder.h | 10 void (*dump)(struct task_struct *, struct pt_regs *, member in struct:unwinder
|
H A D | user.h | 54 long int signal; /* signal causing core dump */
|
/linux-4.1.27/scripts/ |
H A D | makelst | 2 # A script to dump mixed source code & assembly
|
/linux-4.1.27/net/tipc/ |
H A D | netlink_compat.c | 749 struct tipc_nl_compat_cmd_dump dump; tipc_nl_compat_publ_dump() local 772 dump.dumpit = tipc_nl_publ_dump; tipc_nl_compat_publ_dump() 773 dump.format = __tipc_nl_compat_publ_dump; tipc_nl_compat_publ_dump() 775 err = __tipc_nl_compat_dumpit(&dump, msg, args); tipc_nl_compat_publ_dump() 904 struct tipc_nl_compat_cmd_dump dump; tipc_nl_compat_handle() local 907 memset(&dump, 0, sizeof(dump)); tipc_nl_compat_handle() 918 dump.dumpit = tipc_nl_bearer_dump; tipc_nl_compat_handle() 919 dump.format = tipc_nl_compat_bearer_dump; tipc_nl_compat_handle() 920 return tipc_nl_compat_dumpit(&dump, msg); tipc_nl_compat_handle() 935 dump.dumpit = tipc_nl_link_dump; tipc_nl_compat_handle() 936 dump.format = tipc_nl_compat_link_stat_dump; tipc_nl_compat_handle() 937 return tipc_nl_compat_dumpit(&dump, msg); tipc_nl_compat_handle() 941 dump.dumpit = tipc_nl_link_dump; tipc_nl_compat_handle() 942 dump.format = tipc_nl_compat_link_dump; tipc_nl_compat_handle() 943 return tipc_nl_compat_dumpit(&dump, msg); tipc_nl_compat_handle() 960 dump.header = tipc_nl_compat_name_table_dump_header; tipc_nl_compat_handle() 961 dump.dumpit = tipc_nl_name_table_dump; tipc_nl_compat_handle() 962 dump.format = tipc_nl_compat_name_table_dump; tipc_nl_compat_handle() 963 return tipc_nl_compat_dumpit(&dump, msg); tipc_nl_compat_handle() 967 dump.dumpit = tipc_nl_sk_dump; tipc_nl_compat_handle() 968 dump.format = tipc_nl_compat_sk_dump; tipc_nl_compat_handle() 969 return tipc_nl_compat_dumpit(&dump, msg); tipc_nl_compat_handle() 972 dump.dumpit = tipc_nl_media_dump; tipc_nl_compat_handle() 973 dump.format = tipc_nl_compat_media_dump; tipc_nl_compat_handle() 974 return tipc_nl_compat_dumpit(&dump, msg); tipc_nl_compat_handle() 977 dump.dumpit = tipc_nl_node_dump; tipc_nl_compat_handle() 978 dump.format = tipc_nl_compat_node_dump; tipc_nl_compat_handle() 979 return tipc_nl_compat_dumpit(&dump, msg); tipc_nl_compat_handle() 992 dump.dumpit = tipc_nl_net_dump; tipc_nl_compat_handle() 993 dump.format = tipc_nl_compat_net_dump; tipc_nl_compat_handle() 994 return tipc_nl_compat_dumpit(&dump, msg); tipc_nl_compat_handle()
|
/linux-4.1.27/tools/perf/ |
H A D | builtin-list.c | 24 OPT_BOOLEAN(0, "raw-dump", &raw_dump, "Dump raw events"), cmd_list() 32 set_option_flag(list_options, 0, "raw-dump", PARSE_OPT_HIDDEN); cmd_list()
|
/linux-4.1.27/drivers/infiniband/hw/ipath/ |
H A D | ipath_debug.h | 67 #define __IPATH_IPATHPD 0x80000 /* Ethernet (IPATH) packet dump */ 68 #define __IPATH_IPATHTABLE 0x100000 /* Ethernet (IPATH) table dump */ 88 #define __IPATH_IPATHDBG 0x0 /* Ethernet (IPATH) table dump on */ 91 #define __IPATH_IPATHPD 0x0 /* Ethernet (IPATH) packet dump on */ 92 #define __IPATH_IPATHTABLE 0x0 /* Ethernet (IPATH) packet dump on */
|
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/subdev/mxm/ |
H A D | mxms.c | 152 u8 *dump = desc; mxms_foreach() local 157 pr_cont("%02x", dump[j]); mxms_foreach() 159 dump += headerlen; mxms_foreach() 161 for (i = 0; i < entries; i++, dump += recordlen) { mxms_foreach() 164 pr_cont("%02x", dump[j]); mxms_foreach()
|
/linux-4.1.27/drivers/mtd/ |
H A D | mtdoops.c | 55 "set to 1 to dump oopses, 0 to only dump panics (default 1)"); 58 struct kmsg_dumper dump; member in struct:mtdoops_context 307 struct mtdoops_context, dump); mtdoops_do_dump() 309 /* Only dump oopses if dump_oops is set */ mtdoops_do_dump() 360 cxt->dump.max_reason = KMSG_DUMP_OOPS; mtdoops_notify_add() 361 cxt->dump.dump = mtdoops_do_dump; mtdoops_notify_add() 362 err = kmsg_dump_register(&cxt->dump); mtdoops_notify_add() 383 if (kmsg_dump_unregister(&cxt->dump) < 0) mtdoops_notify_remove()
|
/linux-4.1.27/drivers/net/ethernet/qlogic/netxen/ |
H A D | netxen_nic_ethtool.c | 826 netxen_get_dump_flag(struct net_device *netdev, struct ethtool_dump *dump) netxen_get_dump_flag() argument 831 dump->len = mdump->md_dump_size; netxen_get_dump_flag() 833 dump->len = 0; netxen_get_dump_flag() 836 dump->flag = ETH_FW_DUMP_DISABLE; netxen_get_dump_flag() 838 dump->flag = mdump->md_capture_mask; netxen_get_dump_flag() 840 dump->version = adapter->fw_version; netxen_get_dump_flag() 854 netdev_info(netdev, "FW dump not enabled\n"); netxen_set_dump() 858 netdev_info(netdev, "Previous dump not cleared, not forcing dump\n"); netxen_set_dump() 861 netdev_info(netdev, "Forcing a fw dump\n"); netxen_set_dump() 872 netdev_info(netdev, "Enabling FW dump\n"); netxen_set_dump() 892 "Invalid dump level: 0x%x\n", val->flag); netxen_set_dump() 900 netxen_get_dump_data(struct net_device *netdev, struct ethtool_dump *dump, netxen_get_dump_data() argument 920 /* Copy captured dump data */ netxen_get_dump_data() 924 dump->len = copy_sz + mdump->md_capture_size; netxen_get_dump_data() 925 dump->flag = mdump->md_capture_mask; netxen_get_dump_data() 927 /* Free dump area once data has been captured */ netxen_get_dump_data() 931 netdev_info(netdev, "extracted the fw dump Successfully\n"); netxen_get_dump_data()
|
/linux-4.1.27/arch/cris/arch-v10/kernel/ |
H A D | traps.c | 57 * If the previous stack-dump wasn't a kernel one, dump the show_registers() 71 * instruction. So dump at an offset large enough that the show_registers()
|
/linux-4.1.27/net/sched/ |
H A D | sch_fifo.c | 106 .dump = fifo_dump, 121 .dump = fifo_dump, 136 .dump = fifo_dump,
|
H A D | em_meta.c | 750 int (*dump)(struct sk_buff *, struct meta_value *, int); member in struct:meta_type_ops 759 .dump = meta_var_dump 765 .dump = meta_int_dump 931 if (ops->dump(skb, &meta->lvalue, TCA_EM_META_LVALUE) < 0 || em_meta_dump() 932 ops->dump(skb, &meta->rvalue, TCA_EM_META_RVALUE) < 0) em_meta_dump() 946 .dump = em_meta_dump,
|
H A D | em_text.c | 137 .dump = em_text_dump,
|
H A D | sch_ingress.c | 137 .dump = ingress_dump,
|
H A D | act_ipt.c | 267 .dump = tcf_ipt_dump, 277 .dump = tcf_ipt_dump,
|
H A D | sch_mq.c | 233 .dump = mq_dump_class, 244 .dump = mq_dump,
|
H A D | sch_multiq.c | 410 .dump = multiq_dump_class, 427 .dump = multiq_dump,
|
/linux-4.1.27/drivers/net/appletalk/ |
H A D | cops_ffdrv.h | 21 /* cops_ffdrv.h: LocalTalk driver firmware dump for Linux.
|
H A D | cops_ltdrv.h | 20 /* cops_ltdrv.h: LocalTalk driver firmware dump for Linux.
|
/linux-4.1.27/drivers/scsi/lpfc/ |
H A D | lpfc_debugfs.h | 282 * lpfc_debug_dump_qe - dump an specific entry from a queue 331 * lpfc_debug_dump_q - dump all entries from an specific queue 361 * lpfc_debug_dump_fcp_wq - dump all entries from a fcp work queue 381 * lpfc_debug_dump_fcp_cq - dump all entries from a fcp work queue's cmpl queue 416 * lpfc_debug_dump_hba_eq - dump all entries from a fcp work queue's evt queue 457 * lpfc_debug_dump_els_wq - dump all entries from the els work queue 471 * lpfc_debug_dump_mbx_wq - dump all entries from the mbox work queue 485 * lpfc_debug_dump_dat_rq - dump all entries from the receive data queue 499 * lpfc_debug_dump_hdr_rq - dump all entries from the receive header queue 513 * lpfc_debug_dump_els_cq - dump all entries from the els complete queue 528 * lpfc_debug_dump_mbx_cq - dump all entries from the mbox complete queue 543 * lpfc_debug_dump_wq_by_id - dump all entries from a work queue by queue id 571 * lpfc_debug_dump_mq_by_id - dump all entries from a mbox queue by queue id 588 * lpfc_debug_dump_rq_by_id - dump all entries from a receive queue by queue id 610 * lpfc_debug_dump_cq_by_id - dump all entries from a cmpl queue by queue id 646 * lpfc_debug_dump_eq_by_id - dump all entries from an event queue by queue id
|
/linux-4.1.27/drivers/net/wireless/rt2x00/ |
H A D | rt2x00dump.h | 41 * by reading the frame dump file. This file can have only a single reader. 87 * header versions can still correctly handle the frame dump 88 * (although they will not handle all data passed to them in the dump). 95 * the location of the next field in the dump.
|
/linux-4.1.27/drivers/ssb/ |
H A D | sprom.c | 36 static int hex2sprom(u16 *sprom, const char *dump, size_t len, hex2sprom() argument 45 c = dump[len - 1]; hex2sprom() 55 memcpy(tmp, dump, 4); hex2sprom() 56 dump += 4; hex2sprom()
|
/linux-4.1.27/arch/mn10300/kernel/ |
H A D | fpu-nofpu.c | 25 * fill in the FPU structure for a core dump
|
/linux-4.1.27/arch/cris/arch-v32/kernel/ |
H A D | traps.c | 65 * If the previous stack-dump wasn't a kernel one, dump the show_registers() 79 * instruction. So dump at an offset large enough that the show_registers() 167 /* Dont try to lookup the filename + line, just dump regs. */ fixup_BUG()
|
H A D | time.c | 159 /* Unexpected watchdog, stop the watchdog and dump registers. */ handle_watchdog_bite() 309 * and dump registers before it resets us. For this to happen, we time_init()
|
/linux-4.1.27/lib/ |
H A D | dump_stack.c | 19 * dump_stack - dump the current task information and its stack trace
|
H A D | hexdump.c | 79 * @buf: data blob to dump 91 * to a hex + ASCII dump at the supplied memory location. 207 * print_hex_dump - print a text hex dump to syslog for a binary blob of data 215 * @buf: data blob to dump 219 * Given a buffer of u8 data, print_hex_dump() prints a hex + ASCII dump 278 * @buf: data blob to dump
|
H A D | test-hexdump.c | 78 /* hex dump */ test_hexdump()
|
/linux-4.1.27/arch/cris/include/arch-v10/arch/ |
H A D | elf.h | 40 the pt_regs struct, but needed in a core dump. pr_reg is a elf_gregset_t, 42 struct; regs is a pt_regs struct. We dump all registers, though several are
|
/linux-4.1.27/drivers/firmware/efi/ |
H A D | efi-pstore.c | 62 if (sscanf(name, "dump-type%u-%u-%d-%lu-%c", efi_pstore_read_func() 72 } else if (sscanf(name, "dump-type%u-%u-%d-%lu", efi_pstore_read_func() 79 } else if (sscanf(name, "dump-type%u-%u-%lu", efi_pstore_read_func() 248 sprintf(name, "dump-type%u-%u-%d-%lu-%c", type, part, count, efi_pstore_write() 295 sprintf(name_old, "dump-type%u-%u-%lu", ed->type, efi_pstore_erase_func() 333 sprintf(name, "dump-type%u-%u-%d-%lu", type, part, count, time.tv_sec); efi_pstore_erase()
|
/linux-4.1.27/net/key/ |
H A D | af_key.c | 58 int (*dump)(struct pfkey_sock *sk); member in struct:pfkey_sock::__anon14136 65 } dump; member in struct:pfkey_sock 82 if (pfk->dump.dump) { pfkey_terminate_dump() 83 if (pfk->dump.skb) { pfkey_terminate_dump() 84 kfree_skb(pfk->dump.skb); pfkey_terminate_dump() 85 pfk->dump.skb = NULL; pfkey_terminate_dump() 87 pfk->dump.done(pfk); pfkey_terminate_dump() 88 pfk->dump.dump = NULL; pfkey_terminate_dump() 89 pfk->dump.done = NULL; pfkey_terminate_dump() 284 rc = pfk->dump.dump(pfk); pfkey_do_dump() 288 if (pfk->dump.skb) { pfkey_do_dump() 292 hdr = (struct sadb_msg *) pfk->dump.skb->data; pfkey_do_dump() 295 pfkey_broadcast(pfk->dump.skb, GFP_ATOMIC, BROADCAST_ONE, pfkey_do_dump() 297 pfk->dump.skb = NULL; pfkey_do_dump() 1760 out_hdr->sadb_msg_version = pfk->dump.msg_version; dump_sa() 1766 out_hdr->sadb_msg_pid = pfk->dump.msg_portid; dump_sa() 1768 if (pfk->dump.skb) dump_sa() 1769 pfkey_broadcast(pfk->dump.skb, GFP_ATOMIC, BROADCAST_ONE, dump_sa() 1771 pfk->dump.skb = out_skb; dump_sa() 1779 return xfrm_state_walk(net, &pfk->dump.u.state, dump_sa, (void *) pfk); pfkey_dump_sa() 1786 xfrm_state_walk_done(&pfk->dump.u.state, net); pfkey_dump_sa_done() 1795 if (pfk->dump.dump != NULL) pfkey_dump() 1818 pfk->dump.msg_version = hdr->sadb_msg_version; pfkey_dump() 1819 pfk->dump.msg_portid = hdr->sadb_msg_pid; pfkey_dump() 1820 pfk->dump.dump = pfkey_dump_sa; pfkey_dump() 1821 pfk->dump.done = pfkey_dump_sa_done; pfkey_dump() 1822 xfrm_state_walk_init(&pfk->dump.u.state, proto, filter); pfkey_dump() 2649 out_hdr->sadb_msg_version = pfk->dump.msg_version; dump_sp() 2654 out_hdr->sadb_msg_pid = pfk->dump.msg_portid; dump_sp() 2656 if (pfk->dump.skb) dump_sp() 2657 pfkey_broadcast(pfk->dump.skb, GFP_ATOMIC, BROADCAST_ONE, dump_sp() 2659 pfk->dump.skb = out_skb; dump_sp() 2667 return xfrm_policy_walk(net, &pfk->dump.u.policy, dump_sp, (void *) pfk); pfkey_dump_sp() 2674 xfrm_policy_walk_done(&pfk->dump.u.policy, net); pfkey_dump_sp_done() 2681 if (pfk->dump.dump != NULL) pfkey_spddump() 2684 pfk->dump.msg_version = hdr->sadb_msg_version; pfkey_spddump() 2685 pfk->dump.msg_portid = hdr->sadb_msg_pid; pfkey_spddump() 2686 pfk->dump.dump = pfkey_dump_sp; pfkey_spddump() 2687 pfk->dump.done = pfkey_dump_sp_done; pfkey_spddump() 2688 xfrm_policy_walk_init(&pfk->dump.u.policy, XFRM_POLICY_TYPE_MAIN); pfkey_spddump() 3663 if (pfk->dump.dump != NULL && pfkey_recvmsg()
|
/linux-4.1.27/drivers/infiniband/core/ |
H A D | netlink.c | 151 !client->cb_table[op].dump) ibnl_rcv_msg() 156 .dump = client->cb_table[op].dump, ibnl_rcv_msg()
|
/linux-4.1.27/arch/x86/kernel/apic/ |
H A D | hw_nmi.c | 66 * (backtrace_flag == 1), don't output double cpu dump infos. arch_trigger_all_cpu_backtrace() 101 * Now that all the NMIs have triggered, we can dump out their 140 * all done, we can safely dump the contents of the seq_buf to a printk()
|
/linux-4.1.27/arch/sh/kernel/ |
H A D | unwinder.c | 30 .dump = stack_reader_dump, 146 * can diagnose why curr_unwinder->dump() faulted. unwind_stack() 162 curr_unwinder->dump(task, regs, sp, ops, data); unwind_stack()
|
/linux-4.1.27/arch/blackfin/kernel/ |
H A D | nmi.c | 264 pr_emerg("\nNMI Watchdog detected LOCKUP, dump for CPU %d\n", cpu); do_nmi() 274 /* CoreA dump finished, restore the corelock */ do_nmi() 279 /* CoreB dump finished, notice the CoreA we are done */ do_nmi()
|
H A D | shadow_console.c | 90 * since we can't use printk, dump numbers (as hex), n = # bits
|
/linux-4.1.27/security/tomoyo/ |
H A D | domain.c | 694 /* ee->dump->data is allocated by tomoyo_dump_page(). */ tomoyo_find_next_domain() 850 kfree(ee->dump.data); 859 * @pos: Location to dump. 860 * @dump: Poiner to "struct tomoyo_page_dump". 865 struct tomoyo_page_dump *dump) tomoyo_dump_page() 869 /* dump->data is released by tomoyo_find_next_domain(). */ tomoyo_dump_page() 870 if (!dump->data) { tomoyo_dump_page() 871 dump->data = kzalloc(PAGE_SIZE, GFP_NOFS); tomoyo_dump_page() 872 if (!dump->data) tomoyo_dump_page() 882 if (page != dump->page) { tomoyo_dump_page() 891 dump->page = page; tomoyo_dump_page() 892 memcpy(dump->data + offset, kaddr + offset, tomoyo_dump_page() 864 tomoyo_dump_page(struct linux_binprm *bprm, unsigned long pos, struct tomoyo_page_dump *dump) tomoyo_dump_page() argument
|
H A D | audit.c | 14 * @dump: Pointer to "struct tomoyo_page_dump". 22 struct tomoyo_page_dump *dump) tomoyo_print_bprm() 44 if (!tomoyo_dump_page(bprm, pos, dump)) tomoyo_print_bprm() 49 const char *kaddr = dump->data; tomoyo_print_bprm() 259 bprm_info = tomoyo_print_bprm(r->ee->bprm, &r->ee->dump); tomoyo_init_log() 21 tomoyo_print_bprm(struct linux_binprm *bprm, struct tomoyo_page_dump *dump) tomoyo_print_bprm() argument
|
/linux-4.1.27/drivers/net/ethernet/qlogic/qlcnic/ |
H A D | qlcnic_ethtool.c | 1605 dev_info(&adapter->pdev->dev, "FW dump enabled\n"); qlcnic_enable_fw_dump_state() 1628 dev_info(&adapter->pdev->dev, "FW dump disabled\n"); qlcnic_disable_fw_dump_state() 1650 qlcnic_get_dump_flag(struct net_device *netdev, struct ethtool_dump *dump) qlcnic_get_dump_flag() argument 1661 dump->len = fw_dump->tmpl_hdr_size + fw_dump->size; qlcnic_get_dump_flag() 1663 dump->len = 0; qlcnic_get_dump_flag() 1666 dump->flag = ETH_FW_DUMP_DISABLE; qlcnic_get_dump_flag() 1668 dump->flag = fw_dump->cap_mask; qlcnic_get_dump_flag() 1670 dump->version = adapter->fw_version; qlcnic_get_dump_flag() 1675 qlcnic_get_dump_data(struct net_device *netdev, struct ethtool_dump *dump, qlcnic_get_dump_data() argument 1701 /* Copy captured dump data */ qlcnic_get_dump_data() 1703 dump->len = copy_sz + fw_dump->size; qlcnic_get_dump_data() 1704 dump->flag = fw_dump->cap_mask; qlcnic_get_dump_data() 1706 /* Free dump area once data has been captured */ qlcnic_get_dump_data() 1710 netdev_info(netdev, "extracted the FW dump Successfully\n"); qlcnic_get_dump_data() 1721 "Can not change driver mask to 0x%x. FW dump not enabled\n", qlcnic_set_dump_mask() 1746 netdev_err(netdev, "FW dump not supported\n"); qlcnic_set_dump() 1752 netdev_info(netdev, "FW dump not enabled\n"); qlcnic_set_dump() 1759 "Previous dump not cleared, not forcing dump\n"); qlcnic_set_dump() 1763 netdev_info(netdev, "Forcing a FW dump\n"); qlcnic_set_dump() 1768 netdev_err(netdev, "FW dump not supported\n"); qlcnic_set_dump() 1778 netdev_err(netdev, "FW dump not supported\n"); qlcnic_set_dump() 1800 netdev_err(netdev, "FW dump not supported\n"); qlcnic_set_dump() 1815 netdev_info(netdev, "Invalid dump level: 0x%x\n", qlcnic_set_dump()
|
H A D | qlcnic_minidump.c | 643 "Timeout exceeded in %s, aborting dump\n", qlcnic_dump_l2_cache() 817 /* Collect memory dump using multiple DMA operations if required */ qlcnic_read_memory_pexdma() 868 "Failed to read memory dump using PEX DMA: mask[0x%x]\n", qlcnic_read_memory() 877 "Failed to read memory dump using test agent method: mask[0x%x]\n", qlcnic_read_memory() 927 "Timeout exceeded in %s, aborting dump\n", qlcnic_read_pollrdmwr() 973 "Timeout exceeded in %s, aborting dump\n", qlcnic_read_pollrd() 1290 u32 entry_offset, dump, no_entries, buf_offset = 0; qlcnic_dump_fw() local 1304 /* Return if we don't have firmware dump template header */ qlcnic_dump_fw() 1315 "Previous dump not cleared, not capturing dump\n"); qlcnic_dump_fw() 1319 netif_info(adapter->ahw, drv, adapter->netdev, "Take FW dump\n"); qlcnic_dump_fw() 1320 /* Calculate the size for dump data area only */ qlcnic_dump_fw() 1375 /* Collect dump for this entry */ qlcnic_dump_fw() 1376 dump = fw_dump_ops[ops_index].handler(adapter, entry, buffer); qlcnic_dump_fw() 1377 if (!qlcnic_valid_dump_entry(dev, entry, dump)) { qlcnic_dump_fw() 1393 /* Send a udev event to notify availability of FW dump */ qlcnic_dump_fw() 1412 dev_info(&pdev->dev, "Supports FW dump capability\n"); qlcnic_83xx_get_minidump_template()
|
/linux-4.1.27/net/core/ |
H A D | ethtool.c | 1475 struct ethtool_dump dump; ethtool_set_dump() local 1480 if (copy_from_user(&dump, useraddr, sizeof(dump))) ethtool_set_dump() 1483 return dev->ethtool_ops->set_dump(dev, &dump); ethtool_set_dump() 1490 struct ethtool_dump dump; ethtool_get_dump_flag() local 1496 if (copy_from_user(&dump, useraddr, sizeof(dump))) ethtool_get_dump_flag() 1499 ret = ops->get_dump_flag(dev, &dump); ethtool_get_dump_flag() 1503 if (copy_to_user(useraddr, &dump, sizeof(dump))) ethtool_get_dump_flag() 1513 struct ethtool_dump dump, tmp; ethtool_get_dump_data() local 1520 if (copy_from_user(&dump, useraddr, sizeof(dump))) ethtool_get_dump_data() 1529 len = min(tmp.len, dump.len); ethtool_get_dump_data() 1536 dump.len = len; ethtool_get_dump_data() 1545 ret = ops->get_dump_data(dev, &dump, data); ethtool_get_dump_data() 1550 * 1. The driver's .get_dump_data() does not touch dump.len. ethtool_get_dump_data() 1551 * 2. Or it may set dump.len to how much it really writes, which ethtool_get_dump_data() 1552 * should be tmp.len (or len if it can do a partial dump). ethtool_get_dump_data() 1556 WARN_ON(dump.len != len && dump.len != tmp.len); ethtool_get_dump_data() 1557 dump.len = len; ethtool_get_dump_data() 1559 if (copy_to_user(useraddr, &dump, sizeof(dump))) { ethtool_get_dump_data()
|
/linux-4.1.27/drivers/media/usb/gspca/stv06xx/ |
H A D | stv06xx_sensor.h | 83 /* Instructs the sensor to dump all its contents */ 84 int (*dump)(struct sd *sd); member in struct:stv06xx_sensor
|
H A D | stv06xx_hdcs.h | 157 .dump = hdcs_dump, 176 .dump = hdcs_dump,
|
/linux-4.1.27/arch/x86/kernel/ |
H A D | hw_breakpoint.c | 337 * We can't dump our per cpu values because it 343 void aout_dump_debugregs(struct user *dump) aout_dump_debugregs() argument 355 dump->u_debugreg[i] = bp->attr.bp_addr; aout_dump_debugregs() 359 dump->u_debugreg[i] = 0; aout_dump_debugregs() 363 dump->u_debugreg[4] = 0; aout_dump_debugregs() 364 dump->u_debugreg[5] = 0; aout_dump_debugregs() 365 dump->u_debugreg[6] = current->thread.debugreg6; aout_dump_debugregs() 367 dump->u_debugreg[7] = dr7; aout_dump_debugregs()
|
/linux-4.1.27/include/net/ |
H A D | nl802154.h | 29 NL802154_CMD_GET_WPAN_PHY, /* can dump */ 34 NL802154_CMD_GET_INTERFACE, /* can dump */
|
H A D | rtnetlink.h | 41 * @fill_info: Function to dump device specific netlink attributes 44 * @fill_xstats: Function to dump device specific statistics
|
H A D | act_api.h | 91 int (*dump)(struct sk_buff *, struct tc_action *, int, int); member in struct:tc_action_ops
|
H A D | dn_fib.h | 89 int (*dump)(struct dn_fib_table *t, struct sk_buff *skb, struct netlink_callback *cb); member in struct:dn_fib_table
|
/linux-4.1.27/fs/ecryptfs/ |
H A D | debug.c | 72 "dump:\n"); ecryptfs_dump_auth_tok() 83 "dump:\n"); ecryptfs_dump_auth_tok()
|
/linux-4.1.27/net/bridge/netfilter/ |
H A D | nft_meta_bridge.c | 79 .dump = nft_meta_get_dump, 87 .dump = nft_meta_set_dump,
|
/linux-4.1.27/net/netfilter/ |
H A D | nft_payload.c | 97 .dump = nft_payload_dump, 105 .dump = nft_payload_dump,
|
H A D | nft_cmp.c | 116 .dump = nft_cmp_dump, 171 .dump = nft_cmp_fast_dump,
|
H A D | nft_counter.c | 87 .dump = nft_counter_dump,
|
H A D | nft_limit.c | 93 .dump = nft_limit_dump,
|
H A D | nft_bitwise.c | 124 .dump = nft_bitwise_dump,
|
H A D | nft_byteorder.c | 146 .dump = nft_byteorder_dump,
|
H A D | nft_exthdr.c | 102 .dump = nft_exthdr_dump,
|
H A D | nft_immediate.c | 111 .dump = nft_immediate_dump,
|
H A D | nft_lookup.c | 136 .dump = nft_lookup_dump,
|
H A D | nft_queue.c | 106 .dump = nft_queue_dump,
|
H A D | nft_reject_inet.c | 127 .dump = nft_reject_inet_dump,
|
H A D | nft_meta.c | 335 .dump = nft_meta_get_dump, 343 .dump = nft_meta_set_dump,
|
/linux-4.1.27/tools/power/cpupower/bench/ |
H A D | cpufreq-bench_plot.sh | 85 ###### I am to dump to get this redirected to stderr/stdout in one awk call... ##### 87 ###### I am to dump to get this redirected in one awk call... #####
|
/linux-4.1.27/drivers/s390/char/ |
H A D | zcore.c | 4 * dump format as s390 standalone dumps. 45 /* dump system info */ 179 /* dump header dumped according to s390 crash dump format */ 244 * @addr: Start address of buffer in dump memory 294 * First 4K are dump header 302 size_t mem_offs; /* Offset in dump memory */ zcore_read() 316 /* Copy dump header */ zcore_read() 351 * Since s390 dump analysis tools like lcrash or crash zcore_read() 530 * Initialize dump globals for a given architecture 669 pr_alert("The 64-bit dump tool cannot be used for a " zcore_init()
|
/linux-4.1.27/drivers/scsi/qla4xxx/ |
H A D | ql4_attr.c | 57 /* clear dump collection flags */ qla4_8xxx_sysfs_write_fw_dump() 67 /* Set flag to read dump */ qla4_8xxx_sysfs_write_fw_dump() 72 "Raw firmware dump ready for read on (%ld).\n", qla4_8xxx_sysfs_write_fw_dump() 77 /* Reset HBA and collect FW dump */ qla4_8xxx_sysfs_write_fw_dump()
|
/linux-4.1.27/drivers/scsi/aic94xx/ |
H A D | aic94xx_dump.h | 2 * Aic94xx SAS/SATA driver dump header file.
|
/linux-4.1.27/arch/x86/xen/ |
H A D | vga.c | 15 /* This is drawn from a dump from vgacon:startup in xen_init_vga()
|
/linux-4.1.27/arch/um/drivers/ |
H A D | stderr_console.c | 8 /* trivial console driver -- simply dump everything to stderr */
|
/linux-4.1.27/arch/unicore32/kernel/ |
H A D | traps.c | 49 * physical memory. If it is not there, then we can't dump 73 * to safely read from kernel space. Note that we now dump the dump_mem() 114 * to safely read from kernel space. Note that we now dump the dump_instr() 256 * dump out some state information...
|
H A D | process.c | 258 * Fill in the task's elfregs structure for a core dump. 267 * fill in the fpe structure for a core dump...
|
/linux-4.1.27/drivers/bluetooth/ |
H A D | btmrvl_sdio.c | 1212 /* This function dump sdio register and memory data */ btmrvl_sdio_dump_firmware() 1223 /* dump sdio register first */ btmrvl_sdio_dump_firmware() 1227 BT_ERR("Firmware dump not supported for this card!"); btmrvl_sdio_dump_firmware() 1244 BT_INFO("== btmrvl firmware dump start =="); btmrvl_sdio_dump_firmware() 1251 /* Read the number of the memories which will dump */ btmrvl_sdio_dump_firmware() 1259 /* Read the length of every memory which will dump */ btmrvl_sdio_dump_firmware() 1280 BT_INFO("Firmware dump finished!"); btmrvl_sdio_dump_firmware() 1292 fw_dump_len += (strlen("========Start dump ") + btmrvl_sdio_dump_firmware() 1296 strlen("\n========End dump========\n")); btmrvl_sdio_dump_firmware() 1335 BT_INFO("== btmrvl firmware dump end =="); btmrvl_sdio_dump_firmware() 1352 BT_INFO("== btmrvl firmware dump to /sys/class/devcoredump start"); btmrvl_sdio_dump_firmware() 1357 strcpy(fw_dump_ptr, "========Start dump "); btmrvl_sdio_dump_firmware() 1358 fw_dump_ptr += strlen("========Start dump "); btmrvl_sdio_dump_firmware() 1369 strcpy(fw_dump_ptr, "\n========End dump========\n"); btmrvl_sdio_dump_firmware() 1370 fw_dump_ptr += strlen("\n========End dump========\n"); btmrvl_sdio_dump_firmware() 1381 BT_INFO("== btmrvl firmware dump to /sys/class/devcoredump end"); btmrvl_sdio_dump_firmware()
|
/linux-4.1.27/arch/powerpc/platforms/cell/spufs/ |
H A D | Makefile | 52 echo " * Hex-dump auto generated from $*.c." ; \
|
H A D | coredump.c | 2 * SPU core dump code 90 * internal functionality to dump them without needing to actually
|
/linux-4.1.27/arch/cris/include/arch-v32/arch/ |
H A D | elf.h | 37 * of the stack pointer since it's needed in a core dump.
|
/linux-4.1.27/arch/cris/kernel/ |
H A D | process.c | 75 /* Fill in the fpu structure for a core dump. */ dump_fpu()
|
H A D | traps.c | 149 pr_err("Stack dump [0x%08lx]:\n", (unsigned long)sp); 186 * similar to an Oops dump, and if the kernel is configured to be a nice
|
/linux-4.1.27/net/dccp/ |
H A D | diag.c | 65 .dump = dccp_diag_dump,
|
/linux-4.1.27/net/ipv4/netfilter/ |
H A D | nft_masq_ipv4.c | 39 .dump = nft_masq_dump,
|
H A D | nft_redir_ipv4.c | 48 .dump = nft_redir_dump,
|
H A D | nft_reject_ipv4.c | 49 .dump = nft_reject_dump,
|
/linux-4.1.27/net/ipv4/ |
H A D | tcp_diag.c | 49 .dump = tcp_diag_dump,
|
H A D | udp_diag.c | 169 .dump = udp_diag_dump, 189 .dump = udplite_diag_dump,
|
/linux-4.1.27/net/ipv6/netfilter/ |
H A D | nft_masq_ipv6.c | 39 .dump = nft_masq_dump,
|
H A D | nft_redir_ipv6.c | 48 .dump = nft_redir_dump,
|
H A D | nft_reject_ipv6.c | 50 .dump = nft_reject_dump,
|
/linux-4.1.27/kernel/ |
H A D | workqueue_internal.h | 49 * dump for debugging - WARN, BUG, panic or sysrq.
|
/linux-4.1.27/samples/kprobes/ |
H A D | jprobe_example.c | 2 * Here's a sample kernel module showing the use of jprobes to dump
|
H A D | kprobe_example.c | 3 * Here's a sample kernel module showing the use of kprobes to dump a
|
/linux-4.1.27/scripts/gdb/linux/ |
H A D | dmesg.py | 4 # kernel log buffer dump
|
/linux-4.1.27/tools/perf/scripts/python/ |
H A D | net_dropmonitor.py | 61 print "Starting trace (Ctrl-C to dump results)"
|
/linux-4.1.27/tools/power/acpi/tools/acpidump/ |
H A D | apmain.c | 112 ACPI_OPTION("-x", "Do not use but dump XSDT"); ap_display_usage() 113 ACPI_OPTION("-x -x", "Do not use or dump XSDT"); ap_display_usage() 271 /* If there are no actions, this means "get/dump all tables" */ ap_do_options() 319 /* Get/dump ACPI table(s) as requested */ main()
|
H A D | apdump.c | 109 * Note: Other checksums are computed during the table dump. ap_is_valid_checksum() 230 /* Get and dump all available ACPI tables */ ap_dump_all_tables() 275 * DESCRIPTION: Get an ACPI table via a physical address and dump it. 318 * DESCRIPTION: Get an ACPI table via a signature and dump it. Handles
|
/linux-4.1.27/arch/x86/platform/uv/ |
H A D | uv_nmi.c | 148 * "dump" - dump process stack for each cpu 149 * "ips" - dump IP info for each cpu 150 * "kdump" - do crash dump 406 } else if (uv_nmi_action_is("dump")) { uv_nmi_dump_state_cpu() 414 /* Trigger a slave cpu to dump it's state */ uv_nmi_trigger_dump() 431 pr_crit("UV: CPU %d stuck in process dump function\n", cpu); uv_nmi_trigger_dump() 449 /* Walk through cpu list and dump state of each */ uv_nmi_dump_state() 499 /* Call crash to dump system state */ uv_nmi_kdump() 623 if (uv_nmi_action_is("ips") || uv_nmi_action_is("dump")) uv_handle_nmi()
|
/linux-4.1.27/drivers/media/usb/as102/ |
H A D | as10x_cmd.h | 385 /* dump memory type request */ 398 /* dump response */ 413 /* dump memory type request */ 421 /* dump response */ 423 /* dump data */
|
/linux-4.1.27/drivers/net/wireless/ti/wlcore/ |
H A D | sdio.c | 51 static bool dump = false; variable 84 if (unlikely(dump)) { wl12xx_sdio_raw_read() 122 if (unlikely(dump)) { wl12xx_sdio_raw_write() 453 module_param(dump, bool, S_IRUSR | S_IWUSR); 454 MODULE_PARM_DESC(dump, "Enable sdio read/write dumps.");
|
/linux-4.1.27/crypto/ |
H A D | crypto_user.c | 470 int (*dump)(struct sk_buff *, struct netlink_callback *); member in struct:crypto_link 477 .dump = crypto_dump_report, 499 if (link->dump == NULL) crypto_user_rcv_msg() 508 .dump = link->dump, crypto_user_rcv_msg()
|
/linux-4.1.27/tools/testing/selftests/rcutorture/bin/ |
H A D | kvm.sh | 297 function dump(first, pastlast) function 366 dump(i, i + 1); 369 # Out of CPUs, dump out a batch. 370 dump(first, i); 379 dump(first, i);
|
/linux-4.1.27/drivers/target/iscsi/ |
H A D | iscsi_target_erl0.c | 86 * dump the payload. iscsit_dataout_within_command_recovery_check() 96 goto dump; iscsit_dataout_within_command_recovery_check() 116 goto dump; iscsit_dataout_within_command_recovery_check() 121 goto dump; iscsit_dataout_within_command_recovery_check() 125 goto dump; iscsit_dataout_within_command_recovery_check() 133 dump: iscsit_dataout_within_command_recovery_check() 234 * fullfilling an Recovery R2T, it's best to just dump the iscsit_dataout_check_sequence() 358 * If the DataSN is less than expected, dump the payload. iscsit_dataout_check_datasn() 376 goto dump; iscsit_dataout_check_datasn() 387 dump: iscsit_dataout_check_datasn() 398 int dump = 0, recovery = 0; iscsit_dataout_pre_datapduinorder_yes() local 434 dump = 1; iscsit_dataout_pre_datapduinorder_yes() 435 goto dump; iscsit_dataout_pre_datapduinorder_yes() 447 dump: iscsit_dataout_pre_datapduinorder_yes() 453 (dump) ? DATAOUT_WITHIN_COMMAND_RECOVERY : DATAOUT_NORMAL; iscsit_dataout_pre_datapduinorder_yes()
|
/linux-4.1.27/drivers/net/ethernet/intel/i40e/ |
H A D | i40e_debugfs.c | 75 * dump 76 * The dump entry in debugfs is for getting a data snapshow of 86 * i40e_dbg_dump_read - read the dump data 364 * i40e_dbg_dump_vsi_seid - handles dump vsi seid write into command datum 378 "dump %d: seid not found\n", seid); i40e_dbg_dump_vsi_seid() 727 * i40e_dbg_dump_aq_desc - handles dump aq_desc write into command datum 768 * i40e_dbg_dump_desc - handles dump desc write into command datum 861 dev_info(&pf->pdev->dev, "dump desc rx/tx <vsi_seid> <ring_id> [<desc_n>]\n"); i40e_dbg_dump_desc() 869 * i40e_dbg_dump_vsi_no_seid - handles dump vsi write into command datum 878 dev_info(&pf->pdev->dev, "dump vsi[%d]: %d\n", i40e_dbg_dump_vsi_no_seid() 883 * i40e_dbg_dump_stats - handles dump stats write into command datum 909 * i40e_dbg_dump_veb_seid - handles dump stats of a single given veb 1247 } else if (strncmp(cmd_buf, "dump", 4) == 0) { i40e_dbg_command_write() 1279 "dump desc tx <vsi_seid> <ring_id> [<desc_n>]\n"); i40e_dbg_command_write() 1281 "dump desc rx <vsi_seid> <ring_id> [<desc_n>]\n"); i40e_dbg_command_write() 1282 dev_info(&pf->pdev->dev, "dump desc aq\n"); i40e_dbg_command_write() 1413 "dump debug fwdata <cluster_id> <table_id> <index>\n"); i40e_dbg_command_write() 1418 "AQ debug dump fwdata params %x %x %x %x\n", i40e_dbg_command_write() 1430 "debug dump fwdata AQ Failed %d 0x%x\n", i40e_dbg_command_write() 1437 "AQ debug dump fwdata rlen=0x%x next_table=0x%x next_index=0x%x\n", i40e_dbg_command_write() 1446 "dump desc tx <vsi_seid> <ring_id> [<desc_n>], dump desc rx <vsi_seid> <ring_id> [<desc_n>],\n"); i40e_dbg_command_write() 1447 dev_info(&pf->pdev->dev, "dump switch\n"); i40e_dbg_command_write() 1448 dev_info(&pf->pdev->dev, "dump vsi [seid]\n"); i40e_dbg_command_write() 1449 dev_info(&pf->pdev->dev, "dump reset stats\n"); i40e_dbg_command_write() 1450 dev_info(&pf->pdev->dev, "dump port\n"); i40e_dbg_command_write() 1452 "dump debug fwdata <cluster_id> <table_id> <index>\n"); i40e_dbg_command_write() 1733 dev_info(&pf->pdev->dev, "FD raw packet dump\n"); i40e_dbg_command_write() 1953 dev_info(&pf->pdev->dev, " dump switch\n"); i40e_dbg_command_write() 1954 dev_info(&pf->pdev->dev, " dump vsi [seid]\n"); i40e_dbg_command_write() 1955 dev_info(&pf->pdev->dev, " dump desc tx <vsi_seid> <ring_id> [<desc_n>]\n"); i40e_dbg_command_write() 1956 dev_info(&pf->pdev->dev, " dump desc rx <vsi_seid> <ring_id> [<desc_n>]\n"); i40e_dbg_command_write() 1957 dev_info(&pf->pdev->dev, " dump desc aq\n"); i40e_dbg_command_write() 1958 dev_info(&pf->pdev->dev, " dump reset stats\n"); i40e_dbg_command_write() 1959 dev_info(&pf->pdev->dev, " dump debug fwdata <cluster_id> <table_id> <index>\n"); i40e_dbg_command_write() 2208 pfile = debugfs_create_file("dump", 0600, pf->i40e_dbg_pf, pf, i40e_dbg_pf_init()
|
/linux-4.1.27/fs/jffs2/ |
H A D | debug.c | 166 int dump = 0; __jffs2_dbg_superblock_counts() local 271 dump = 1; \ __jffs2_dbg_superblock_counts() 288 dump = 1; __jffs2_dbg_superblock_counts() 291 if (dump) { __jffs2_dbg_superblock_counts() 448 printk(JFFS2_DBG_MSG_PREFIX " dump space accounting for the eraseblock at %#08x:\n", __jffs2_dbg_dump_jeb_nolock() 469 printk(JFFS2_DBG_MSG_PREFIX " dump JFFS2 blocks lists:\n"); __jffs2_dbg_dump_block_lists_nolock() 709 printk(JFFS2_DBG_MSG_PREFIX " dump fragtree of ino #%u\n", f->inocache->ino); __jffs2_dbg_dump_fragtree_nolock() 742 printk(JFFS2_DBG_MSG_PREFIX " dump from offset %#08x to offset %#08x (%x bytes).\n", __jffs2_dbg_dump_buffer() 781 printk(JFFS2_DBG_MSG_PREFIX " dump node at offset %#08x.\n", ofs); __jffs2_dbg_dump_node()
|
/linux-4.1.27/drivers/scsi/ |
H A D | ipr.c | 2763 * @start_addr: adapter address to dump 2765 * @length_in_words: length to dump in 4 byte words 2788 * @start_addr: adapter address to dump 2790 * @length_in_words: length to dump in 4 byte words 2814 "IOA dump long data transfer timeout\n"); ipr_get_ldump_data_section() 2834 "IOA dump short data transfer timeout\n"); ipr_get_ldump_data_section() 2844 /* Signal dump data received - Clear IO debug Ack */ ipr_get_ldump_data_section() 2857 /* Signal dump data received - Clear IO debug Ack */ ipr_get_ldump_data_section() 2895 struct ipr_ioa_dump *ioa_dump = &ioa_cfg->dump->ioa_dump; ipr_sdt_copy() 2948 * ipr_init_dump_entry_hdr - Initialize a dump entry header. 2949 * @hdr: dump entry header struct 2963 * ipr_dump_ioa_type_data - Fill in the adapter type in the dump. 2965 * @driver_dump: driver dump struct 2989 * ipr_dump_version_data - Fill in the driver version in the dump. 2991 * @driver_dump: driver dump struct 3010 * ipr_dump_trace_data - Fill in the IOA trace in the dump. 3012 * @driver_dump: driver dump struct 3031 * ipr_dump_location_data - Fill in the IOA location in the dump. 3033 * @driver_dump: driver dump struct 3052 * ipr_get_ioa_dump - Perform a dump of the driver and adapter. 3054 * @dump: dump struct 3059 static void ipr_get_ioa_dump(struct ipr_ioa_cfg *ioa_cfg, struct ipr_dump *dump) ipr_get_ioa_dump() argument 3063 struct ipr_driver_dump *driver_dump = &dump->driver_dump; ipr_get_ioa_dump() 3064 struct ipr_ioa_dump *ioa_dump = &dump->ioa_dump; ipr_get_ioa_dump() 3090 "Invalid dump table format: %lx\n", start_addr); ipr_get_ioa_dump() 3099 /* Initialize the overall dump header */ ipr_get_ioa_dump() 3121 /* First entries in sdt are actually a list of dump addresses and ipr_get_ioa_dump() 3122 lengths to gather the real dump data. sdt represents the pointer ipr_get_ioa_dump() 3123 to the ioa generated dump table. Dump data will be extracted based ipr_get_ioa_dump() 3157 /* Update dump length to the actual data to be copied */ ipr_get_ioa_dump() 3158 dump->driver_dump.hdr.len += sizeof(struct ipr_sdt_header); ipr_get_ioa_dump() 3160 dump->driver_dump.hdr.len += num_entries * sizeof(struct ipr_sdt_entry); ipr_get_ioa_dump() 3162 dump->driver_dump.hdr.len += max_num_entries * sizeof(struct ipr_sdt_entry); ipr_get_ioa_dump() 3215 #define ipr_get_ioa_dump(ioa_cfg, dump) do { } while (0) 3219 * ipr_release_dump - Free adapter dump memory 3227 struct ipr_dump *dump = container_of(kref, struct ipr_dump, kref); ipr_release_dump() local 3228 struct ipr_ioa_cfg *ioa_cfg = dump->ioa_cfg; ipr_release_dump() 3234 ioa_cfg->dump = NULL; ipr_release_dump() 3238 for (i = 0; i < dump->ioa_dump.next_page_index; i++) ipr_release_dump() 3239 free_page((unsigned long) dump->ioa_dump.ioa_data[i]); ipr_release_dump() 3241 vfree(dump->ioa_dump.ioa_data); ipr_release_dump() 3242 kfree(dump); ipr_release_dump() 3262 struct ipr_dump *dump; ipr_worker_thread() local 3272 dump = ioa_cfg->dump; ipr_worker_thread() 3273 if (!dump) { ipr_worker_thread() 3277 kref_get(&dump->kref); ipr_worker_thread() 3279 ipr_get_ioa_dump(ioa_cfg, dump); ipr_worker_thread() 3280 kref_put(&dump->kref, ipr_release_dump); ipr_worker_thread() 4120 struct ipr_dump *dump; ipr_read_dump() local 4130 dump = ioa_cfg->dump; ipr_read_dump() 4132 if (ioa_cfg->sdt_state != DUMP_OBTAINED || !dump) { ipr_read_dump() 4136 kref_get(&dump->kref); ipr_read_dump() 4139 if (off > dump->driver_dump.hdr.len) { ipr_read_dump() 4140 kref_put(&dump->kref, ipr_release_dump); ipr_read_dump() 4144 if (off + count > dump->driver_dump.hdr.len) { ipr_read_dump() 4145 count = dump->driver_dump.hdr.len - off; ipr_read_dump() 4149 if (count && off < sizeof(dump->driver_dump)) { ipr_read_dump() 4150 if (off + count > sizeof(dump->driver_dump)) ipr_read_dump() 4151 len = sizeof(dump->driver_dump) - off; ipr_read_dump() 4154 src = (u8 *)&dump->driver_dump + off; ipr_read_dump() 4161 off -= sizeof(dump->driver_dump); ipr_read_dump() 4165 (be32_to_cpu(dump->ioa_dump.sdt.hdr.num_entries_used) * ipr_read_dump() 4176 src = (u8 *)&dump->ioa_dump + off; ipr_read_dump() 4190 src = (u8 *)dump->ioa_dump.ioa_data[(off & PAGE_MASK) >> PAGE_SHIFT]; ipr_read_dump() 4198 kref_put(&dump->kref, ipr_release_dump); ipr_read_dump() 4203 * ipr_alloc_dump - Prepare for adapter dump 4211 struct ipr_dump *dump; ipr_alloc_dump() local 4215 dump = kzalloc(sizeof(struct ipr_dump), GFP_KERNEL); ipr_alloc_dump() 4217 if (!dump) { ipr_alloc_dump() 4229 kfree(dump); ipr_alloc_dump() 4233 dump->ioa_dump.ioa_data = ioa_data; ipr_alloc_dump() 4235 kref_init(&dump->kref); ipr_alloc_dump() 4236 dump->ioa_cfg = ioa_cfg; ipr_alloc_dump() 4242 vfree(dump->ioa_dump.ioa_data); ipr_alloc_dump() 4243 kfree(dump); ipr_alloc_dump() 4247 ioa_cfg->dump = dump; ipr_alloc_dump() 4259 * ipr_free_dump - Free adapter dump memory 4267 struct ipr_dump *dump; ipr_free_dump() local 4273 dump = ioa_cfg->dump; ipr_free_dump() 4274 if (!dump) { ipr_free_dump() 4279 ioa_cfg->dump = NULL; ipr_free_dump() 4282 kref_put(&dump->kref, ipr_release_dump); ipr_free_dump() 4289 * ipr_write_dump - Setup dump state of adapter 4327 .name = "dump", 8146 * ipr_reset_wait_for_dump - Wait for a dump to timeout. 8149 * This function is invoked when an adapter dump has run out 8281 * fetches the dump/unit check if applicable to this reset.
|
/linux-4.1.27/drivers/s390/block/ |
H A D | dasd_erp.c | 180 /* dump sense data */ dasd_log_sense() 191 /* dump sense data to s390 debugfeature*/ dasd_log_sense_dbf()
|
/linux-4.1.27/drivers/s390/net/ |
H A D | ctcm_mpc.h | 213 * skb The struct sk_buff to dump. 214 * offset Offset relative to skb-data, where to start the dump.
|
/linux-4.1.27/arch/unicore32/lib/ |
H A D | backtrace.S | 84 b.l .Ldumpstm @ dump saved registers 91 b.l .Ldumpstm @ dump saved registers
|
/linux-4.1.27/arch/arm/lib/ |
H A D | backtrace.S | 86 bleq .Ldumpstm @ dump saved registers 92 bleq .Ldumpstm @ dump saved registers
|
/linux-4.1.27/net/netlink/ |
H A D | diag.c | 213 .dump = netlink_diag_dump, netlink_diag_handler_dump() 222 .dump = netlink_diag_handler_dump,
|
/linux-4.1.27/include/rdma/ |
H A D | rdma_netlink.h | 9 int (*dump)(struct sk_buff *skb, struct netlink_callback *nlcb); member in struct:ibnl_client_cbs
|
/linux-4.1.27/include/uapi/asm-generic/ |
H A D | mman-common.h | 51 #define MADV_DONTDUMP 16 /* Explicity exclude from the core dump,
|
/linux-4.1.27/arch/s390/kernel/ |
H A D | compat_ptrace.h | 49 s32 signal; /* Signal that caused the core dump. */
|
H A D | head_kdump.S | 23 lhi %r1,2 # mode 2 = esame (dump)
|
H A D | base.S | 102 lhi %r1,2 # Use mode 2 = ESAME (dump)
|
/linux-4.1.27/arch/mn10300/include/asm/ |
H A D | user.h | 38 long int signal; /* Signal that caused the core dump. */
|
/linux-4.1.27/arch/openrisc/include/asm/ |
H A D | elf.h | 40 * Enable dump using regset.
|
/linux-4.1.27/arch/cris/include/asm/ |
H A D | user.h | 40 long int signal; /* signal causing core dump */
|
/linux-4.1.27/arch/ia64/include/asm/ |
H A D | user.h | 46 long int signal; /* signal causing core dump */
|
/linux-4.1.27/arch/m32r/include/asm/ |
H A D | user.h | 40 long int signal; /* signal causing core dump */
|
/linux-4.1.27/sound/usb/ |
H A D | mixer.h | 49 usb_mixer_elem_dump_func_t dump; member in struct:usb_mixer_elem_list
|
/linux-4.1.27/drivers/net/wireless/iwlwifi/ |
H A D | iwl-fw-error-dump.h | 73 * enum iwl_fw_error_dump_type - types of data in the dump file 85 * @IWL_FW_ERROR_DUMP_ERROR_INFO: description of what triggered this dump. 226 * iwl_fw_error_next_data - advance fw error dump data pointer
|
/linux-4.1.27/drivers/staging/lustre/lustre/obdclass/linux/ |
H A D | linux-sysctl.c | 63 OBD_DUMP_ON_TIMEOUT, /* dump kernel debug log upon eviction */ 70 OBD_DUMP_ON_EVICTION, /* dump kernel debug log upon eviction */ 71 OBD_DEBUG_PEER_ON_TIMEOUT, /* dump peer debug when RPC times out */
|
/linux-4.1.27/arch/um/os-Linux/ |
H A D | start_up.c | 307 perror("Getting core dump limit"); check_coredump_limit() 311 printf("Core dump limits :\n\tsoft - "); check_coredump_limit() 326 /* Print out the core dump limits early */ os_early_checks()
|
/linux-4.1.27/drivers/gpu/drm/msm/ |
H A D | msm_rd.c | 48 RD_CONTEXT, /* raw dump */ 49 RD_CMDSTREAM, /* raw dump */ 53 RD_PROGRAM, /* shader program, raw dump */
|
/linux-4.1.27/arch/frv/kernel/ |
H A D | traps.c | 540 * dump the contents of an exception frame 586 /* dump stack segment between frames */ show_backtrace() 606 /* dump frame 0 outside of the loop */ show_backtrace() 619 /* dump the stack between this frame and the next */ show_backtrace() 635 /* we can always dump frame 0, even if the rest of the stack is corrupt */ show_backtrace()
|
/linux-4.1.27/kernel/trace/ |
H A D | trace_functions.c | 422 /* Only dump the current CPU buffer. */ 471 return ftrace_probe_print("dump", m, ip, data); ftrace_dump_print() 597 /* Only dump once. */ ftrace_dump_callback() 610 /* Only dump once. */ ftrace_cpudump_callback() 631 .name = "dump",
|
/linux-4.1.27/arch/powerpc/xmon/ |
H A D | xmon.c | 118 static void dump(void); 200 d dump bytes\n\ 201 di dump instructions\n\ 202 df dump float values\n\ 203 dd dump double values\n\ 204 dl dump the kernel log buffer\n" 207 dp[#] dump paca for current cpu, or cpu #\n\ 208 dpa dump paca for all possible cpus\n" 211 dr dump stream of raw bytes\n\ 229 sf # dump spu fields for spu # (in hex)\n\ 230 sd # dump spu local store for spu # (in hex)\n\ 238 " u dump segment table or SLB\n" 240 " u dump segment registers\n" 242 " u dump TLB\n" 891 dump(); cmds() 2133 printf("No possible cpus, use 'dp #' to dump individual cpus\n"); dump_all_pacas() 2162 dump(void) dump() function
|
/linux-4.1.27/drivers/net/wireless/ath/ath6kl/ |
H A D | hif.c | 79 /* the reg dump pointer is copied to the host interest area */ ath6kl_hif_dump_fw_crash() 87 ath6kl_warn("failed to get ptr to register dump area: %d\n", ath6kl_hif_dump_fw_crash() 92 ath6kl_dbg(ATH6KL_DBG_IRQ, "register dump data address 0x%x\n", ath6kl_hif_dump_fw_crash() 96 /* fetch register dump data */ ath6kl_hif_dump_fw_crash() 100 ath6kl_warn("failed to get register dump: %d\n", ret); ath6kl_hif_dump_fw_crash() 104 ath6kl_info("crash dump:\n"); ath6kl_hif_dump_fw_crash()
|
/linux-4.1.27/net/6lowpan/ |
H A D | iphc.c | 243 raw_dump_table(__func__, "raw skb data dump uncompressed", lowpan_header_decompress() 375 pr_debug("IPv6 header dump:\n\tversion = %d\n\tlength = %d\n\t" lowpan_header_decompress() 384 raw_dump_table(__func__, "raw header dump", (u8 *)&hdr, sizeof(hdr)); lowpan_header_decompress() 431 pr_debug("IPv6 header dump:\n\tversion = %d\n\tlength = %d\n" lowpan_header_compress() 436 raw_dump_table(__func__, "raw skb network header dump", lowpan_header_compress() 608 raw_dump_table(__func__, "raw skb data dump compressed", lowpan_header_compress()
|
/linux-4.1.27/fs/ubifs/ |
H A D | debug.h | 73 * @dfs_dump_lprops: "dump lprops" debugfs knob 74 * @dfs_dump_budg: "dump budgeting information" debugfs knob 75 * @dfs_dump_tnc: "dump TNC" debugfs knob
|
/linux-4.1.27/arch/openrisc/kernel/ |
H A D | traps.c | 79 printk("Stack dump [0x%08lx]:\n", (unsigned long)esp); show_stack() 104 * TODO: SysRq-T trace dump... show_trace_task() 208 printk("Stack dump [0x%08lx]:\n", (unsigned long)stack); nommu_dump_state()
|
H A D | process.c | 207 /* Fill in the fpu structure for a core dump. */ dump_fpu() 242 * Write out registers in core dump format, as defined by the
|
/linux-4.1.27/drivers/oprofile/ |
H A D | oprofile_files.c | 187 oprofilefs_create_file_perm(root, "dump", &dump_fops, 0666); oprofile_create_files()
|
/linux-4.1.27/arch/tile/kernel/ |
H A D | stack.c | 391 pr_err("Starting stack dump of tid %d, pid %d (%s) on cpu %d at cycle %lld\n", tile_show_stack() 413 pr_err("Stack dump truncated (%d frames)\n", i); tile_show_stack() 418 pr_err("Stack dump stopped; next frame identical to this one\n"); tile_show_stack() 420 pr_err("Stack dump complete\n"); tile_show_stack()
|
/linux-4.1.27/arch/mips/fw/arc/ |
H A D | memory.c | 121 printk("ARCS MEMORY DESCRIPTOR dump:\n"); prom_meminit()
|
/linux-4.1.27/arch/score/kernel/ |
H A D | process.c | 98 /* Fill in the fpu structure for a core dump. */ dump_fpu()
|
/linux-4.1.27/arch/parisc/include/uapi/asm/ |
H A D | mman.h | 65 #define MADV_DONTDUMP 69 /* Explicity exclude from the core dump,
|
/linux-4.1.27/arch/avr32/include/asm/ |
H A D | user.h | 53 long int signal; /* signal causing core dump */
|
/linux-4.1.27/arch/hexagon/kernel/ |
H A D | setup.c | 124 * Eventually this will dump information about
|
/linux-4.1.27/arch/ia64/sn/include/ |
H A D | ioerror.h | 25 * - This provides a way to dump all error related information in any layer
|
/linux-4.1.27/arch/arm/mach-s3c24xx/ |
H A D | mach-rx3715.c | 58 /* dump ISA space somewhere unused */
|
/linux-4.1.27/arch/arm/mm/ |
H A D | Makefile | 15 obj-$(CONFIG_ARM_PTDUMP) += dump.o
|
/linux-4.1.27/arch/arm/mach-dove/ |
H A D | mpp.c | 58 /* Dump all the extra MPP registers. The platform code will dump the
|
/linux-4.1.27/arch/alpha/include/uapi/asm/ |
H A D | mman.h | 59 #define MADV_DONTDUMP 16 /* Explicity exclude from the core dump,
|
/linux-4.1.27/net/ieee802154/6lowpan/ |
H A D | rx.c | 57 raw_dump_table(__func__, "raw skb data dump", skb->data, skb->len); iphc_decompress()
|
/linux-4.1.27/tools/testing/selftests/efivarfs/ |
H A D | efivarfs.sh | 139 local file_list="abc dump-type0-11-1-1362436005 1234 -"
|
/linux-4.1.27/tools/testing/selftests/timers/ |
H A D | threadtest.c | 73 /* dump the list */ checklist()
|
/linux-4.1.27/drivers/net/ethernet/qlogic/qlge/ |
H A D | qlge_dbg.c | 530 /* Read the ASIC probe dump */ ql_get_probe() 735 * will contain the dump. 771 /* Get generic NIC reg dump */ ql_core_dump() 1177 /* Prevent the mpi restarting while we dump the memory.*/ ql_core_dump() 1188 /* Reset the RISC so we can dump RAM */ ql_core_dump() 1279 /* Get generic reg dump */ ql_gen_reg_dump() 1325 * If the dump has already been taken and is stored ql_get_dump() 1326 * in our internal buffer and if force dump is set then ql_get_dump() 1327 * just start the spool to dump it to the log file ql_get_dump() 1329 * to the user's buffer or else take complete dump ql_get_dump() 1485 pr_err("reg dump for function #%d\n", qdev->func); ql_dump_regs()
|
/linux-4.1.27/drivers/net/arcnet/ |
H A D | com20020_cs.c | 59 netdev_dbg(dev, "register dump:\n"); regdump() 68 netdev_dbg(dev, "buffer0 dump:\n"); regdump()
|
/linux-4.1.27/arch/mips/include/asm/octeon/ |
H A D | cvmx-helper-util.h | 48 * Debug routine to dump the packet structure to the console 50 * @work: Work queue entry containing the packet to dump
|
/linux-4.1.27/drivers/usb/serial/ |
H A D | whiteheat.h | 31 #define WHITEHEAT_DUMP 7 /* dump memory */ 151 __u16 length; /* number of bytes to dump, max 63 bytes */
|
/linux-4.1.27/arch/nios2/kernel/ |
H A D | process.c | 147 void dump(struct pt_regs *fp) dump() function 253 /* Fill in the FPU structure for a core dump. */ dump_fpu()
|
/linux-4.1.27/arch/parisc/kernel/ |
H A D | hpmc.S | 28 * does a stack and register dump. This at least allows kernel 89 * original values are in the pim dump if we need them.
|
/linux-4.1.27/arch/m68k/kernel/ |
H A D | process.c | 205 /* Fill in the fpu structure for a core dump. */ 225 /* First dump the fpu context to avoid protocol violation. */ dump_fpu()
|
/linux-4.1.27/net/packet/ |
H A D | diag.c | 240 .dump = packet_diag_dump, packet_diag_handler_dump() 249 .dump = packet_diag_handler_dump,
|