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
b1537c10
Commit
b1537c10
authored
Jun 14, 2003
by
Andrew Morton
Committed by
Linus Torvalds
Jun 14, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] ppc64: fix do_settimeofday() for new API
parent
a05d0bae
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
19 deletions
+29
-19
arch/ppc64/kernel/sys_ppc32.c
arch/ppc64/kernel/sys_ppc32.c
+14
-8
arch/ppc64/kernel/time.c
arch/ppc64/kernel/time.c
+15
-11
No files found.
arch/ppc64/kernel/sys_ppc32.c
View file @
b1537c10
...
...
@@ -1112,11 +1112,18 @@ asmlinkage long sys32_pause(void)
static
inline
long
get_t
v32
(
struct
timeval
*
o
,
struct
compat_timeval
*
i
)
static
inline
long
get_t
s32
(
struct
timespec
*
o
,
struct
compat_timeval
*
i
)
{
return
(
!
access_ok
(
VERIFY_READ
,
i
,
sizeof
(
*
i
))
||
(
__get_user
(
o
->
tv_sec
,
&
i
->
tv_sec
)
|
__get_user
(
o
->
tv_usec
,
&
i
->
tv_usec
)));
long
usec
;
if
(
!
access_ok
(
VERIFY_READ
,
i
,
sizeof
(
*
i
)))
return
-
EFAULT
;
if
(
__get_user
(
o
->
tv_sec
,
&
i
->
tv_sec
))
return
-
EFAULT
;
if
(
__get_user
(
usec
,
&
i
->
tv_usec
))
return
-
EFAULT
;
o
->
tv_nsec
=
usec
*
1000
;
return
0
;
}
static
inline
long
put_tv32
(
struct
compat_timeval
*
o
,
struct
timeval
*
i
)
...
...
@@ -1199,7 +1206,6 @@ asmlinkage long sys32_sysinfo(struct sysinfo32 *info)
/* Translations due to time_t size differences. Which affects all
sorts of things, like timeval and itimerval. */
extern
struct
timezone
sys_tz
;
extern
int
do_sys_settimeofday
(
struct
timeval
*
tv
,
struct
timezone
*
tz
);
asmlinkage
long
sys32_gettimeofday
(
struct
compat_timeval
*
tv
,
struct
timezone
*
tz
)
{
...
...
@@ -1221,11 +1227,11 @@ asmlinkage long sys32_gettimeofday(struct compat_timeval *tv, struct timezone *t
asmlinkage
long
sys32_settimeofday
(
struct
compat_timeval
*
tv
,
struct
timezone
*
tz
)
{
struct
time
val
ktv
;
struct
time
spec
kts
;
struct
timezone
ktz
;
if
(
tv
)
{
if
(
get_t
v32
(
&
ktv
,
tv
))
if
(
get_t
s32
(
&
kts
,
tv
))
return
-
EFAULT
;
}
if
(
tz
)
{
...
...
@@ -1233,7 +1239,7 @@ asmlinkage long sys32_settimeofday(struct compat_timeval *tv, struct timezone *t
return
-
EFAULT
;
}
return
do_sys_settimeofday
(
tv
?
&
kt
v
:
NULL
,
tz
?
&
ktz
:
NULL
);
return
do_sys_settimeofday
(
tv
?
&
kt
s
:
NULL
,
tz
?
&
ktz
:
NULL
);
}
...
...
arch/ppc64/kernel/time.c
View file @
b1537c10
...
...
@@ -337,13 +337,16 @@ void do_gettimeofday(struct timeval *tv)
tv
->
tv_usec
=
usec
;
}
void
do_settimeofday
(
struct
timeval
*
tv
)
int
do_settimeofday
(
struct
timespec
*
tv
)
{
unsigned
long
flags
;
unsigned
long
delta_xsec
;
long
int
tb_delta
,
new_
u
sec
,
new_sec
;
long
int
tb_delta
,
new_
n
sec
,
new_sec
;
unsigned
long
new_xsec
;
if
((
unsigned
long
)
tv
->
tv_nsec
>=
NSEC_PER_SEC
)
return
-
EINVAL
;
write_seqlock_irqsave
(
&
xtime_lock
,
flags
);
/* Updating the RTC is not the job of this code. If the time is
* stepped under NTP, the RTC will be update after STA_UNSYNC
...
...
@@ -362,12 +365,12 @@ void do_settimeofday(struct timeval *tv)
tb_delta
+=
(
jiffies
-
wall_jiffies
)
*
tb_ticks_per_jiffy
;
new_sec
=
tv
->
tv_sec
;
new_
usec
=
tv
->
tv_usec
-
tb_delta
/
tb_ticks_per_usec
;
while
(
new_
usec
<
0
)
{
new_
nsec
=
tv
->
tv_nsec
-
(
tb_delta
/
tb_ticks_per_usec
/
1000
)
;
while
(
new_
nsec
<
0
)
{
new_sec
--
;
new_
usec
+=
U
SEC_PER_SEC
;
new_
nsec
+=
N
SEC_PER_SEC
;
}
xtime
.
tv_nsec
=
new_
usec
*
1000
;
xtime
.
tv_nsec
=
new_
nsec
;
xtime
.
tv_sec
=
new_sec
;
/* In case of a large backwards jump in time with NTP, we want the
...
...
@@ -381,7 +384,7 @@ void do_settimeofday(struct timeval *tv)
time_esterror
=
NTP_PHASE_LIMIT
;
delta_xsec
=
mulhdu
(
(
tb_last_stamp
-
do_gtod
.
tb_orig_stamp
),
do_gtod
.
varp
->
tb_to_xs
);
new_xsec
=
(
new_
usec
*
XSEC_PER_SEC
)
/
U
SEC_PER_SEC
;
new_xsec
=
(
new_
nsec
*
XSEC_PER_SEC
)
/
N
SEC_PER_SEC
;
new_xsec
+=
new_sec
*
XSEC_PER_SEC
;
if
(
new_xsec
>
delta_xsec
)
{
do_gtod
.
varp
->
stamp_xsec
=
new_xsec
-
delta_xsec
;
...
...
@@ -396,6 +399,7 @@ void do_settimeofday(struct timeval *tv)
}
write_sequnlock_irqrestore
(
&
xtime_lock
,
flags
);
return
0
;
}
/*
...
...
@@ -407,7 +411,7 @@ void do_settimeofday(struct timeval *tv)
long
ppc64_sys32_stime
(
int
*
tptr
)
{
int
value
;
struct
time
val
myTimeval
;
struct
time
spec
myTimeval
;
if
(
!
capable
(
CAP_SYS_TIME
))
return
-
EPERM
;
...
...
@@ -416,7 +420,7 @@ long ppc64_sys32_stime(int* tptr)
return
-
EFAULT
;
myTimeval
.
tv_sec
=
value
;
myTimeval
.
tv_
u
sec
=
0
;
myTimeval
.
tv_
n
sec
=
0
;
do_settimeofday
(
&
myTimeval
);
...
...
@@ -432,7 +436,7 @@ long ppc64_sys32_stime(int* tptr)
long
ppc64_sys_stime
(
long
*
tptr
)
{
long
value
;
struct
time
val
myTimeval
;
struct
time
spec
myTimeval
;
if
(
!
capable
(
CAP_SYS_TIME
))
return
-
EPERM
;
...
...
@@ -441,7 +445,7 @@ long ppc64_sys_stime(long* tptr)
return
-
EFAULT
;
myTimeval
.
tv_sec
=
value
;
myTimeval
.
tv_
u
sec
=
0
;
myTimeval
.
tv_
n
sec
=
0
;
do_settimeofday
(
&
myTimeval
);
...
...
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