The following changes since commit de06a46881e1a8876b5fd1de5e002d6189a90a30:
Get rid if --header-file argument for lex (2014-10-14 21:12:22 -0600)
are available in the git repository at:
git://git.kernel.dk/fio.git master
for you to fetch changes up to 0f9940ad60550da5198e2d1e63e11803f5aef914:
BSD Yacc doesn't understand --no-lines, so use -l instead (2014-10-15
14:16:35 -0600)
----------------------------------------------------------------
Bruce Cran (1):
BSD Yacc doesn't understand --no-lines, so use -l instead
Jens Axboe (1):
engines/net: get rid of conversion warning on clang/OSX
Makefile | 2 +-
engines/net.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
---
Diff of recent changes:
diff --git a/Makefile b/Makefile
index 0f77df9..55a93fc 100644
--- a/Makefile
+++ b/Makefile
@@ -276,7 +276,7 @@ y.tab.o: y.tab.c y.tab.h
$(QUIET_CC)$(CC) -o $@ $(CFLAGS) $(CPPFLAGS) -c $<
y.tab.c: exp/expression-parser.y
- $(QUIET_YACC)$(YACC) --no-lines -d -b y exp/expression-parser.y
+ $(QUIET_YACC)$(YACC) -l -d -b y exp/expression-parser.y
y.tab.h: y.tab.c
diff --git a/engines/net.c b/engines/net.c
index aa7de96..7a0fe69 100644
--- a/engines/net.c
+++ b/engines/net.c
@@ -485,7 +485,7 @@ static void store_udp_seq(struct netio_data *nd, struct
io_u *io_u)
struct udp_seq *us;
us = io_u->xfer_buf + io_u->xfer_buflen - sizeof(*us);
- us->magic = cpu_to_le64(FIO_UDP_SEQ_MAGIC);
+ us->magic = cpu_to_le64((uint64_t) FIO_UDP_SEQ_MAGIC);
us->bs = cpu_to_le64((uint64_t) io_u->xfer_buflen);
us->seq = cpu_to_le64(nd->udp_send_seq++);
}
--
To unsubscribe from this list: send the line "unsubscribe fio" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html