Page MenuHomeFreeBSD

D21388.id76807.diff
No OneTemporary

D21388.id76807.diff

Index: head/sbin/ggate/ggatec/ggatec.c
===================================================================
--- head/sbin/ggate/ggatec/ggatec.c
+++ head/sbin/ggate/ggatec/ggatec.c
@@ -35,6 +35,7 @@
#include <unistd.h>
#include <string.h>
#include <ctype.h>
+#include <inttypes.h>
#include <libgen.h>
#include <pthread.h>
#include <signal.h>
@@ -174,8 +175,9 @@
pthread_kill(recvtd, SIGUSR1);
break;
}
- g_gate_log(LOG_DEBUG, "Sent %zd bytes (offset=%llu, "
- "size=%u).", data, hdr.gh_offset, hdr.gh_length);
+ g_gate_log(LOG_DEBUG, "Sent %zd bytes (offset=%"
+ PRIu64 ", length=%" PRIu32 ").", data,
+ hdr.gh_offset, hdr.gh_length);
}
}
g_gate_log(LOG_DEBUG, "%s: Died.", __func__);
@@ -229,9 +231,9 @@
pthread_kill(sendtd, SIGUSR1);
break;
}
- g_gate_log(LOG_DEBUG, "Received %d bytes (offset=%ju, "
- "size=%zu).", data, (uintmax_t)hdr.gh_offset,
- (size_t)hdr.gh_length);
+ g_gate_log(LOG_DEBUG, "Received %d bytes (offset=%"
+ PRIu64 ", length=%" PRIu32 ").", data,
+ hdr.gh_offset, hdr.gh_length);
}
g_gate_ioctl(G_GATE_CMD_DONE, &ggio);
Index: head/sbin/ggate/ggated/ggated.c
===================================================================
--- head/sbin/ggate/ggated/ggated.c
+++ head/sbin/ggate/ggated/ggated.c
@@ -43,6 +43,7 @@
#include <assert.h>
#include <err.h>
#include <errno.h>
+#include <inttypes.h>
#include <fcntl.h>
#include <libgen.h>
#include <libutil.h>
@@ -662,8 +663,8 @@
g_gate_log(LOG_DEBUG, "Received hdr packet.");
g_gate_swap2h_hdr(&req->r_hdr);
- g_gate_log(LOG_DEBUG, "%s: offset=%jd length=%u", __func__,
- (intmax_t)req->r_offset, (unsigned)req->r_length);
+ g_gate_log(LOG_DEBUG, "%s: offset=%" PRIu64 " length=%" PRIu32,
+ __func__, req->r_offset, req->r_length);
/*
* Allocate memory for data.
@@ -730,8 +731,8 @@
assert((req->r_offset % conn->c_sectorsize) == 0);
assert((req->r_length % conn->c_sectorsize) == 0);
- g_gate_log(LOG_DEBUG, "%s: offset=%jd length=%u", __func__,
- (intmax_t)req->r_offset, (unsigned)req->r_length);
+ g_gate_log(LOG_DEBUG, "%s: offset=%" PRIu64 " length=%" PRIu32,
+ __func__, req->r_offset, req->r_length);
/*
* Do the request.
@@ -804,8 +805,8 @@
error = pthread_mutex_unlock(&outqueue_mtx);
assert(error == 0);
- g_gate_log(LOG_DEBUG, "%s: offset=%jd length=%u", __func__,
- (intmax_t)req->r_offset, (unsigned)req->r_length);
+ g_gate_log(LOG_DEBUG, "%s: offset=%" PRIu64 " length=%" PRIu32,
+ __func__, req->r_offset, req->r_length);
/*
* Send the request.
@@ -824,8 +825,8 @@
strerror(errno));
}
g_gate_log(LOG_DEBUG,
- "Sent %zd bytes (offset=%ju, size=%zu).", data,
- (uintmax_t)req->r_offset, (size_t)req->r_length);
+ "Sent %zd bytes (offset=%" PRIu64 ", size=%" PRIu32
+ ").", data, req->r_offset, req->r_length);
free(req->r_data);
}
free(req);

File Metadata

Mime Type
text/plain
Expires
Fri, Nov 28, 6:20 PM (8 h, 2 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
26294255
Default Alt Text
D21388.id76807.diff (2 KB)

Event Timeline