The patch titled Fix incorrect prototype for ipxrtr_route_packet() has been removed from the -mm tree. Its filename was fix-incorrect-prototype-for-ipxrtr_route_packet.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: Fix incorrect prototype for ipxrtr_route_packet() From: David Woodhouse <dwmw2@xxxxxxxxxxxxx> The function ipxrtr_route_packet() takes a 'len' argument of type size_t. However, its prototype in af_ipx.c incorrectly suggests that the corresponding argument is of type 'int' instead. Discovered by building with --combine and letting the compiler see it all at once. Signed-off-by: David Woodhouse <dwmw2@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- net/ipx/af_ipx.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN net/ipx/af_ipx.c~fix-incorrect-prototype-for-ipxrtr_route_packet net/ipx/af_ipx.c --- a/net/ipx/af_ipx.c~fix-incorrect-prototype-for-ipxrtr_route_packet +++ a/net/ipx/af_ipx.c @@ -87,7 +87,7 @@ extern int ipxrtr_add_route(__be32 netwo unsigned char *node); extern void ipxrtr_del_routes(struct ipx_interface *intrfc); extern int ipxrtr_route_packet(struct sock *sk, struct sockaddr_ipx *usipx, - struct iovec *iov, int len, int noblock); + struct iovec *iov, size_t len, int noblock); extern int ipxrtr_route_skb(struct sk_buff *skb); extern struct ipx_route *ipxrtr_lookup(__be32 net); extern int ipxrtr_ioctl(unsigned int cmd, void __user *arg); _ Patches currently in -mm which might be from dwmw2@xxxxxxxxxxxxx are origin.patch dont-force-uclinux-mtd-map-to-be-root-dev.patch use-mutex-instead-of-semaphore-in-the-mtd-st-m25pxx-driver.patch use-mutex-instead-of-semaphore-in-the-mtd-st-m25pxx-driver-build-fix.patch use-mutex-instead-of-semaphore-in-the-mtd-dataflash-driver.patch git-ubi.patch git-battery.patch missing-const-from-reiserfs-min_key-declaration.patch add-lzo1x-compression-support-to-the-kernel.patch add-lzo1x-compression-support-to-the-kernel-fix.patch mismatching-declarations-of-revision-strings-in-hisax.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