summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 6992405..133e497 100644
--- a/Makefile
+++ b/Makefile
@@ -4,17 +4,17 @@ BINDIR = ${prefix}/bin
DESTDIR =
CC := gcc
-CFLAGS := -Wall -D_USE_SOURCE
-
INSTALL := install
+CFLAGS := -g -Wall -D_USE_SOURCE
+
DEBUG = false
ifeq ($(strip $(DEBUG)),true)
- CFLAGS += -g -DDEBUG
+ CFLAGS += -DDEBUG
endif
-PROGRAMS := inotail inotail-old inotify-watchdir #simpletail
+PROGRAMS := inotail #inotail-old inotify-watchdir simpletail
all: $(PROGRAMS)
@@ -24,7 +24,7 @@ inotail-old: inotail-old.o
inotify-watchdir: inotify-watchdir.o
-#simpletail: simpletail.o
+simpletail: simpletail.o
%.o: %.c
$(CC) $(CFLAGS) -c $< -o $@
host route is deleted and will be re-generated an up there is no longer a need for the l3mdev fix up. On the 'admin up' side move addrconf_permanent_addr into the NETDEV_UP event handling so that it runs only once versus on UP and CHANGE events. All of the current panics and warnings appear to be related to addresses on the loopback device, but given the catastrophic nature when a bug is triggered this patch takes the conservative approach and evicts all host routes rather than trying to determine when it can be re-used and when it can not. That can be a later optimizaton if desired. Signed-off-by: David Ahern <dsa@cumulusnetworks.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat