On Mon, Dec 18, 2017 at 9:08 PM, Marcelo Ricardo Leitner <marcelo.leit...@gmail.com> wrote: > On Mon, Dec 18, 2017 at 02:13:17PM +0800, Xin Long wrote: >> Whenever a new type of chunk is added, the corresp conversion in >> sctp_cname should be added. Otherwise, in some places, pr_debug >> will print it as "unknown chunk". >> >> Fixes: cc16f00f6529 ("sctp: add support for generating stream reconf ssn >> reset request chunk") >> Signed-off-by: Xin Long <lucien....@gmail.com> > > Acked-by: Marcelo R. Leitner <marcelo.leit...@gmail.com> > > ... >> case SCTP_CID_AUTH: >> return "AUTH"; >> >> + case SCTP_CID_RECONF: >> + return "RECONF"; >> + >> default: >> break; > > Now we also need idata and ifwdtsn in there too, btw. Yes, waiting for the merge from net-next to net.
> > Marcelo