diff options
author | Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it> | 2005-09-21 12:40:29 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-21 19:16:30 -0400 |
commit | a46c9047642d70f5619e4a14129d74dd1f6ea74f (patch) | |
tree | 1d0850d57ad6c3d109c700c071e7cd468306a1e8 | |
parent | ae756df8ddd00a30bb3bdf6774b514c096dda4a4 (diff) |
[PATCH] uml: comment about cast build fix
Explain why the casting we do to silence this warning is indeed safe.
It is because the field we're casting from, though being 64-bit wide, was filled
with a pointer in first place by ourselves.
Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | arch/um/os-Linux/aio.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/um/os-Linux/aio.c b/arch/um/os-Linux/aio.c index 298d5632128b..f6e64026f995 100644 --- a/arch/um/os-Linux/aio.c +++ b/arch/um/os-Linux/aio.c | |||
@@ -144,6 +144,7 @@ static int aio_thread(void *arg) | |||
144 | "errno = %d\n", errno); | 144 | "errno = %d\n", errno); |
145 | } | 145 | } |
146 | else { | 146 | else { |
147 | /* This is safe as we've just a pointer here. */ | ||
147 | aio = (struct aio_context *) (long) event.data; | 148 | aio = (struct aio_context *) (long) event.data; |
148 | if(update_aio(aio, event.res)){ | 149 | if(update_aio(aio, event.res)){ |
149 | do_aio(ctx, aio); | 150 | do_aio(ctx, aio); |