Prev: Boot failure with 2.6.27.46 on Xeon E5620 (Westmere EP)
Next: linux-next: Tree for May 25 (kernel/power, SUSPEND=n)
From: Will Drewry on 25 May 2010 11:50 name_to_dev_t takes a char * argument which it never modifies. This change converts it to a const char *. (This is useful with the second patch in the series which exports the symbol. External consumers of the function will now be able to pass in a const char * without duping or casting away const-ness.) Signed-off-by: Will Drewry <wad(a)chromium.org> --- include/linux/mount.h | 2 +- init/do_mounts.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/linux/mount.h b/include/linux/mount.h index 4bd0547..ad819a0 100644 --- a/include/linux/mount.h +++ b/include/linux/mount.h @@ -134,6 +134,6 @@ extern int do_add_mount(struct vfsmount *newmnt, struct path *path, extern void mark_mounts_for_expiry(struct list_head *mounts); -extern dev_t name_to_dev_t(char *name); +extern dev_t name_to_dev_t(const char *name); #endif /* _LINUX_MOUNT_H */ diff --git a/init/do_mounts.c b/init/do_mounts.c index 0848a5b..a322b13 100644 --- a/init/do_mounts.c +++ b/init/do_mounts.c @@ -75,7 +75,7 @@ __setup("rw", readwrite); * bangs. */ -dev_t name_to_dev_t(char *name) +dev_t name_to_dev_t(const char *name) { char s[32]; char *p; -- 1.7.0.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |