Joonwoo Park wrote:
The function textsearch_prepare has new parameter to support case insensitive searching. Signed-off-by: Joonwoo Park <joonwpark81@xxxxxxxxx> --- include/linux/textsearch.h | 6 ++++-- lib/textsearch.c | 6 ++++-- net/netfilter/nf_conntrack_amanda.c | 2 +- net/netfilter/xt_string.c | 2 +- net/sched/em_text.c | 2 +- 5 files changed, 11 insertions(+), 7 deletions(-) diff --git a/include/linux/textsearch.h b/include/linux/textsearch.h index 6f371f2..b6897f3 100644 --- a/include/linux/textsearch.h +++ b/include/linux/textsearch.h @@ -39,7 +39,7 @@ struct ts_state struct ts_ops { const char *name; - struct ts_config * (*init)(const void *, unsigned int, gfp_t); + struct ts_config * (*init)(const void *, unsigned int, u8, gfp_t);
This looks fine to me, although a generic flags argument would prevent changing all users again next time someone wants to add a feature. But I'll leave that decision to Thomas. Thomas, since there are some netfilter patches that depend on the textsearch patches, do you want me to apply those as well (haven't reviewed them yet though)? -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html