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
Kirill Smelkov
linux
Commits
1626bd5b
Commit
1626bd5b
authored
Jun 17, 2003
by
David Mosberger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ia64: Initial sync with 2.5.72.
parent
2b5f799d
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
arch/ia64/ia32/ia32_ioctl.c
arch/ia64/ia32/ia32_ioctl.c
+1
-0
arch/ia64/ia32/sys_ia32.c
arch/ia64/ia32/sys_ia32.c
+4
-2
arch/ia64/kernel/time.c
arch/ia64/kernel/time.c
+0
-3
No files found.
arch/ia64/ia32/ia32_ioctl.c
View file @
1626bd5b
...
...
@@ -63,6 +63,7 @@
#include <linux/if_tun.h>
#include <linux/dirent.h>
#include <linux/ctype.h>
#include <linux/ncp_fs.h>
#include <net/bluetooth/bluetooth.h>
#include <net/bluetooth/rfcomm.h>
...
...
arch/ia64/ia32/sys_ia32.c
View file @
1626bd5b
...
...
@@ -659,7 +659,6 @@ sys32_alarm (unsigned int seconds)
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
)
...
...
@@ -681,18 +680,21 @@ asmlinkage long
sys32_settimeofday
(
struct
compat_timeval
*
tv
,
struct
timezone
*
tz
)
{
struct
timeval
ktv
;
struct
timespec
kts
;
struct
timezone
ktz
;
if
(
tv
)
{
if
(
get_tv32
(
&
ktv
,
tv
))
return
-
EFAULT
;
kts
.
tv_sec
=
ktv
.
tv_sec
;
kts
.
tv_nsec
=
ktv
.
tv_usec
*
1000
;
}
if
(
tz
)
{
if
(
copy_from_user
(
&
ktz
,
tz
,
sizeof
(
ktz
)))
return
-
EFAULT
;
}
return
do_sys_settimeofday
(
tv
?
&
kt
v
:
NULL
,
tz
?
&
ktz
:
NULL
);
return
do_sys_settimeofday
(
tv
?
&
kt
s
:
NULL
,
tz
?
&
ktz
:
NULL
);
}
struct
getdents32_callback
{
...
...
arch/ia64/kernel/time.c
View file @
1626bd5b
...
...
@@ -160,9 +160,6 @@ do_gettimeofday (struct timeval *tv)
{
unsigned
long
seq
,
nsec
,
usec
,
sec
,
old
,
offset
;
if
((
unsigned
long
)
tv
->
tv_nsec
>=
NSEC_PER_SEC
)
return
-
EINVAL
;
while
(
1
)
{
seq
=
read_seqbegin
(
&
xtime_lock
);
{
...
...
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