Commit c4253cb0 authored by Heiko Carstens's avatar Heiko Carstens Committed by Greg Kroah-Hartman

sysfs: add unsigned long cast to prevent compile warning

"sysfs: use rb-tree for inode number lookup" added a new printk which
causes a new compile warning on s390 (and few other architectures):

fs/sysfs/dir.c: In function 'sysfs_link_sibling':
fs/sysfs/dir.c:63:4: warning: format '%lx' expects argument of type
  'long unsigned int', but argument 2 has type 'ino_t' [-Wform

Add an explicit unsigned long cast since ino_t is an unsigned long on
most architectures.

Cc: Mikulas Patocka <mpatocka@redhat.com>
Signed-off-by: default avatarHeiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent bcbe4f94
...@@ -60,7 +60,8 @@ static void sysfs_link_sibling(struct sysfs_dirent *sd) ...@@ -60,7 +60,8 @@ static void sysfs_link_sibling(struct sysfs_dirent *sd)
} else if (sd->s_ino > node->s_ino) { } else if (sd->s_ino > node->s_ino) {
p = &node->inode_node.rb_right; p = &node->inode_node.rb_right;
} else { } else {
printk(KERN_CRIT "sysfs: inserting duplicate inode '%lx'\n", sd->s_ino); printk(KERN_CRIT "sysfs: inserting duplicate inode '%lx'\n",
(unsigned long) sd->s_ino);
BUG(); BUG();
} }
#undef node #undef node
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment