diff options
author | Ravishankar N <ravishankar@redhat.com> | 2016-04-27 11:41:05 +0000 |
---|---|---|
committer | Atin Mukherjee <amukherj@redhat.com> | 2016-04-27 21:20:06 -0700 |
commit | 1890e5e09203e65b1c64f0f13c213d8944b81b87 (patch) | |
tree | ac0091100a95ba8f37abe9406c7862f17537b784 /libglusterfs/src | |
parent | b5cfe948cb3569f034da80ac97b5d2f028b3b0e5 (diff) |
Swap order of GF_EVENT_SOME_CHILD_DOWN enum
GF_EVENT_SOME_CHILD_DOWN value seems to be mismatching between master and 3.7.
Fix the master since 3.7 is a release branch and GF_EVENT_SOME_CHILD_DOWN was
added newly and hence should be in the end in the enum list.
Signed-off-by: Ravishankar N <ravishankar@redhat.com>
Change-Id: I1f758550d6300f6750d1574302096d8e7f493549
BUG: 1330974
Reviewed-on: http://review.gluster.org/14092
Tested-by: Ravishankar N <ravishankar@redhat.com>
Smoke: Gluster Build System <jenkins@build.gluster.com>
NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org>
Reviewed-by: N Balachandran <nbalacha@redhat.com>
CentOS-regression: Gluster Build System <jenkins@build.gluster.com>
Diffstat (limited to 'libglusterfs/src')
-rw-r--r-- | libglusterfs/src/glusterfs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libglusterfs/src/glusterfs.h b/libglusterfs/src/glusterfs.h index d3be103d074..5bdb5801fcf 100644 --- a/libglusterfs/src/glusterfs.h +++ b/libglusterfs/src/glusterfs.h @@ -658,8 +658,8 @@ typedef enum { GF_EVENT_PARENT_DOWN, GF_EVENT_VOLUME_BARRIER_OP, GF_EVENT_UPCALL, - GF_EVENT_SOME_CHILD_DOWN, GF_EVENT_SCRUB_STATUS, + GF_EVENT_SOME_CHILD_DOWN, GF_EVENT_MAXVAL, } glusterfs_event_t; |