int vf, int index, unsigned char *mac_addr)
 {
        struct vf_macvlans *entry;
+       bool found = false;
        int retval = 0;
 
        if (index <= 1) {
        if (!index)
                return 0;
 
-       entry = NULL;
-
        list_for_each_entry(entry, &adapter->vf_mvs.l, l) {
-               if (entry->free)
+               if (entry->free) {
+                       found = true;
                        break;
+               }
        }
 
        /*
         * If we traversed the entire list and didn't find a free entry
-        * then we're out of space on the RAR table.  Also entry may
-        * be NULL because the original memory allocation for the list
-        * failed, which is not fatal but does mean we can't support
-        * VF requests for MACVLAN because we couldn't allocate
-        * memory for the list management required.
+        * then we're out of space on the RAR table.  It's also possible
+        * for the &adapter->vf_mvs.l list to be empty because the original
+        * memory allocation for the list failed, which is not fatal but does
+        * mean we can't support VF requests for MACVLAN because we couldn't
+        * allocate memory for the list management required.
         */
-       if (!entry || !entry->free)
+       if (!found)
                return -ENOSPC;
 
        retval = ixgbe_add_mac_filter(adapter, mac_addr, vf);