Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
1afbd730
Commit
1afbd730
authored
May 11, 2011
by
Konrad Rzeszutek Wilk
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xen/blkback: Make the DPRINTK uniform.
Signed-off-by:
Konrad Rzeszutek Wilk
<
konrad.wilk@oracle.com
>
parent
ebe81906
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
8 deletions
+3
-8
drivers/block/xen-blkback/common.h
drivers/block/xen-blkback/common.h
+3
-3
drivers/block/xen-blkback/xenbus.c
drivers/block/xen-blkback/xenbus.c
+0
-5
No files found.
drivers/block/xen-blkback/common.h
View file @
1afbd730
...
@@ -42,9 +42,9 @@
...
@@ -42,9 +42,9 @@
#include <xen/grant_table.h>
#include <xen/grant_table.h>
#include <xen/xenbus.h>
#include <xen/xenbus.h>
#define DPRINTK(
_f, _a...)
\
#define DPRINTK(
fmt, args...)
\
pr_debug("
(file=%s, line=%d) " _f
, \
pr_debug("
xen-blkback: (%s:%d) " fmt ".\n"
, \
__
FILE__ , __LINE__ , ## _a
)
__
func__, __LINE__, ##args
)
struct
vbd
{
struct
vbd
{
/* What the domain refers to this vbd as. */
/* What the domain refers to this vbd as. */
...
...
drivers/block/xen-blkback/xenbus.c
View file @
1afbd730
...
@@ -21,11 +21,6 @@
...
@@ -21,11 +21,6 @@
#include <xen/grant_table.h>
#include <xen/grant_table.h>
#include "common.h"
#include "common.h"
#undef DPRINTK
#define DPRINTK(fmt, args...) \
pr_debug("xen-blkback: (%s:%d) " fmt ".\n", \
__func__, __LINE__, ##args)
struct
backend_info
{
struct
backend_info
{
struct
xenbus_device
*
dev
;
struct
xenbus_device
*
dev
;
struct
blkif_st
*
blkif
;
struct
blkif_st
*
blkif
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment