Commit de54f390 authored by Randy Dunlap's avatar Randy Dunlap Committed by David S. Miller

[BONDING]: fix sparse gfp nocast warnings

Fix implicit nocast warnings in bonding code:
drivers/net/bonding/bond_main.c:1302:49: warning: implicit cast to nocast type
Signed-off-by: default avatarRandy Dunlap <rdunlap@xenotime.net>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 7b5b3f3d
...@@ -1289,12 +1289,13 @@ static void bond_mc_list_destroy(struct bonding *bond) ...@@ -1289,12 +1289,13 @@ static void bond_mc_list_destroy(struct bonding *bond)
/* /*
* Copy all the Multicast addresses from src to the bonding device dst * Copy all the Multicast addresses from src to the bonding device dst
*/ */
static int bond_mc_list_copy(struct dev_mc_list *mc_list, struct bonding *bond, int gpf_flag) static int bond_mc_list_copy(struct dev_mc_list *mc_list, struct bonding *bond,
unsigned int __nocast gfp_flag)
{ {
struct dev_mc_list *dmi, *new_dmi; struct dev_mc_list *dmi, *new_dmi;
for (dmi = mc_list; dmi; dmi = dmi->next) { for (dmi = mc_list; dmi; dmi = dmi->next) {
new_dmi = kmalloc(sizeof(struct dev_mc_list), gpf_flag); new_dmi = kmalloc(sizeof(struct dev_mc_list), gfp_flag);
if (!new_dmi) { if (!new_dmi) {
/* FIXME: Potential memory leak !!! */ /* FIXME: Potential memory leak !!! */
......
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