[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <Pine.LNX.4.61.0702121923350.26360@yvahk01.tjqt.qr>
Date: Mon, 12 Feb 2007 19:27:22 +0100 (MET)
From: Jan Engelhardt <jengelh@...ux01.gwdg.de>
To: Miklos Szeredi <miklos@...redi.hu>
cc: linux-fsdevel@...r.kernel.org, linux-kernel@...r.kernel.org,
Szakacsits Szabolcs <szaka@...net.hu>
Subject: Re: [RFC PATCH] add filesystem subtype support
Hi,
On Feb 12 2007 12:50, Miklos Szeredi wrote:
>Index: linux/fs/filesystems.c
>===================================================================
>--- linux.orig/fs/filesystems.c 2007-02-12 12:42:55.000000000 +0100
>+++ linux/fs/filesystems.c 2007-02-12 12:43:00.000000000 +0100
>@@ -42,11 +42,12 @@ void put_filesystem(struct file_system_t
> module_put(fs->owner);
> }
>
>-static struct file_system_type **find_filesystem(const char *name)
>+static struct file_system_type **find_filesystem(const char *name, unsigned len)
> {
> struct file_system_type **p;
> for (p=&file_systems; *p; p=&(*p)->next)
>- if (strcmp((*p)->name,name) == 0)
>+ if (strlen((*p)->name) == len &&
>+ strncmp((*p)->name, name, len) == 0)
> break;
> return p;
> }
Question btw, why does this function return a struct file_system_type ** at
all? Would not struct file_system_type * suffice?
I like the idea. Then the "real filesystem type" (e.g. sshfs) pops up in the
fstype field in getmntent, and `df`, for example.
Jan
--
ft: http://freshmeat.net/p/chaostables/
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists