Symbol: buf_copy
drivers/net/ethernet/intel/ice/ice_ddp.c
2299
u8 *buf_copy;
drivers/net/ethernet/intel/ice/ice_ddp.c
2304
buf_copy = devm_kmemdup(ice_hw_to_dev(hw), buf, len, GFP_KERNEL);
drivers/net/ethernet/intel/ice/ice_ddp.c
2305
if (!buf_copy)
drivers/net/ethernet/intel/ice/ice_ddp.c
2308
state = ice_init_pkg(hw, buf_copy, len);
drivers/net/ethernet/intel/ice/ice_ddp.c
2311
devm_kfree(ice_hw_to_dev(hw), buf_copy);
drivers/net/ethernet/intel/ice/ice_ddp.c
2314
hw->pkg_copy = buf_copy;
drivers/scsi/pm8001/pm80xx_hwi.c
401
char *buf_copy = buf;
drivers/scsi/pm8001/pm80xx_hwi.c
483
buf_copy += snprintf(buf_copy, PAGE_SIZE, "%08x ", 0xFFFFFFFF);
drivers/scsi/pm8001/pm80xx_hwi.c
485
return (buf_copy - buf);
drivers/scsi/pm8001/pm80xx_hwi.c
488
buf_copy += snprintf(buf_copy, PAGE_SIZE, "%08x ", 2);
drivers/scsi/pm8001/pm80xx_hwi.c
492
buf_copy += snprintf(buf_copy, PAGE_SIZE, "%08x ", 4);
drivers/scsi/pm8001/pm80xx_hwi.c
501
buf_copy += snprintf(buf_copy, PAGE_SIZE,
drivers/scsi/pm8001/pm80xx_hwi.c
510
return (buf_copy - buf);
lib/test_meminit.c
224
void *buf, *buf_copy;
lib/test_meminit.c
264
buf_copy = kmalloc(size, GFP_ATOMIC);
lib/test_meminit.c
265
if (buf_copy)
lib/test_meminit.c
266
memcpy(buf_copy, buf, size);
lib/test_meminit.c
276
if (buf_copy) {
lib/test_meminit.c
277
fail |= (bool)memcmp(buf, buf_copy, size);
lib/test_meminit.c
278
kfree(buf_copy);
net/bridge/br_sysfs_if.c
330
char *buf_copy;
net/bridge/br_sysfs_if.c
332
buf_copy = kstrndup(buf, count, GFP_KERNEL);
net/bridge/br_sysfs_if.c
333
if (!buf_copy) {
net/bridge/br_sysfs_if.c
338
ret = brport_attr->store_raw(p, buf_copy);
net/bridge/br_sysfs_if.c
340
kfree(buf_copy);
tools/testing/selftests/bpf/progs/test_cls_redirect.c
191
return buf_copy(buf, scratch, len) ? scratch : NULL;
tools/testing/selftests/bpf/progs/test_cls_redirect.c
235
if (!buf_copy(pkt, ports, sizeof(*ports))) {
tools/testing/selftests/bpf/progs/test_cls_redirect.c
310
if (!buf_copy(pkt, &exthdr, sizeof(exthdr))) {
tools/testing/selftests/bpf/progs/test_cls_redirect.c
600
if (!buf_copy(pkt, next_hop, sizeof(*next_hop))) {
tools/testing/selftests/bpf/progs/test_cls_redirect.c
719
if (!buf_copy(pkt, &icmp, sizeof(icmp))) {
tools/testing/selftests/bpf/progs/test_cls_redirect.c
766
if (!buf_copy(pkt, &icmp6, sizeof(icmp6))) {