The patch titled xprtrdma: fix ERR_PTR(E typo has been added to the -mm tree. Its filename is xprtrdma-fix-err_ptre-typo.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: xprtrdma: fix ERR_PTR(E typo From: Alexey Dobriyan <adobriyan@xxxxxxxxx> Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxxxx> Cc: "J. Bruce Fields" <bfields@xxxxxxxxxxxx> Cc: "David S. Miller" <davem@xxxxxxxxxxxxx> Cc: Trond Myklebust <trond.myklebust@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- net/sunrpc/xprtrdma/svc_rdma_transport.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN net/sunrpc/xprtrdma/svc_rdma_transport.c~xprtrdma-fix-err_ptre-typo net/sunrpc/xprtrdma/svc_rdma_transport.c --- a/net/sunrpc/xprtrdma/svc_rdma_transport.c~xprtrdma-fix-err_ptre-typo +++ a/net/sunrpc/xprtrdma/svc_rdma_transport.c @@ -661,7 +661,7 @@ static struct svc_xprt *svc_rdma_create( cma_xprt = rdma_create_xprt(serv, 1); if (!cma_xprt) - return ERR_PTR(ENOMEM); + return ERR_PTR(-ENOMEM); xprt = &cma_xprt->sc_xprt; listen_id = rdma_create_id(rdma_listen_handler, cma_xprt, RDMA_PS_TCP); _ Patches currently in -mm which might be from adobriyan@xxxxxxxxx are linux-next.patch cifs-switch-to-seq_files.patch git-kbuild-fixes.patch atl1-fix-4g-memory-corruption-bug.patch xprtrdma-fix-err_ptre-typo.patch mpt-remove-unused-struct-mpt_proc_entry_t.patch rndis-switch-to-seq_files.patch move-proc_kmsg_operations-to-fs-proc-internalh.patch split-listh-and-move-rcu-protected-lists-into-rculisth.patch rculisth-use-the-rcu-api.patch proc-use-non-racy-method-for-proc-page_owner-creation-page_owner.patch likely_prof-changed-to-use-proc_create.patch proc-remove-proc_root-from-drivers-likelyprof.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