Rename the trace output as well.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29256 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Michael Lotz 2009-02-19 21:13:02 +00:00
parent af4245f8a3
commit 4ef4945001
2 changed files with 9 additions and 9 deletions

View File

@ -24,13 +24,13 @@
//#define TRACE_OVERLAY
#ifdef TRACE_OVERLAY
#define TRACE(x...) dprintf("overlay: " x)
#define TRACE_VOLUME(x...) dprintf("overlay: " x)
#define TRACE_ALWAYS(x...) dprintf("overlay: " x)
#define TRACE(x...) dprintf("attribute_overlay: " x)
#define TRACE_VOLUME(x...) dprintf("attribute_overlay: " x)
#define TRACE_ALWAYS(x...) dprintf("attribute_overlay: " x)
#else
#define TRACE(x...) /* nothing */
#define TRACE_VOLUME(x...) /* nothing */
#define TRACE_ALWAYS(x...) dprintf("overlay: " x)
#define TRACE_ALWAYS(x...) dprintf("attribute_overlay: " x)
#endif
@ -1926,7 +1926,7 @@ static status_t
overlay_mount(fs_volume *volume, const char *device, uint32 flags,
const char *args, ino_t *rootID)
{
TRACE_VOLUME("mounting overlay\n");
TRACE_VOLUME("mounting attribute overlay\n");
volume->private_volume = new(std::nothrow) OverlayVolume(volume);
if (volume->private_volume == NULL)
return B_NO_MEMORY;

View File

@ -24,13 +24,13 @@
//#define TRACE_OVERLAY
#ifdef TRACE_OVERLAY
#define TRACE(x...) dprintf("overlay: " x)
#define TRACE_VOLUME(x...) dprintf("overlay: " x)
#define TRACE_ALWAYS(x...) dprintf("overlay: " x)
#define TRACE(x...) dprintf("write_overlay: " x)
#define TRACE_VOLUME(x...) dprintf("write_overlay: " x)
#define TRACE_ALWAYS(x...) dprintf("write_overlay: " x)
#else
#define TRACE(x...) /* nothing */
#define TRACE_VOLUME(x...) /* nothing */
#define TRACE_ALWAYS(x...) dprintf("overlay: " x)
#define TRACE_ALWAYS(x...) dprintf("write_overlay: " x)
#endif