mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: "Dilger, Andreas" <andreas.dilger@intel.com>
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	Peng Tao <bergwolf@gmail.com>, Peng Tao <tao.peng@emc.com>
Subject: Re: [PATCH 8/8] staging/lustre: fix errno translate code on non-x86
Date: Wed, 24 Jul 2013 17:27:53 +0000	[thread overview]
Message-ID: <CE156A09.575CF%andreas.dilger@intel.com> (raw)
In-Reply-To: <1374654692-13237-9-git-send-email-mail-agent-noreply@emc.com>

On 2013/07/24 2:31 AM, "mail-agent-noreply@emc.com"
<mail-agent-noreply@emc.com> wrote:

>From: Peng Tao <bergwolf@gmail.com>
>
>On non-x86 we will build with Lustre's errno translate code but
>it has a few issues that break build on non-x86 platforms.

Tao
if the build is broken, wouldn't it make sense either to merge this patch
into
the original or land it earlier in the series to minimize/eliminate the
window
of un-bisectability?

Cheers, Andreas

PS - this is a bug introduced during porting to the upstream kernel, it
does
     not exist in Lustre master branch.

>Cc: Andreas Dilger <andreas.dilger@intel.com>
>Signed-off-by: Peng Tao <tao.peng@emc.com>
>---
> drivers/staging/lustre/lustre/ptlrpc/Makefile |    2 +-
> drivers/staging/lustre/lustre/ptlrpc/errno.c  |    4 +---
> 2 files changed, 2 insertions(+), 4 deletions(-)
>
>diff --git a/drivers/staging/lustre/lustre/ptlrpc/Makefile
>b/drivers/staging/lustre/lustre/ptlrpc/Makefile
>index a379558..6d78b80 100644
>--- a/drivers/staging/lustre/lustre/ptlrpc/Makefile
>+++ b/drivers/staging/lustre/lustre/ptlrpc/Makefile
>@@ -16,7 +16,7 @@ ptlrpc_objs += sec.o sec_bulk.o sec_gc.o sec_config.o
>sec_lproc.o
> ptlrpc_objs += sec_null.o sec_plain.o nrs.o nrs_fifo.o
> 
> ptlrpc-y := $(ldlm_objs) $(ptlrpc_objs)
>-ptlrpc-$(CONFIG_LUSTRE_TRANSLATE_ERRNOS) += errno.c
>+ptlrpc-$(CONFIG_LUSTRE_TRANSLATE_ERRNOS) += errno.o
> 
> obj-$(CONFIG_PTLRPC_GSS) += gss/
> 
>diff --git a/drivers/staging/lustre/lustre/ptlrpc/errno.c
>b/drivers/staging/lustre/lustre/ptlrpc/errno.c
>index 46e259e..1c10063 100644
>--- a/drivers/staging/lustre/lustre/ptlrpc/errno.c
>+++ b/drivers/staging/lustre/lustre/ptlrpc/errno.c
>@@ -25,7 +25,7 @@
>  * Copyright (c) 2013, Intel Corporation.
>  */
> 
>-#include <libcfs/libcfs.h>
>+#include <linux/libcfs/libcfs.h>
> #include <lustre/lustre_errno.h>
> 
> /*
>@@ -184,7 +184,6 @@ static int lustre_errno_hton_mapping[] = {
> 	[EBADTYPE]		= LUSTRE_EBADTYPE,
> 	[EJUKEBOX]		= LUSTRE_EJUKEBOX,
> 	[EIOCBQUEUED]		= LUSTRE_EIOCBQUEUED,
>-	[EIOCBRETRY]		= LUSTRE_EIOCBRETRY
> };
> 
> static int lustre_errno_ntoh_mapping[] = {
>@@ -331,7 +330,6 @@ static int lustre_errno_ntoh_mapping[] = {
> 	[LUSTRE_EBADTYPE]		= EBADTYPE,
> 	[LUSTRE_EJUKEBOX]		= EJUKEBOX,
> 	[LUSTRE_EIOCBQUEUED]		= EIOCBQUEUED,
>-	[LUSTRE_EIOCBRETRY]		= EIOCBRETRY
> };
> 
> unsigned int lustre_errno_hton(unsigned int h)
>-- 
>1.7.1
>
>


Cheers, Andreas
-- 
Andreas Dilger

Lustre Software Architect
Intel High Performance Data Division



  reply	other threads:[~2013-07-24 17:27 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-07-24  8:31 [PATCH 0/8] staging/lustre: Intel tree sync and two fixups mail-agent-noreply
2013-07-24  8:31 ` [PATCH 1/8] staging/lustre/lmv: support DNE with HSM mail-agent-noreply
2013-07-24  8:31   ` [PATCH 2/8] staging/lustre/llite: handle io init failure in ll_fault_io_init() mail-agent-noreply
2013-07-24  8:31     ` [PATCH 3/8] staging/lustre: fix 'data race condition' issues in at_reset() mail-agent-noreply
2013-07-24  8:31       ` [PATCH 4/8] staging/lustre/llite: fix 'data race condition' issues of lli_flags mail-agent-noreply
2013-07-24  8:31         ` [PATCH 5/8] staging/lustre/obdclass: add obd_target.h mail-agent-noreply
2013-07-24  8:31           ` [PATCH 6/8] staging/lustre: fix Kconfig bool defaults mail-agent-noreply
2013-07-24  8:31             ` [PATCH 7/8] staging/lustre/obdclass: use a dummy structure for lu_ref_link mail-agent-noreply
2013-07-24  8:31               ` [PATCH 8/8] staging/lustre: fix errno translate code on non-x86 mail-agent-noreply
2013-07-24 17:27                 ` Dilger, Andreas [this message]
2013-07-24 17:43                   ` Peng Tao
2013-07-24 15:17             ` [PATCH 6/8] staging/lustre: fix Kconfig bool defaults Greg Kroah-Hartman
2013-07-24 17:19               ` Peng Tao
2013-07-24 19:35             ` Sam Ravnborg
2013-07-25  2:36               ` Peng Tao
2013-07-24  9:56 ` [PATCH 0/8] staging/lustre: Intel tree sync and two fixups Peng Tao

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CE156A09.575CF%andreas.dilger@intel.com \
    --to=andreas.dilger@intel.com \
    --cc=bergwolf@gmail.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=tao.peng@emc.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome