Lines Matching refs:m
30 #define EM_TEXT_PRIV(m) ((struct text_match *) (m)->data) argument
32 static int em_text_match(struct sk_buff *skb, struct tcf_ematch *m, in em_text_match() argument
35 struct text_match *tm = EM_TEXT_PRIV(m); in em_text_match()
48 struct tcf_ematch *m) in em_text_change() argument
96 m->datalen = sizeof(*tm); in em_text_change()
97 m->data = (unsigned long) tm; in em_text_change()
102 static void em_text_destroy(struct tcf_ematch *m) in em_text_destroy() argument
104 if (EM_TEXT_PRIV(m) && EM_TEXT_PRIV(m)->config) in em_text_destroy()
105 textsearch_destroy(EM_TEXT_PRIV(m)->config); in em_text_destroy()
108 static int em_text_dump(struct sk_buff *skb, struct tcf_ematch *m) in em_text_dump() argument
110 struct text_match *tm = EM_TEXT_PRIV(m); in em_text_dump()