Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
C
criu
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zhul
criu
Commits
549795a8
Commit
549795a8
authored
Dec 30, 2014
by
Pavel Emelyanov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
aio: Fix vma->start printing format on arm
Signed-off-by:
Pavel Emelyanov
<
xemul@parallels.com
>
parent
4836e392
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
aio.c
aio.c
+3
-3
No files found.
aio.c
View file @
549795a8
...
...
@@ -13,7 +13,7 @@ int dump_aio_ring(MmEntry *mme, struct vma_area *vma)
int
nr
=
mme
->
n_aios
;
AioRingEntry
*
re
;
pr_info
(
"Dumping AIO ring @%
#lx
, %u reqs
\n
"
,
pr_info
(
"Dumping AIO ring @%
"
PRIx64
"
, %u reqs
\n
"
,
vma
->
e
->
start
,
vma
->
aio_nr_req
);
mme
->
aios
=
xrealloc
(
mme
->
aios
,
(
nr
+
1
)
*
sizeof
(
re
));
...
...
@@ -96,8 +96,8 @@ int parasite_check_aios(struct parasite_ctl *ctl, struct vm_area_list *vmas)
if
(
!
vma_area_is
(
vma
,
VMA_AREA_AIORING
))
continue
;
pr_debug
(
" `- Ring #%ld @%
#lx
\n
"
,
pa
-
&
aa
->
ring
[
0
]
,
vma
->
e
->
start
);
pr_debug
(
" `- Ring #%ld @%
"
PRIx64
"
\n
"
,
(
long
)(
pa
-
&
aa
->
ring
[
0
])
,
vma
->
e
->
start
);
pa
->
ctx
=
vma
->
e
->
start
;
pa
->
max_reqs
=
0
;
pa
->
vma_nr_reqs
=
&
vma
->
aio_nr_req
;
...
...
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