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
490
buf_copy += snprintf(buf_copy, PAGE_SIZE, "%08x ", 0xFFFFFFFF);
drivers/scsi/pm8001/pm80xx_hwi.c
492
return (buf_copy - buf);
drivers/scsi/pm8001/pm80xx_hwi.c
495
buf_copy += snprintf(buf_copy, PAGE_SIZE, "%08x ", 2);
drivers/scsi/pm8001/pm80xx_hwi.c
499
buf_copy += snprintf(buf_copy, PAGE_SIZE, "%08x ", 4);
drivers/scsi/pm8001/pm80xx_hwi.c
508
buf_copy += snprintf(buf_copy, PAGE_SIZE,
drivers/scsi/pm8001/pm80xx_hwi.c
517
return (buf_copy - buf);
lib/test_meminit.c
224
void *buf, *buf_copy;
lib/test_meminit.c
262
buf_copy = kmalloc(size, GFP_ATOMIC);
lib/test_meminit.c
263
if (buf_copy)
lib/test_meminit.c
264
memcpy(buf_copy, buf, size);
lib/test_meminit.c
274
if (buf_copy) {
lib/test_meminit.c
275
fail |= (bool)memcmp(buf, buf_copy, size);
lib/test_meminit.c
276
kfree(buf_copy);
net/bridge/br_sysfs_if.c
352
char *buf_copy;
net/bridge/br_sysfs_if.c
354
buf_copy = kstrndup(buf, count, GFP_KERNEL);
net/bridge/br_sysfs_if.c
355
if (!buf_copy) {
net/bridge/br_sysfs_if.c
359
ret = brport_attr->store_raw(p, buf_copy);
net/bridge/br_sysfs_if.c
360
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))) {