Searched refs:ts_conf (Results 1 - 2 of 2) sorted by relevance

/linux-master/net/netfilter/
H A Dxt_string.c41 struct ts_config *ts_conf; local
56 ts_conf = textsearch_prepare(conf->algo, conf->pattern, conf->patlen,
58 if (IS_ERR(ts_conf))
59 return PTR_ERR(ts_conf);
61 conf->config = ts_conf;
/linux-master/net/sched/
H A Dem_text.c48 struct ts_config *ts_conf; local
62 ts_conf = textsearch_prepare(conf->algo, (u8 *) conf + sizeof(*conf),
68 if (IS_ERR(ts_conf)) {
69 if (PTR_ERR(ts_conf) == -ENOENT && !(flags & TS_AUTOLOAD)) {
74 return PTR_ERR(ts_conf);
76 textsearch_destroy(ts_conf);
82 textsearch_destroy(ts_conf);
90 tm->config = ts_conf;

Completed in 277 milliseconds