]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
i40e: fix trivial typo in naming of i40e_sync_filters_subtask
authorJacob Keller <jacob.e.keller@intel.com>
Tue, 25 Oct 2016 23:08:52 +0000 (16:08 -0700)
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>
Sat, 3 Dec 2016 06:56:29 +0000 (22:56 -0800)
A comment incorrectly referred to i40e_vsi_sync_filters_subtask which
does not actually exist. Reference the correct function instead.

Change-ID: I6bd805c605741ffb6fe34377259bb0d597edfafd
Signed-off-by: Jacob Keller <jacob.e.keller@intel.com>
Tested-by: Andrew Bowers <andrewx.bowers@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
drivers/net/ethernet/intel/i40e/i40e_main.c

index fe5939a3536febdb4353178cdb812661fa2f926d..6832ab126d411b590c3861458dbb2a1f8859f4e3 100644 (file)
@@ -1211,12 +1211,12 @@ bool i40e_is_vsi_in_vlan(struct i40e_vsi *vsi)
         *    i40e_add_filter.
         *
         * 2) the only place where filters are actually removed is in
-        *    i40e_vsi_sync_filters_subtask.
+        *    i40e_sync_filters_subtask.
         *
         * Thus, we can simply use a boolean value, has_vlan_filters which we
         * will set to true when we add a VLAN filter in i40e_add_filter. Then
         * we have to perform the full search after deleting filters in
-        * i40e_vsi_sync_filters_subtask, but we already have to search
+        * i40e_sync_filters_subtask, but we already have to search
         * filters here and can perform the check at the same time. This
         * results in avoiding embedding a loop for VLAN mode inside another
         * loop over all the filters, and should maintain correctness as noted