lkml.org 
[lkml]   [2004]   [Mar]   [2]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH] fix put_compat_timespec prototype
Date
The wrong argument in put_compat_timespec is marked const,
causing unnecessary compiler warnings.

===== include/linux/compat.h 1.18 vs edited =====
--- 1.18/include/linux/compat.h Mon Feb 23 01:34:04 2004
+++ edited/include/linux/compat.h Mon Feb 23 21:10:42 2004
@@ -57,7 +57,7 @@

extern int cp_compat_stat(struct kstat *, struct compat_stat *);
extern int get_compat_timespec(struct timespec *, const struct compat_timespec *);
-extern int put_compat_timespec(struct timespec *, const struct compat_timespec *);
+extern int put_compat_timespec(const struct timespec *, struct compat_timespec *);

struct compat_iovec {
compat_uptr_t iov_base;
===== kernel/compat.c 1.25 vs edited =====
--- 1.25/kernel/compat.c Mon Feb 23 01:34:41 2004
+++ edited/kernel/compat.c Mon Feb 23 21:10:19 2004
@@ -30,7 +30,7 @@
__get_user(ts->tv_nsec, &cts->tv_nsec)) ? -EFAULT : 0;
}

-int put_compat_timespec(struct timespec *ts, const struct compat_timespec *cts)
+int put_compat_timespec(const struct timespec *ts, struct compat_timespec *cts)
{
return (verify_area(VERIFY_WRITE, cts, sizeof(*cts)) ||
__put_user(ts->tv_sec, &cts->tv_sec) ||
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
\
 
 \ /
  Last update: 2005-03-22 14:01    [W:0.024 / U:0.492 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site