aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-nfs.c
diff options
context:
space:
mode:
authorTom Haynes <loghyr@primarydata.com>2016-05-13 11:10:45 -0700
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2016-05-13 19:22:05 +0000
commit0766f78557624846f83c9f17012a5bba40238716 (patch)
treef6d57f5f557de82313632d8dd2c6c82f4920a826 /epan/dissectors/packet-nfs.c
parent32a216769877698253d4f8c8be30de3ed4d03ced (diff)
packet-nfs: Add flex file flag: FF_FLAGS_NO_READ_IO
Change-Id: I3c5895d2e0671cdcd8063aa27356d49aa2bdbfa7 Signed-off-by: Tom Haynes <loghyr@primarydata.com> Reviewed-on: https://code.wireshark.org/review/15416 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Reviewed-by: Trond Myklebust <trondmy@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-nfs.c')
-rw-r--r--epan/dissectors/packet-nfs.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/epan/dissectors/packet-nfs.c b/epan/dissectors/packet-nfs.c
index 87af3fe2ee..f69d258c24 100644
--- a/epan/dissectors/packet-nfs.c
+++ b/epan/dissectors/packet-nfs.c
@@ -614,6 +614,7 @@ static int hf_nfs4_fattr_change_attr_type = -1;
static int hf_nfs4_ff_layout_flags = -1;
static int hf_nfs4_ff_layout_flags_no_layoutcommit = -1;
static int hf_nfs4_ff_layout_flags_no_io_thru_mds = -1;
+static int hf_nfs4_ff_layout_flags_no_read_io = -1;
static int hf_nfs4_ff_stats_collect_hint = -1;
static int hf_nfs4_ff_synthetic_owner = -1;
static int hf_nfs4_ff_synthetic_owner_group = -1;
@@ -9130,6 +9131,7 @@ dissect_nfs4_layoutget(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree
static const int * layout_flags[] = {
&hf_nfs4_ff_layout_flags_no_layoutcommit,
&hf_nfs4_ff_layout_flags_no_io_thru_mds,
+ &hf_nfs4_ff_layout_flags_no_read_io,
NULL
};
@@ -13436,6 +13438,10 @@ proto_register_nfs(void)
"FLAG_NO_IO_THRU_MDS", "nfs.ff.layout_flags.no_io_thru_mds", FT_BOOLEAN, 32,
TFS(&tfs_set_notset), 0x00000002, NULL, HFILL}},
+ { &hf_nfs4_ff_layout_flags_no_read_io, {
+ "FLAG_NO_READ_IO", "nfs.ff.layout_flags.no_read_io", FT_BOOLEAN, 32,
+ TFS(&tfs_set_notset), 0x00000004, NULL, HFILL}},
+
{ &hf_nfs4_ff_stats_collect_hint, {
"stats collect hint", "nfs.ff.stats_collect_hint", FT_UINT32, BASE_DEC,
NULL, 0, "Layoutstats sampling period hint, Seconds", HFILL }},