Re: [ovs-dev] [PATCH 14/17] util: Make hexits_value() support 64-bit integers too.

2014-09-30 Thread Ben Pfaff
On Wed, Sep 24, 2014 at 10:50:04AM +0900, YAMAMOTO Takashi wrote: diff --git a/lib/nx-match.c b/lib/nx-match.c index df39b4e..5970e44 100644 --- a/lib/nx-match.c +++ b/lib/nx-match.c @@ -1093,8 +1093,11 @@ parse_nxm_field_name(const char *name, int name_len) /* Check whether it's

Re: [ovs-dev] [PATCH 14/17] util: Make hexits_value() support 64-bit integers too.

2014-09-23 Thread YAMAMOTO Takashi
diff --git a/lib/nx-match.c b/lib/nx-match.c index df39b4e..5970e44 100644 --- a/lib/nx-match.c +++ b/lib/nx-match.c @@ -1093,8 +1093,11 @@ parse_nxm_field_name(const char *name, int name_len) /* Check whether it's a 32-bit field header value as hex. * (This isn't ordinarily

[ovs-dev] [PATCH 14/17] util: Make hexits_value() support 64-bit integers too.

2014-09-17 Thread Ben Pfaff
Signed-off-by: Ben Pfaff b...@nicira.com --- lib/json.c | 5 +++-- lib/nx-match.c | 7 +-- lib/util.c | 20 lib/util.h | 2 +- 4 files changed, 17 insertions(+), 17 deletions(-) diff --git a/lib/json.c b/lib/json.c index 9c819d7..8114972 100644 ---