All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Fix compile issue with CONFIG_CHECKPOINT=n for inet sockets
@ 2009-10-02  9:35 Matt Helsley
       [not found] ` <1254476123-4939-1-git-send-email-matthltc-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
  0 siblings, 1 reply; 4+ messages in thread
From: Matt Helsley @ 2009-10-02  9:35 UTC (permalink / raw)
  To: Oren Laadan
  Cc: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA, Dan Smith

When I disable CHECKPOINT I get:

	net/ipv4/af_inet.c:860: error: ‘inet_checkpoint’ undeclared here (not in a function)
	net/ipv4/af_inet.c:861: error: ‘inet_restore’ undeclared here (not in a function)
	net/ipv4/af_inet.c:862: error: ‘inet_collect’ undeclared here (not in a function)

Similar to problem with unix sockets. The solution is the same as well.

Signed-off-by: Matt Helsley <matthltc@us.ibm.com>
Cc: Dan Smith <danms@us.ibm.com>
---
 include/net/inet_common.h |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/include/net/inet_common.h b/include/net/inet_common.h
index 7ade732..bf04e6e 100644
--- a/include/net/inet_common.h
+++ b/include/net/inet_common.h
@@ -52,6 +52,10 @@ extern int inet_checkpoint(struct ckpt_ctx *ctx, struct socket *sock);
 extern int inet_collect(struct ckpt_ctx *ctx, struct socket *sock);
 extern int inet_restore(struct ckpt_ctx *cftx, struct socket *sock,
 			struct ckpt_hdr_socket *h);
+#else
+#define inet_checkpoint NULL
+#define inet_collect NULL
+#define inet_restore NULL
 #endif /* CONFIG_CHECKPOINT */
 
 static inline void inet_ctl_sock_destroy(struct sock *sk)
-- 
1.5.6.3

_______________________________________________
Containers mailing list
Containers@lists.linux-foundation.org
https://lists.linux-foundation.org/mailman/listinfo/containers

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

end of thread, other threads:[~2009-10-02 19:47 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-10-02  9:35 [PATCH] Fix compile issue with CONFIG_CHECKPOINT=n for inet sockets Matt Helsley
     [not found] ` <1254476123-4939-1-git-send-email-matthltc-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2009-10-02 13:34   ` Dan Smith
     [not found]     ` <87iqexhqc4.fsf-FLMGYpZoEPULwtHQx/6qkW3U47Q5hpJU@public.gmane.org>
2009-10-02 19:47       ` Matt Helsley
2009-10-02 18:31   ` Oren Laadan

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.