* [PATCH V2] Btrfs-progs: fix compile warning in btrfs_free_block_groups()
@ 2013-05-18 16:54 Wang Shilong
0 siblings, 0 replies; 2+ messages in thread
From: Wang Shilong @ 2013-05-18 16:54 UTC (permalink / raw)
To: linux-btrfs
From: Wang Shilong <wangsl-fnst@cn.fujitsu.com>
extent-tree.c: In function 'btrfs_free_block_groups':
extent-tree.c:3190:12: warning: cast to pointer from integer of
different size [-Wint-to-pointer-cast]
Signed-off-by: Wang Shilong <wangsl-fnst@cn.fujitsu.com>
---
v1->v2: fix encoding error in changelog
---
extent-tree.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/extent-tree.c b/extent-tree.c
index 381572d..153d14b 100644
--- a/extent-tree.c
+++ b/extent-tree.c
@@ -3187,7 +3187,8 @@ int btrfs_free_block_groups(struct btrfs_fs_info *info)
break;
ret = get_state_private(&info->block_group_cache, start, &ptr);
if (!ret) {
- cache = (struct btrfs_block_group_cache *)ptr;
+ cache = (struct btrfs_block_group_cache *)
+ (unsigned long)ptr;
if (cache->free_space_ctl) {
btrfs_remove_free_space_cache(cache);
kfree(cache->free_space_ctl);
--
1.7.11.7
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [PATCH V2] Btrfs-progs: fix compile warning in btrfs_free_block_groups()
@ 2013-07-07 10:03 Wang Shilong
0 siblings, 0 replies; 2+ messages in thread
From: Wang Shilong @ 2013-07-07 10:03 UTC (permalink / raw)
To: linux-btrfs
From: Wang Shilong <wangsl-fnst@cn.fujitsu.com>
extent-tree.c: In function 'btrfs_free_block_groups':
extent-tree.c:3189:12: warning: cast to pointer from
integer of different size [-Wint-to-pointer-cast]
Signed-off-by: Wang Shilong <wangsl-fnst@cn.fujitsu.com>
---
V1->V2: use 'uintptr_t' instead of 'unsigned long'(Thanks Stefan)
---
extent-tree.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/extent-tree.c b/extent-tree.c
index f597e16..494cf21 100644
--- a/extent-tree.c
+++ b/extent-tree.c
@@ -18,6 +18,7 @@
#include <stdio.h>
#include <stdlib.h>
+#include <stdint.h>
#include "kerncompat.h"
#include "radix-tree.h"
#include "ctree.h"
@@ -3180,7 +3181,8 @@ int btrfs_free_block_groups(struct btrfs_fs_info *info)
break;
ret = get_state_private(&info->block_group_cache, start, &ptr);
if (!ret) {
- cache = (struct btrfs_block_group_cache *)ptr;
+ cache = (struct btrfs_block_group_cache *)
+ (uintptr_t)ptr;
if (cache->free_space_ctl) {
btrfs_remove_free_space_cache(cache);
kfree(cache->free_space_ctl);
--
1.7.11.7
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-07-07 10:03 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-18 16:54 [PATCH V2] Btrfs-progs: fix compile warning in btrfs_free_block_groups() Wang Shilong
-- strict thread matches above, loose matches on Subject: below --
2013-07-07 10:03 Wang Shilong
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).