Commit ab8c31dd authored by Fuqian Huang's avatar Fuqian Huang Committed by Kalle Valo

net/wireless: Use kmemdup rather than duplicating its implementation

kmemdup is introduced to duplicate a region of memory in a neat way.
Rather than kmalloc/kzalloc + memcpy, which the programmer needs to
write the size twice (sometimes lead to mistakes), kmemdup improves
readability, leads to smaller code and also reduce the chances of mistakes.
Suggestion to use kmemdup rather than using kmalloc/kzalloc + memcpy.
Signed-off-by: default avatarFuqian Huang <huangfq.daxian@gmail.com>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent 0a3ce169
...@@ -3650,7 +3650,7 @@ static int ath6kl_wmi_send_action_cmd(struct wmi *wmi, u8 if_idx, u32 id, ...@@ -3650,7 +3650,7 @@ static int ath6kl_wmi_send_action_cmd(struct wmi *wmi, u8 if_idx, u32 id,
if (wait) if (wait)
return -EINVAL; /* Offload for wait not supported */ return -EINVAL; /* Offload for wait not supported */
buf = kmalloc(data_len, GFP_KERNEL); buf = kmemdup(data, data_len, GFP_KERNEL);
if (!buf) if (!buf)
return -ENOMEM; return -ENOMEM;
...@@ -3661,7 +3661,6 @@ static int ath6kl_wmi_send_action_cmd(struct wmi *wmi, u8 if_idx, u32 id, ...@@ -3661,7 +3661,6 @@ static int ath6kl_wmi_send_action_cmd(struct wmi *wmi, u8 if_idx, u32 id,
} }
kfree(wmi->last_mgmt_tx_frame); kfree(wmi->last_mgmt_tx_frame);
memcpy(buf, data, data_len);
wmi->last_mgmt_tx_frame = buf; wmi->last_mgmt_tx_frame = buf;
wmi->last_mgmt_tx_frame_len = data_len; wmi->last_mgmt_tx_frame_len = data_len;
...@@ -3689,7 +3688,7 @@ static int __ath6kl_wmi_send_mgmt_cmd(struct wmi *wmi, u8 if_idx, u32 id, ...@@ -3689,7 +3688,7 @@ static int __ath6kl_wmi_send_mgmt_cmd(struct wmi *wmi, u8 if_idx, u32 id,
if (wait) if (wait)
return -EINVAL; /* Offload for wait not supported */ return -EINVAL; /* Offload for wait not supported */
buf = kmalloc(data_len, GFP_KERNEL); buf = kmemdup(data, data_len, GFP_KERNEL);
if (!buf) if (!buf)
return -ENOMEM; return -ENOMEM;
...@@ -3700,7 +3699,6 @@ static int __ath6kl_wmi_send_mgmt_cmd(struct wmi *wmi, u8 if_idx, u32 id, ...@@ -3700,7 +3699,6 @@ static int __ath6kl_wmi_send_mgmt_cmd(struct wmi *wmi, u8 if_idx, u32 id,
} }
kfree(wmi->last_mgmt_tx_frame); kfree(wmi->last_mgmt_tx_frame);
memcpy(buf, data, data_len);
wmi->last_mgmt_tx_frame = buf; wmi->last_mgmt_tx_frame = buf;
wmi->last_mgmt_tx_frame_len = data_len; wmi->last_mgmt_tx_frame_len = data_len;
......
...@@ -79,10 +79,9 @@ static void cw1200_queue_register_post_gc(struct list_head *gc_list, ...@@ -79,10 +79,9 @@ static void cw1200_queue_register_post_gc(struct list_head *gc_list,
struct cw1200_queue_item *item) struct cw1200_queue_item *item)
{ {
struct cw1200_queue_item *gc_item; struct cw1200_queue_item *gc_item;
gc_item = kmalloc(sizeof(struct cw1200_queue_item), gc_item = kmemdup(item, sizeof(struct cw1200_queue_item),
GFP_ATOMIC); GFP_ATOMIC);
BUG_ON(!gc_item); BUG_ON(!gc_item);
memcpy(gc_item, item, sizeof(struct cw1200_queue_item));
list_add_tail(&gc_item->head, gc_list); list_add_tail(&gc_item->head, gc_list);
} }
......
...@@ -1434,7 +1434,7 @@ int wl1271_rx_filter_alloc_field(struct wl12xx_rx_filter *filter, ...@@ -1434,7 +1434,7 @@ int wl1271_rx_filter_alloc_field(struct wl12xx_rx_filter *filter,
field = &filter->fields[filter->num_fields]; field = &filter->fields[filter->num_fields];
field->pattern = kzalloc(len, GFP_KERNEL); field->pattern = kmemdup(pattern, len, GFP_KERNEL);
if (!field->pattern) { if (!field->pattern) {
wl1271_warning("Failed to allocate RX filter pattern"); wl1271_warning("Failed to allocate RX filter pattern");
return -ENOMEM; return -ENOMEM;
...@@ -1445,7 +1445,6 @@ int wl1271_rx_filter_alloc_field(struct wl12xx_rx_filter *filter, ...@@ -1445,7 +1445,6 @@ int wl1271_rx_filter_alloc_field(struct wl12xx_rx_filter *filter,
field->offset = cpu_to_le16(offset); field->offset = cpu_to_le16(offset);
field->flags = flags; field->flags = flags;
field->len = len; field->len = len;
memcpy(field->pattern, pattern, len);
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment