From ff4b272180b4f52432dadb9c93f43d01a001900f Mon Sep 17 00:00:00 2001 From: Michael Mann Date: Fri, 25 Nov 2016 17:02:20 -0500 Subject: [PATCH] GlusterFS: Insert missing FORGET command. Apparently, it was forgotten ;) Bug: 12614 Change-Id: Id1a2d98e3ea2b381c5fa60faeb342256d4c7d9f8 Reviewed-on: https://code.wireshark.org/review/18955 Reviewed-by: Michael Mann Petri-Dish: Michael Mann Tested-by: Petri Dish Buildbot Reviewed-by: Alexis La Goutte --- epan/dissectors/packet-gluster.h | 1 + epan/dissectors/packet-glusterfs.c | 1 + 2 files changed, 2 insertions(+) diff --git a/epan/dissectors/packet-gluster.h b/epan/dissectors/packet-gluster.h index 9809032d05..7931d7aa18 100644 --- a/epan/dissectors/packet-gluster.h +++ b/epan/dissectors/packet-gluster.h @@ -361,6 +361,7 @@ enum gf_fop_procnum { GFS3_OP_SETATTR, GFS3_OP_FSETATTR, GFS3_OP_READDIRP, + GFS3_OP_FORGET, GFS3_OP_RELEASE, GFS3_OP_RELEASEDIR, GFS3_OP_FREMOVEXATTR, diff --git a/epan/dissectors/packet-glusterfs.c b/epan/dissectors/packet-glusterfs.c index f9051c23ec..e752d6e5c4 100644 --- a/epan/dissectors/packet-glusterfs.c +++ b/epan/dissectors/packet-glusterfs.c @@ -2245,6 +2245,7 @@ static const value_string glusterfs3_1_fop_proc_vals[] = { { GFS3_OP_SETATTR, "SETATTR" }, { GFS3_OP_FSETATTR, "FSETATTR" }, { GFS3_OP_READDIRP, "READDIRP" }, + { GFS3_OP_FORGET, "FORGET" }, { GFS3_OP_RELEASE, "RELEASE" }, { GFS3_OP_RELEASEDIR, "RELEASEDIR" }, { GFS3_OP_FREMOVEXATTR, "FREMOVEXATTR" },