The patch titled Fix block device symlink name has been removed from the -mm tree. Its filename is fix-block-device-symlink-name.patch This patch was probably dropped from -mm because it has now been merged into a subsystem tree or into Linus's tree, or because it was folded into its parent patch in the -mm tree. From: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> As noted further on the this file, some block devices have a / in their name, so fix the "block:..." symlink name the same as the /sys/block name. Signed-off-by: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> Cc: Al Viro <viro@xxxxxxxxxxxxxxxxxx> Cc: Christoph Hellwig <hch@xxxxxx> Cc: <stable@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/partitions/check.c | 5 +++++ 1 files changed, 5 insertions(+) diff -puN fs/partitions/check.c~fix-block-device-symlink-name fs/partitions/check.c --- devel/fs/partitions/check.c~fix-block-device-symlink-name 2006-04-10 00:16:55.000000000 -0700 +++ devel-akpm/fs/partitions/check.c 2006-04-10 00:16:55.000000000 -0700 @@ -372,6 +372,7 @@ static char *make_block_name(struct gend char *name; static char *block_str = "block:"; int size; + char *s; size = strlen(block_str) + strlen(disk->disk_name) + 1; name = kmalloc(size, GFP_KERNEL); @@ -379,6 +380,10 @@ static char *make_block_name(struct gend return NULL; strcpy(name, block_str); strcat(name, disk->disk_name); + /* ewww... some of these buggers have / in name... */ + s = strchr(name, '/'); + if (s) + *s = '!'; return name; } _ Patches currently in -mm which might be from sfr@xxxxxxxxxxxxxxxx are origin.patch git-powerpc.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html