Staging: pohmelfs: fix atomic type spew
authorAlan Cox <alan@linux.intel.com>
Wed, 19 Aug 2009 16:52:02 +0000 (17:52 +0100)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 15 Sep 2009 19:02:26 +0000 (12:02 -0700)
atomic_long != atomic

Signed-off-by: Alan Cox <alan@linux.intel.com>
Cc: Evgeniy Polyakov <zbr@ioremap.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/pohmelfs/inode.c
drivers/staging/pohmelfs/net.c

index d004a9d..0b58f10 100644 (file)
@@ -1865,7 +1865,7 @@ static int pohmelfs_fill_super(struct super_block *sb, void *data, int silent)
        INIT_LIST_HEAD(&psb->crypto_active_list);
 
        atomic_set(&psb->trans_gen, 1);
-       atomic_set(&psb->total_inodes, 0);
+       atomic_long_set(&psb->total_inodes, 0);
 
        mutex_init(&psb->state_lock);
        INIT_LIST_HEAD(&psb->state_list);
index 5f312c9..bdaab69 100644 (file)
@@ -680,7 +680,7 @@ static int pohmelfs_root_cap_response(struct netfs_state *st)
                printk(KERN_INFO "Mounting POHMELFS (%d) "
                        "with extended attributes support.\n", psb->idx);
 
-       if (atomic_read(&psb->total_inodes) <= 1)
+       if (atomic_long_read(&psb->total_inodes) <= 1)
                atomic_long_set(&psb->total_inodes, cap->nr_files);
 
        dprintk("%s: total: %llu, avail: %llu, flags: %llx, inodes: %llu.\n",