Lines Matching defs:strp
44 int (*parse_msg)(struct strparser *strp, struct sk_buff *skb);
45 void (*rcv_msg)(struct strparser *strp, struct sk_buff *skb);
46 int (*read_sock)(struct strparser *strp, read_descriptor_t *desc,
48 int (*read_sock_done)(struct strparser *strp, int err);
49 void (*abort_parser)(struct strparser *strp, int err);
50 void (*lock)(struct strparser *strp);
51 void (*unlock)(struct strparser *strp);
63 struct strp_msg strp;
70 /* align strp on cache line boundary within skb->cb[] */
72 struct _strp_msg strp;
74 /* strp users' data follows */
87 offsetof(struct sk_skb_cb, strp));
110 static inline void strp_pause(struct strparser *strp)
112 strp->paused = 1;
116 void strp_unpause(struct strparser *strp);
118 static inline void save_strp_stats(struct strparser *strp,
124 strp->stats._stat)
134 if (strp->aborted)
136 if (strp->interrupted)
138 if (strp->unrecov_intr)
160 void strp_done(struct strparser *strp);
161 void strp_stop(struct strparser *strp);
162 void strp_check_rcv(struct strparser *strp);
163 int strp_init(struct strparser *strp, struct sock *sk,
165 void strp_data_ready(struct strparser *strp);
166 int strp_process(struct strparser *strp, struct sk_buff *orig_skb,