The patch titled Function v9fs_get_idpool returns int, not u32 as called twice in fs/9p/vfs_inode.c has been removed from the -mm tree. Its filename was function-v9fs_get_idpool-returns-int-not-u32-as-called-twice.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: Function v9fs_get_idpool returns int, not u32 as called twice in fs/9p/vfs_inode.c From: Mika Kukkonen <mikukkon@xxxxxxxxx> Function v9fs_get_idpool returns int, not u32. Actually it returns -1 on errors, and these two callers check if the value is smaller than 0, which was caught by gcc with extra warning flags. Compile tested only but should be OK, as the value computed in v9fs_get_idpool() is also int. Signed-of-by: Mika Kukkonen <mikukkon@xxxxxx> Cc: Eric Van Hensbergen <ericvh@xxxxxxxxx> Cc: Ron Minnich <rminnich@xxxxxxxx> Cc: Latchesar Ionkov <lucho@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/9p/vfs_inode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN fs/9p/vfs_inode.c~function-v9fs_get_idpool-returns-int-not-u32-as-called-twice fs/9p/vfs_inode.c --- a/fs/9p/vfs_inode.c~function-v9fs_get_idpool-returns-int-not-u32-as-called-twice +++ a/fs/9p/vfs_inode.c @@ -256,7 +256,7 @@ static int v9fs_create(struct v9fs_session_info *v9ses, u32 pfid, char *name, u32 perm, u8 mode, char *extension, u32 *fidp, struct v9fs_qid *qid, u32 *iounit) { - u32 fid; + int fid; int err; struct v9fs_fcall *fcall; @@ -310,7 +310,7 @@ static struct v9fs_fid* v9fs_clone_walk(struct v9fs_session_info *v9ses, u32 fid, struct dentry *dentry) { int err; - u32 nfid; + int nfid; struct v9fs_fid *ret; struct v9fs_fcall *fcall; _ Patches currently in -mm which might be from mikukkon@xxxxxxxxx are origin.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