Lines Matching refs:flo
198 struct flow_cache_object *flo; in flow_cache_lookup() local
206 flo = NULL; in flow_cache_lookup()
246 flo = fle->object; in flow_cache_lookup()
247 if (!flo) in flow_cache_lookup()
249 flo = flo->ops->get(flo); in flow_cache_lookup()
250 if (flo) in flow_cache_lookup()
253 flo = fle->object; in flow_cache_lookup()
254 flo->ops->delete(flo); in flow_cache_lookup()
259 flo = NULL; in flow_cache_lookup()
261 flo = fle->object; in flow_cache_lookup()
264 flo = resolver(net, key, family, dir, flo, ctx); in flow_cache_lookup()
267 if (!IS_ERR(flo)) in flow_cache_lookup()
268 fle->object = flo; in flow_cache_lookup()
272 if (!IS_ERR_OR_NULL(flo)) in flow_cache_lookup()
273 flo->ops->delete(flo); in flow_cache_lookup()
277 return flo; in flow_cache_lookup()