mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] Missing include in swap.h for some architectures
@ 2003-10-20  5:17 Noah J. Misch
  2003-10-20  9:25 ` Andrew Morton
  0 siblings, 1 reply; 3+ messages in thread
From: Noah J. Misch @ 2003-10-20  5:17 UTC (permalink / raw)
  To: linux-kernel

Greetings All,

This flaw broke kernel builds configured with SWAP=n on some architectures,
particularly alpha and ia64.  Since i386 managed to include pagemap.h
indirectly, this did not crop up there.  See log for details.

This applies to linux-2.5 BK as of 0400 UTC 10/20/2003 and passes all kinds of
ridiculous compile tests, probably including (allyesconfig - broken stuff) on
sparc, sparc64, ia64, alpha, and i386.  Don't know about VAX...

One could place this include within the #ifdef'ed block that contains the
relevant function uses, but that's not generally within the style of this file
or most others, per my recollection.

I didn't know who takes things like this, so if anyone would like to pick this
up, please do so.  Otherwise, I will send it to Linus after a few days.

# This is a BitKeeper generated patch for the following project:
# Project Name: Linux kernel tree
# This patch format is intended for GNU patch command version 2.5 or higher.
# This patch includes the following deltas:
#	           ChangeSet	1.1367  -> 1.1368
#	include/linux/swap.h	1.79    -> 1.80
#
# The following is the BitKeeper ChangeSet Log
# --------------------------------------------
# 03/10/16	noah@caltech.edu	1.1368
# The linux/swap.h header uses the page_cache_release and release_pages
# functions declared in linux/pagemap.h when CONFIG_SWAP is disabled.  Add
# an include of linux/pagemap.h so swap.h finds those declarations on
# architectures that don't include pagemap.h indirectly.
# --------------------------------------------
#
diff -Nru a/include/linux/swap.h b/include/linux/swap.h
--- a/include/linux/swap.h	Fri Oct 17 13:40:06 2003
+++ b/include/linux/swap.h	Fri Oct 17 13:40:06 2003
@@ -4,6 +4,7 @@
 #include <linux/config.h>
 #include <linux/spinlock.h>
 #include <linux/linkage.h>
+#include <linux/pagemap.h>
 #include <linux/mmzone.h>
 #include <linux/list.h>
 #include <linux/sched.h>


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

end of thread, other threads:[~2003-10-21 13:47 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-10-20  5:17 [PATCH] Missing include in swap.h for some architectures Noah J. Misch
2003-10-20  9:25 ` Andrew Morton
2003-10-21 13:47   ` Noah J. Misch

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

all inboxes | Powered by JetHome®