Revision 6fd6b17c6d9713f56b5f20903ec3e00fa6cc435e authored by Linus Torvalds on 01 February 2007, 00:43:36 UTC, committed by Linus Torvalds on 01 February 2007, 00:46:40 UTC
This reverts commit e80ee884ae0e3794ef2b65a18a767d502ad712ee.

Pawel Sikora had a boot-time oops due to it - because the sign change
invalidates the following comparisons, since 'free_pages' can be
negative.

The micro-optimization just isn't worth it.

Bisected-by: Pawel Sikora <pluto@agmk.net>
Acked-by: Andrew Morton <akpm@osdl.org>
Cc: Nick Piggin <nickpiggin@yahoo.com.au>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
1 parent f56df2f
Raw File
Makefile
#
# Makefile for Linux kernel Rx RPC
#

#CFLAGS += -finstrument-functions

rxrpc-objs := \
	call.o \
	connection.o \
	krxiod.o \
	krxsecd.o \
	krxtimod.o \
	main.o \
	peer.o \
	rxrpc_syms.o \
	transport.o

ifeq ($(CONFIG_PROC_FS),y)
rxrpc-objs += proc.o
endif
ifeq ($(CONFIG_SYSCTL),y)
rxrpc-objs += sysctl.o
endif

obj-$(CONFIG_RXRPC) := rxrpc.o
back to top