···69697070 list_for_each_entry_rcu(type, &ip_set_type_list, list)7171 if (STREQ(type->name, name) &&7272- (type->family == family || type->family == NFPROTO_UNSPEC) &&7272+ (type->family == family ||7373+ type->family == NFPROTO_UNSPEC) &&7374 revision >= type->revision_min &&7475 revision <= type->revision_max)7576 return type;···150149 rcu_read_lock();151150 list_for_each_entry_rcu(type, &ip_set_type_list, list)152151 if (STREQ(type->name, name) &&153153- (type->family == family || type->family == NFPROTO_UNSPEC)) {152152+ (type->family == family ||153153+ type->family == NFPROTO_UNSPEC)) {154154 found = true;155155 if (type->revision_min < *min)156156 *min = type->revision_min;···723721 * by the nfnl mutex. Find the first free index in ip_set_list724722 * and check clashing.725723 */726726- if ((ret = find_free_id(set->name, &index, &clash)) != 0) {724724+ ret = find_free_id(set->name, &index, &clash);725725+ if (ret != 0) {727726 /* If this is the same set and requested, ignore error */728727 if (ret == -EEXIST &&729728 (flags & IPSET_FLAG_EXIST) &&