lkml.org 
[lkml]   [2002]   [Sep]   [25]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
Subject[patch] Re: 2 futex questions
On Wed, Sep 25, 2002 at 10:23:16AM +0200, Ingo Molnar wrote:
>
> what it says: 'uaddr must be naturally aligned, and the word must be on a
> single page'. In theory it's possible that __alignof__(int) !=
> sizeof(int).
>

Ok, would the following actually save some cycles then?

diff -u a/kernel/futex.c b/kernel/futex.c
--- a/kernel/futex.c Tue Sep 24 15:25:01 2002
+++ b/kernel/futex.c Tue Sep 24 18:09:09 2002
@@ -321,9 +321,10 @@

pos_in_page = ((unsigned long)uaddr) % PAGE_SIZE;

- /* Must be "naturally" aligned, and not on page boundary. */
+ /* Must be "naturally" aligned, and must not cross a page boundary. */
if ((pos_in_page % __alignof__(int)) != 0
- || pos_in_page + sizeof(int) > PAGE_SIZE)
+ || ((sizeof(int) != __alignof__(int))
+ && (pos_in_page + sizeof(int) > PAGE_SIZE)))
return -EINVAL;

/* Simpler if it doesn't vanish underneath us. */

Alfred Landrum
-
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 13:29    [W:0.028 / U:0.964 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site