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 <mmann78@netscape.net>
Petri-Dish: Michael Mann <mmann78@netscape.net>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
This commit is contained in:
Michael Mann 2016-11-25 17:02:20 -05:00 committed by Alexis La Goutte
parent 9022877411
commit ff4b272180
2 changed files with 2 additions and 0 deletions

View File

@ -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,

View File

@ -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" },