Searched refs:kbuf (Results 101 - 104 of 104) sorted by relevance

12345

/linux-master/drivers/mtd/
H A Dmtdcore.c2445 void *kbuf; local
2450 kbuf = kmalloc(*size, flags);
2451 if (kbuf)
2452 return kbuf;
/linux-master/drivers/scsi/cxlflash/
H A Dmain.c3389 char *kbuf = NULL; local
3415 kbuf = PTR_ALIGN(buf, cache_line_size());
3420 if (copy_from_user(kbuf, ubuf, ulen)) {
3437 rcb.data_ea = (uintptr_t)kbuf;
3452 if (copy_to_user(ubuf, kbuf, ulen))
/linux-master/arch/s390/kernel/
H A Dipl.c2390 int ipl_report_add_component(struct ipl_report *report, struct kexec_buf *kbuf, argument
2400 comp->entry.addr = kbuf->mem;
2401 comp->entry.len = kbuf->memsz;
/linux-master/kernel/trace/
H A Dtrace.c10097 char *kbuf, *buf, *tmp; local
10102 kbuf = kmalloc(WRITE_BUFSIZE, GFP_KERNEL);
10103 if (!kbuf)
10112 if (copy_from_user(kbuf, buffer + done, size)) {
10116 kbuf[size] = '\0';
10117 buf = kbuf;
10126 if (buf != kbuf)
10153 kfree(kbuf);

Completed in 146 milliseconds

12345