public inbox for netdev@vger.kernel.org 
 help / color / mirror / Atom feed
* [PATCH] rds: only for x86 or 64-bit at the moment...
@ 2009-03-31 21:06 Kyle McMartin
  2009-03-31 21:15 ` David Miller
  0 siblings, 1 reply; 4+ messages in thread
From: Kyle McMartin @ 2009-03-31 21:06 UTC (permalink / raw)
  To: andy.grover; +Cc: rds-devel, netdev

From: Kyle McMartin <kyle@redhat•com>

set_64bit doesn't exist anywhere but x86 right now, so either
BITS_PER_LONG needs to be 64, or we need to be on x86, in order to
build this module.

Signed-off-by: Kyle McMartin <kyle@redhat•com>
---
diff --git a/net/rds/Kconfig b/net/rds/Kconfig
index 796773b..84df275 100644
--- a/net/rds/Kconfig
+++ b/net/rds/Kconfig
@@ -1,7 +1,7 @@
 
 config RDS
 	tristate "Reliable Datagram Sockets (RDS) (EXPERIMENTAL)"
-	depends on INET && INFINIBAND_IPOIB && EXPERIMENTAL
+	depends on INET && INFINIBAND_IPOIB && EXPERIMENTAL && (64BIT || X86)
 	depends on INFINIBAND && INFINIBAND_ADDR_TRANS
 	---help---
 	  RDS provides reliable, sequenced delivery of datagrams

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

end of thread, other threads:[~2009-03-31 23:59 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-31 21:06 [PATCH] rds: only for x86 or 64-bit at the moment Kyle McMartin
2009-03-31 21:15 ` David Miller
2009-03-31 23:58   ` Andy Grover
2009-03-31 23:59     ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox