Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sbin/dump PR bin/55834
details: https://anonhg.NetBSD.org/src/rev/47c2ecb52174
branches: trunk
changeset: 978774:47c2ecb52174
user: kre <kre%NetBSD.org@localhost>
date: Thu Dec 03 08:25:57 2020 +0000
description:
PR bin/55834
count blocks written in unsigned 64 bit counter
rather than signed int which overflows after 2^31-1
blocks (2TiB) after which neither the 5 minute
status updates or SIGINFO (^T) reports are issued
until the negative numbers increase past 0 and
wildly inaccurate reports would be written.
diffstat:
sbin/dump/dump.h | 4 ++--
sbin/dump/main.c | 6 +++---
2 files changed, 5 insertions(+), 5 deletions(-)
diffs (45 lines):
diff -r 4843e201b5c9 -r 47c2ecb52174 sbin/dump/dump.h
--- a/sbin/dump/dump.h Thu Dec 03 07:45:51 2020 +0000
+++ b/sbin/dump/dump.h Thu Dec 03 08:25:57 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: dump.h,v 1.58 2020/04/05 15:25:39 joerg Exp $ */
+/* $NetBSD: dump.h,v 1.59 2020/12/03 08:25:57 kre Exp $ */
/*-
* Copyright (c) 1980, 1993
@@ -134,7 +134,7 @@
extern int density; /* density in 0.1" units */
extern int notify; /* notify operator flag */
extern int timestamp; /* timestamp messages */
-extern int blockswritten; /* number of blocks written on current tape */
+extern u_int64_t blockswritten; /* blocks written on current tape */
extern int tapeno; /* current tape number */
extern int is_ufs2;
diff -r 4843e201b5c9 -r 47c2ecb52174 sbin/dump/main.c
--- a/sbin/dump/main.c Thu Dec 03 07:45:51 2020 +0000
+++ b/sbin/dump/main.c Thu Dec 03 08:25:57 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: main.c,v 1.77 2020/04/05 15:25:39 joerg Exp $ */
+/* $NetBSD: main.c,v 1.78 2020/12/03 08:25:57 kre Exp $ */
/*-
* Copyright (c) 1980, 1991, 1993, 1994
@@ -39,7 +39,7 @@
#if 0
static char sccsid[] = "@(#)main.c 8.6 (Berkeley) 5/1/95";
#else
-__RCSID("$NetBSD: main.c,v 1.77 2020/04/05 15:25:39 joerg Exp $");
+__RCSID("$NetBSD: main.c,v 1.78 2020/12/03 08:25:57 kre Exp $");
#endif
#endif /* not lint */
@@ -108,7 +108,7 @@
int timestamp; /* print message timestamps */
int notify; /* notify operator flag */
-int blockswritten; /* number of blocks written on current tape */
+u_int64_t blockswritten; /* number of blocks written on current tape */
int tapeno; /* current tape number */
int density; /* density in bytes/0.1" */
int ntrec = NTREC; /* # tape blocks in each tape record */
Home |
Main Index |
Thread Index |
Old Index