Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
linux-seco-imx
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Jira
Code
Merge requests
11
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Clea OS
bsp
nxp
linux-seco-imx
Commits
fdb9eb9f
Commit
fdb9eb9f
authored
15 years ago
by
Jeremy Fitzhardinge
Browse files
Options
Downloads
Patches
Plain Diff
xen/dom0: set wallclock time in Xen
Signed-off-by:
Jeremy Fitzhardinge
<
jeremy.fitzhardinge@citrix.com
>
parent
eec07a9e
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
arch/x86/xen/time.c
+15
-1
15 additions, 1 deletion
arch/x86/xen/time.c
with
15 additions
and
1 deletion
arch/x86/xen/time.c
+
15
−
1
View file @
fdb9eb9f
...
...
@@ -200,8 +200,22 @@ static unsigned long xen_get_wallclock(void)
static
int
xen_set_wallclock
(
unsigned
long
now
)
{
struct
xen_platform_op
op
;
int
rc
;
/* do nothing for domU */
return
-
1
;
if
(
!
xen_initial_domain
())
return
-
1
;
op
.
cmd
=
XENPF_settime
;
op
.
u
.
settime
.
secs
=
now
;
op
.
u
.
settime
.
nsecs
=
0
;
op
.
u
.
settime
.
system_time
=
xen_clocksource_read
();
rc
=
HYPERVISOR_dom0_op
(
&
op
);
WARN
(
rc
!=
0
,
"XENPF_settime failed: now=%ld
\n
"
,
now
);
return
rc
;
}
static
struct
clocksource
xen_clocksource
__read_mostly
=
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment