Remove unused FL_NOAUTO.

This commit is contained in:
Gleb Smirnoff 2014-02-13 05:19:09 +00:00
parent 1748334408
commit 25c03b9100
2 changed files with 1 additions and 2 deletions

View File

@ -899,7 +899,7 @@ flowtable_lookup_common(struct flowtable *ft, struct sockaddr_storage *ssa,
}
critical_exit();
if (flags & FL_NOAUTO || flow_full(ft))
if (flow_full(ft))
return (NULL);
FLOWSTAT_INC(ft, ft_misses);

View File

@ -44,7 +44,6 @@ struct flowtable_stat {
#ifdef _KERNEL
#define FL_HASH_ALL (1<<0) /* hash 4-tuple + protocol */
#define FL_NOAUTO (1<<2) /* don't automatically add flentry on miss */
#define FL_IPV6 (1<<9)
#define FL_TCP (1<<11)