The patch titled ipx: correct return type of ipx_map_frame_type has been removed from the -mm tree. Its filename is ipx-correct-return-type-of-ipx_map_frame_type.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: Alexey Dobriyan <adobriyan@xxxxxxxxx> Casting BE16 to int and back may or may not work. Correct, to be sure. Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- net/ipx/af_ipx.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -puN net/ipx/af_ipx.c~ipx-correct-return-type-of-ipx_map_frame_type net/ipx/af_ipx.c --- 25/net/ipx/af_ipx.c~ipx-correct-return-type-of-ipx_map_frame_type Tue May 16 11:59:34 2006 +++ 25-akpm/net/ipx/af_ipx.c Tue May 16 11:59:34 2006 @@ -944,9 +944,9 @@ out: return rc; } -static int ipx_map_frame_type(unsigned char type) +static __be16 ipx_map_frame_type(unsigned char type) { - int rc = 0; + __be16 rc = 0; switch (type) { case IPX_FRAME_ETHERII: rc = htons(ETH_P_IPX); break; _ Patches currently in -mm which might be from adobriyan@xxxxxxxxx are origin.patch selinux-endian-fix.patch git-acpi.patch cifs-endian-fix.patch git-mtd.patch e1000-endian-fixes.patch git-net.patch x86-dont-trigger-full-rebuild-via-config_mtrr.patch dont-trigger-full-rebuild-via-config_x86_mce.patch remove-config_parport_arc-drivers-parport-parport_arcc.patch two-additions-to-linux-documentation-ioctl-numbertxt.patch more-bug_on-conversion.patch reiser4.patch reiser4-gfp_t-annotations.patch documentation-ioctl-messtxt-start-tree-wide-ioctl-registry.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