Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d58aa8c7b1cc0add7b03e26bdb8988d98d2f4cd1
Commit:     d58aa8c7b1cc0add7b03e26bdb8988d98d2f4cd1
Parent:     c9927c2bf4f45bb85e8b502ab3fb79ad6483c244
Author:     Chris Wright <[EMAIL PROTECTED]>
AuthorDate: Tue Oct 23 20:36:14 2007 -0700
Committer:  David S. Miller <[EMAIL PROTECTED]>
CommitDate: Tue Oct 23 22:42:07 2007 -0700

    [SPARC64]: pass correct addr in get_fb_unmapped_area(MAP_FIXED)
    
    Looks like the MAP_FIXED case is using the wrong address hint.  I'd
    expect the comment "don't mess with it" means pass the request
    straight on through, not change the address requested to -ENOMEM.
    
    Signed-off-by: Chris Wright <[EMAIL PROTECTED]>
    Signed-off-by: David S. Miller <[EMAIL PROTECTED]>
---
 arch/sparc64/kernel/sys_sparc.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/sparc64/kernel/sys_sparc.c b/arch/sparc64/kernel/sys_sparc.c
index 560cb1e..c56573a 100644
--- a/arch/sparc64/kernel/sys_sparc.c
+++ b/arch/sparc64/kernel/sys_sparc.c
@@ -318,7 +318,7 @@ unsigned long get_fb_unmapped_area(struct file *filp, 
unsigned long orig_addr, u
 
        if (flags & MAP_FIXED) {
                /* Ok, don't mess with it. */
-               return get_unmapped_area(NULL, addr, len, pgoff, flags);
+               return get_unmapped_area(NULL, orig_addr, len, pgoff, flags);
        }
        flags &= ~MAP_SHARED;
 
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to