projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
33bc227
)
[XFS] Fix potential overflow in xfs_iomap_t delta for very large extents
author
Eric Sandeen
<sandeen@sgi.com>
Fri, 25 Nov 2005 05:41:33 +0000
(16:41 +1100)
committer
Nathan Scott
<nathans@sgi.com>
Fri, 25 Nov 2005 05:41:33 +0000
(16:41 +1100)
SGI-PV: 945311
SGI-Modid: xfs-linux-melb:xfs-kern:
201708a
Signed-off-by: Eric Sandeen <sandeen@sgi.com>
Signed-off-by: Nathan Scott <nathans@sgi.com>
fs/xfs/xfs_iomap.h
patch
|
blob
|
blame
|
history
diff --git
a/fs/xfs/xfs_iomap.h
b/fs/xfs/xfs_iomap.h
index fcd6d63bb68ba4c4db7da17d15d8dfcb0572d8e4..3ce204a524b0665df59272cdc4425d0772f95619 100644
(file)
--- a/
fs/xfs/xfs_iomap.h
+++ b/
fs/xfs/xfs_iomap.h
@@
-69,7
+69,7
@@
typedef struct xfs_iomap {
xfs_buftarg_t *iomap_target;
xfs_off_t iomap_offset; /* offset of mapping, bytes */
xfs_off_t iomap_bsize; /* size of mapping, bytes */
-
size_t
iomap_delta; /* offset into mapping, bytes */
+
xfs_off_t
iomap_delta; /* offset into mapping, bytes */
iomap_flags_t iomap_flags;
} xfs_iomap_t;