]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
i40e: Add mac_filter_element at the end of the list instead of HEAD
authorKiran Patil <kiran.patil@intel.com>
Wed, 9 Dec 2015 23:50:23 +0000 (15:50 -0800)
committerChuck Anderson <chuck.anderson@oracle.com>
Thu, 10 Mar 2016 16:36:47 +0000 (08:36 -0800)
Orabug: 22342532

Add MAC filter element to the end of the list in the given order,
just to be tidy, and just in case there are ever any ordering issues in
the future.

Change-ID: Idc15276147593ea9393ac72c861f9c7905a791b4
Signed-off-by: Kiran Patil <kiran.patil@intel.com>
Tested-by: Andrew Bowers <andrewx.bowers@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
(cherry picked from commit 04d5a21d62887b9bc5383fc68ab2756287da4532)
Signed-off-by: Brian Maly <brian.maly@oracle.com>
drivers/net/ethernet/intel/i40e/i40e_main.c

index d47ca49e696112f00415fbfeb70f4c93f5871707..a934973799c8f2819a6ebb018f09a1754e293fd3 100644 (file)
@@ -1359,7 +1359,7 @@ struct i40e_mac_filter *i40e_add_filter(struct i40e_vsi *vsi,
                f->changed = true;
 
                INIT_LIST_HEAD(&f->list);
-               list_add(&f->list, &vsi->mac_filter_list);
+               list_add_tail(&f->list, &vsi->mac_filter_list);
        }
 
        /* increment counter and add a new flag if needed */