summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2001-06-08 11:55:44 +0000
committerTheodore Ts'o <tytso@mit.edu>2001-06-08 11:55:44 +0000
commit725c474ffcf09bbdbd6cd396a867914fec7b4510 (patch)
tree394afe42da0c71156e0280442bd58bd2b578a660 /include
parent30e50b7cdd6f5bbd5f2d6a2ee8ce0d4522336397 (diff)
downloade2fsprogs-725c474ffcf09bbdbd6cd396a867914fec7b4510.tar.gz
ChangeLog, jfs.h:
jfs.h: Synchronize with ext3 0.7a ChangeLog, recovery.c, revoke.c: recover.c, revoke.c: Synchronize with ext3 0.7a
Diffstat (limited to 'include')
-rw-r--r--include/linux/ChangeLog4
-rw-r--r--include/linux/jfs.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/include/linux/ChangeLog b/include/linux/ChangeLog
index a72940f8..8f92e6a4 100644
--- a/include/linux/ChangeLog
+++ b/include/linux/ChangeLog
@@ -1,3 +1,7 @@
+2001-06-08 Theodore Tso <tytso@valinux.com>
+
+ * jfs.h: Synchronize with ext3 0.7a
+
2001-05-25 Theodore Tso <tytso@valinux.com>
* Release of E2fsprogs 1.20
diff --git a/include/linux/jfs.h b/include/linux/jfs.h
index d4a83dee..c00f4ed6 100644
--- a/include/linux/jfs.h
+++ b/include/linux/jfs.h
@@ -667,7 +667,7 @@ extern void journal_clear_revoke(journal_t *);
/* Comparison functions for transaction IDs: perform comparisons using
* modulo arithmetic so that they work over sequence number wraps. */
-static inline int tid_ge(tid_t x, tid_t y)
+static inline int tid_gt(tid_t x, tid_t y)
{
int difference = (x - y);
return (difference > 0);