提交 05613bdd 编写于 作者: M Marcelo Feitoza Parisi 提交者: Linus Torvalds

[PATCH] nvidia-agp: use time_before_eq()

It deals with wrapping correctly and is nicer to read.
Signed-off-by: NMarcelo Feitoza Parisi <marcelo@feitoza.com.br>
Signed-off-by: NAlexey Dobriyan <adobriyan@gmail.com>
Cc: Dave Jones <davej@codemonkey.org.uk>
Signed-off-by: NAndrew Morton <akpm@osdl.org>
Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
上级 50297cbf
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
#include <linux/gfp.h> #include <linux/gfp.h>
#include <linux/page-flags.h> #include <linux/page-flags.h>
#include <linux/mm.h> #include <linux/mm.h>
#include <linux/jiffies.h>
#include "agp.h" #include "agp.h"
/* NVIDIA registers */ /* NVIDIA registers */
...@@ -256,7 +257,7 @@ static void nvidia_tlbflush(struct agp_memory *mem) ...@@ -256,7 +257,7 @@ static void nvidia_tlbflush(struct agp_memory *mem)
do { do {
pci_read_config_dword(nvidia_private.dev_1, pci_read_config_dword(nvidia_private.dev_1,
NVIDIA_1_WBC, &wbc_reg); NVIDIA_1_WBC, &wbc_reg);
if ((signed)(end - jiffies) <= 0) { if (time_before_eq(end, jiffies)) {
printk(KERN_ERR PFX printk(KERN_ERR PFX
"TLB flush took more than 3 seconds.\n"); "TLB flush took more than 3 seconds.\n");
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册