All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH-v2 00/17] staging/lustre: fix various build issues
@ 2013-07-15 13:07 Peng Tao
  2013-07-15 13:07 ` [PATCH-v2 01/17] staging/lustre: replace num_physpages with totalram_pages Peng Tao
                   ` (16 more replies)
  0 siblings, 17 replies; 20+ messages in thread
From: Peng Tao @ 2013-07-15 13:07 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: linux-kernel, Peng Tao, Fengguang Wu, Stephen Rothwell, Andreas Dilger

Hi Greg,

Now that 3.11-rc1 is out, please consider queuing following patches to
fix various Lustre client build issues. I've verified that we can now
pass build on sparc/mips/s390/powerpc/x86, both 32bits and 64bits.

V2 changelog:
Add patches to fix API changes in 3.11 merge window and address comments
on v1 patches. Lustre private watchdog is now removed.

Thanks,
Tao

Cc: Fengguang Wu <fengguang.wu@intel.com>
Cc: Stephen Rothwell <sfr@canb.auug.org.au>
Cc: Andreas Dilger <andreas.dilger@intel.com>

Peng Tao (16):
  staging/lustre: replace num_physpages with totalram_pages
  staging/lustre: fix Lustre code link order
  staging/lustre: don't assert module owner
  staging/lustre: don't assert ln_refcount in LNetGetId
  stating/lustre: only build if configured as module
  staging/lustre: remove HIPQUAD
  staging/lustre: fix build error when !CONFIG_SMP
  staging/lustre: fix build on s390
  staging/lustre/llite: add missing include file for prefetchw
  staging/lustre/llite: fix build erorr if CONFIG_FS_POSIX_ACL is off
  staging/lustre: fix build when CONFIG_UIDGID_STRICT_TYPE_CHECKS is on
  staging/lustre: fix build error on non-x86 platforms
  staging/lustre: fix build warnning on 32bit system
  staging/lustre/llite: fix for d_compare API change
  staging/lustre/llite: readdir convert to iterate
  staging/lustre: drop CONFIG_BROKEN

Stephen Rothwell (1):
  staging/lustre: fix for invalidatepage() API change

 drivers/staging/lustre/Makefile                    |    2 +-
 .../staging/lustre/include/linux/libcfs/curproc.h  |    2 -
 .../staging/lustre/include/linux/libcfs/libcfs.h   |   25 -
 .../lustre/include/linux/libcfs/libcfs_cpu.h       |   46 +-
 .../lustre/include/linux/libcfs/libcfs_private.h   |    1 -
 .../lustre/include/linux/libcfs/linux/linux-cpu.h  |    6 -
 .../lustre/include/linux/libcfs/linux/linux-mem.h  |    4 +-
 .../include/linux/libcfs/linux/linux-tcpip.h       |   15 -
 drivers/staging/lustre/lnet/Makefile               |    2 +-
 .../staging/lustre/lnet/klnds/o2iblnd/o2iblnd.c    |   10 +-
 .../staging/lustre/lnet/klnds/o2iblnd/o2iblnd_cb.c |   12 +-
 .../staging/lustre/lnet/klnds/socklnd/socklnd.c    |   50 +-
 .../staging/lustre/lnet/klnds/socklnd/socklnd_cb.c |   94 ++--
 .../lustre/lnet/klnds/socklnd/socklnd_proto.c      |   60 +--
 drivers/staging/lustre/lnet/lnet/acceptor.c        |   62 +--
 drivers/staging/lustre/lnet/lnet/api-ni.c          |    5 +-
 drivers/staging/lustre/lustre/Kconfig              |    2 +-
 drivers/staging/lustre/lustre/Makefile             |    4 +-
 .../lustre/include/linux/lustre_patchless_compat.h |    2 +-
 .../lustre/lustre/include/linux/lustre_user.h      |   18 +-
 drivers/staging/lustre/lustre/include/linux/lvfs.h |    8 +-
 drivers/staging/lustre/lustre/include/linux/obd.h  |    5 +-
 .../staging/lustre/lustre/include/lprocfs_status.h |    4 +-
 drivers/staging/lustre/lustre/include/lustre_cfg.h |    4 -
 drivers/staging/lustre/lustre/include/lustre_net.h |    7 +-
 drivers/staging/lustre/lustre/ldlm/ldlm_lib.c      |   10 +-
 drivers/staging/lustre/lustre/ldlm/ldlm_lock.c     |    2 +-
 drivers/staging/lustre/lustre/libcfs/Makefile      |    2 +-
 .../staging/lustre/lustre/libcfs/linux/linux-cpu.c |   46 +-
 .../lustre/lustre/libcfs/linux/linux-curproc.c     |   16 -
 .../lustre/lustre/libcfs/linux/linux-debug.c       |   45 +-
 .../lustre/lustre/libcfs/linux/linux-module.c      |    2 +-
 .../lustre/lustre/libcfs/linux/linux-tcpip.c       |    4 +-
 .../lustre/lustre/libcfs/linux/linux-tracefile.c   |    2 +-
 drivers/staging/lustre/lustre/libcfs/watchdog.c    |  516 --------------------
 drivers/staging/lustre/lustre/llite/dcache.c       |    5 +-
 drivers/staging/lustre/lustre/llite/dir.c          |   55 +--
 .../staging/lustre/lustre/llite/llite_internal.h   |   28 +-
 drivers/staging/lustre/lustre/llite/llite_lib.c    |   13 +-
 drivers/staging/lustre/lustre/llite/llite_nfs.c    |   13 +-
 drivers/staging/lustre/lustre/llite/lproc_llite.c  |   11 +-
 drivers/staging/lustre/lustre/llite/namei.c        |    7 +-
 drivers/staging/lustre/lustre/llite/remote_perm.c  |   11 +-
 drivers/staging/lustre/lustre/llite/rw.c           |    2 +-
 drivers/staging/lustre/lustre/llite/rw26.c         |    5 +-
 drivers/staging/lustre/lustre/llite/vvp_object.c   |    8 +-
 drivers/staging/lustre/lustre/llite/xattr.c        |    2 +
 drivers/staging/lustre/lustre/lmv/lmv_obd.c        |   12 +-
 drivers/staging/lustre/lustre/lov/lov_io.c         |    2 +-
 drivers/staging/lustre/lustre/mdc/mdc_lib.c        |   25 +-
 drivers/staging/lustre/lustre/mdc/mdc_request.c    |    8 +-
 drivers/staging/lustre/lustre/obdclass/class_obd.c |    9 +-
 drivers/staging/lustre/lustre/obdclass/idmap.c     |   12 +-
 .../lustre/lustre/obdclass/linux/linux-obdo.c      |    4 +-
 .../lustre/lustre/obdclass/linux/linux-sysctl.c    |    6 +-
 .../lustre/lustre/obdclass/lprocfs_status.c        |    2 +-
 drivers/staging/lustre/lustre/obdclass/lu_object.c |    5 +-
 drivers/staging/lustre/lustre/obdclass/obdo.c      |   16 +-
 .../staging/lustre/lustre/obdecho/echo_client.c    |   12 +-
 drivers/staging/lustre/lustre/osc/lproc_osc.c      |    2 +-
 drivers/staging/lustre/lustre/osc/osc_io.c         |    2 +-
 .../staging/lustre/lustre/ptlrpc/lproc_ptlrpc.c    |    2 +-
 drivers/staging/lustre/lustre/ptlrpc/sec.c         |   19 +-
 drivers/staging/lustre/lustre/ptlrpc/sec_bulk.c    |    4 +-
 drivers/staging/lustre/lustre/ptlrpc/service.c     |   19 +-
 65 files changed, 393 insertions(+), 1023 deletions(-)
 delete mode 100644 drivers/staging/lustre/lustre/libcfs/watchdog.c

-- 
1.7.9.5


^ permalink raw reply	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2013-07-15 14:09 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-07-15 13:07 [PATCH-v2 00/17] staging/lustre: fix various build issues Peng Tao
2013-07-15 13:07 ` [PATCH-v2 01/17] staging/lustre: replace num_physpages with totalram_pages Peng Tao
2013-07-15 13:08 ` [PATCH-v2 02/17] staging/lustre: fix Lustre code link order Peng Tao
2013-07-15 13:08 ` [PATCH-v2 03/17] staging/lustre: don't assert module owner Peng Tao
2013-07-15 13:08 ` [PATCH-v2 04/17] staging/lustre: don't assert ln_refcount in LNetGetId Peng Tao
2013-07-15 13:08 ` [PATCH-v2 05/17] stating/lustre: only build if configured as module Peng Tao
2013-07-15 13:08 ` [PATCH-v2 06/17] staging/lustre: remove HIPQUAD Peng Tao
2013-07-15 13:38   ` Joe Perches
2013-07-15 14:08     ` Peng Tao
2013-07-15 13:08 ` [PATCH-v2 07/17] staging/lustre: fix build error when !CONFIG_SMP Peng Tao
2013-07-15 13:08 ` [PATCH-v2 08/17] staging/lustre: fix build on s390 Peng Tao
2013-07-15 13:08 ` [PATCH-v2 09/17] staging/lustre/llite: add missing include file for prefetchw Peng Tao
2013-07-15 13:08 ` [PATCH-v2 10/17] staging/lustre/llite: fix build erorr if CONFIG_FS_POSIX_ACL is off Peng Tao
2013-07-15 13:08 ` [PATCH-v2 11/17] staging/lustre: fix build when CONFIG_UIDGID_STRICT_TYPE_CHECKS is on Peng Tao
2013-07-15 13:08 ` [PATCH-v2 12/17] staging/lustre: fix build error on non-x86 platforms Peng Tao
2013-07-15 13:08 ` [PATCH-v2 13/17] staging/lustre: fix build warnning on 32bit system Peng Tao
2013-07-15 13:08 ` [PATCH-v2 14/17] staging/lustre: fix for invalidatepage() API change Peng Tao
2013-07-15 13:08 ` [PATCH-v2 15/17] staging/lustre/llite: fix for d_compare " Peng Tao
2013-07-15 13:08 ` [PATCH-v2 16/17] staging/lustre/llite: readdir convert to iterate Peng Tao
2013-07-15 13:08 ` [PATCH-v2 17/17] staging/lustre: drop CONFIG_BROKEN Peng Tao

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.