Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=730a646ddfea239aa9f6b732d5c10118f6801bc1
Commit:     730a646ddfea239aa9f6b732d5c10118f6801bc1
Parent:     355dfa1bc8026d185678fed4e409719a595b2d39
Author:     Amol Lad <[EMAIL PROTECTED]>
AuthorDate: Wed May 23 14:41:37 2007 -0700
Committer:  James Bottomley <[EMAIL PROTECTED]>
CommitDate: Thu May 24 09:11:00 2007 -0500

    [SCSI] NCR5380: Replace yield() with a better alternative
    
    Replaced yield() with cond_resched()
    
    Signed-off-by: Amol Lad <[EMAIL PROTECTED]>
    Acked-by: Alan Cox <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: James Bottomley <[EMAIL PROTECTED]>
---
 drivers/scsi/NCR5380.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/scsi/NCR5380.c b/drivers/scsi/NCR5380.c
index bb3cb33..18359f6 100644
--- a/drivers/scsi/NCR5380.c
+++ b/drivers/scsi/NCR5380.c
@@ -347,7 +347,7 @@ static int NCR5380_poll_politely(struct Scsi_Host 
*instance, int reg, int bit, i
                if((r & bit) == val)
                        return 0;
                if(!in_interrupt())
-                       yield();
+                       cond_resched();
                else
                        cpu_relax();
        }
-
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