Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/fs/puffs Retore LP64 fix that was removed by mistake
details: https://anonhg.NetBSD.org/src/rev/3aae062c9a94
branches: trunk
changeset: 332726:3aae062c9a94
user: manu <manu%NetBSD.org@localhost>
date: Mon Oct 06 09:05:55 2014 +0000
description:
Retore LP64 fix that was removed by mistake
diffstat:
sys/fs/puffs/puffs_vnops.c | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diffs (28 lines):
diff -r 9c4c14794903 -r 3aae062c9a94 sys/fs/puffs/puffs_vnops.c
--- a/sys/fs/puffs/puffs_vnops.c Mon Oct 06 08:00:57 2014 +0000
+++ b/sys/fs/puffs/puffs_vnops.c Mon Oct 06 09:05:55 2014 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: puffs_vnops.c,v 1.190 2014/10/06 04:41:59 manu Exp $ */
+/* $NetBSD: puffs_vnops.c,v 1.191 2014/10/06 09:05:55 manu Exp $ */
/*
* Copyright (c) 2005, 2006, 2007 Antti Kantee. All Rights Reserved.
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: puffs_vnops.c,v 1.190 2014/10/06 04:41:59 manu Exp $");
+__KERNEL_RCSID(0, "$NetBSD: puffs_vnops.c,v 1.191 2014/10/06 09:05:55 manu Exp $");
#include <sys/param.h>
#include <sys/buf.h>
@@ -1160,7 +1160,8 @@
error = ubc_uiomove(&vp->v_uobj, &uio, len,
UVM_ADV_SEQUENTIAL, UBC_WRITE|UBC_UNMAP_FLAG(vp));
if (error)
- DPRINTF(("zero-fill 0x%lx@0x%llx => %d\n", len, off, error));
+ DPRINTF(("zero-fill 0x%lx@0x%" PRIx64 " failed: error = %d\n",
+ len, off, error));
return;
}
Home |
Main Index |
Thread Index |
Old Index