mirror of
https://github.com/checkpoint-restore/criu
synced 2025-09-03 07:45:17 +00:00
util: Rename pie's util-net.c into util.c
Will put more things there. Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
This commit is contained in:
2
Makefile
2
Makefile
@@ -152,7 +152,7 @@ pie: arch/$(ARCH)
|
|||||||
built-in.o: $(VERSION_HEADER) pie
|
built-in.o: $(VERSION_HEADER) pie
|
||||||
$(Q) $(MAKE) $(build-crtools)=. $@
|
$(Q) $(MAKE) $(build-crtools)=. $@
|
||||||
|
|
||||||
PROGRAM-BUILTINS += pie/util-net.o
|
PROGRAM-BUILTINS += pie/util.o
|
||||||
PROGRAM-BUILTINS += protobuf/built-in.o
|
PROGRAM-BUILTINS += protobuf/built-in.o
|
||||||
PROGRAM-BUILTINS += built-in.o
|
PROGRAM-BUILTINS += built-in.o
|
||||||
|
|
||||||
|
@@ -17,7 +17,7 @@
|
|||||||
#include "sockets.h"
|
#include "sockets.h"
|
||||||
#include "crtools.h"
|
#include "crtools.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
#include "util-net.h"
|
#include "util-pie.h"
|
||||||
#include "syscall.h"
|
#include "syscall.h"
|
||||||
#include "files.h"
|
#include "files.h"
|
||||||
#include "sk-inet.h"
|
#include "sk-inet.h"
|
||||||
|
2
files.c
2
files.c
@@ -21,7 +21,7 @@
|
|||||||
#include "image.h"
|
#include "image.h"
|
||||||
#include "list.h"
|
#include "list.h"
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
#include "util-net.h"
|
#include "util-pie.h"
|
||||||
#include "lock.h"
|
#include "lock.h"
|
||||||
#include "sockets.h"
|
#include "sockets.h"
|
||||||
#include "pstree.h"
|
#include "pstree.h"
|
||||||
|
@@ -13,7 +13,7 @@
|
|||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
|
|
||||||
#include "image.h"
|
#include "image.h"
|
||||||
#include "util-net.h"
|
#include "util-pie.h"
|
||||||
|
|
||||||
#include "protobuf/vma.pb-c.h"
|
#include "protobuf/vma.pb-c.h"
|
||||||
|
|
||||||
|
@@ -2,7 +2,7 @@ targets += parasite
|
|||||||
targets += restorer
|
targets += restorer
|
||||||
|
|
||||||
obj-y += log-simple.o
|
obj-y += log-simple.o
|
||||||
obj-y += util-net.o
|
obj-y += util.o
|
||||||
|
|
||||||
parasite-obj-y += parasite.o
|
parasite-obj-y += parasite.o
|
||||||
parasite-asm-e += $(ARCH_DIR)/parasite-head.o
|
parasite-asm-e += $(ARCH_DIR)/parasite-head.o
|
||||||
|
@@ -8,7 +8,7 @@
|
|||||||
#include "asm/types.h"
|
#include "asm/types.h"
|
||||||
#include "syscall.h"
|
#include "syscall.h"
|
||||||
|
|
||||||
#include "util-net.h"
|
#include "util-pie.h"
|
||||||
|
|
||||||
static void scm_fdset_init_chunk(struct scm_fdset *fdset, int nr_fds)
|
static void scm_fdset_init_chunk(struct scm_fdset *fdset, int nr_fds)
|
||||||
{
|
{
|
2
pipes.c
2
pipes.c
@@ -9,7 +9,7 @@
|
|||||||
#include "image.h"
|
#include "image.h"
|
||||||
#include "files.h"
|
#include "files.h"
|
||||||
#include "pipes.h"
|
#include "pipes.h"
|
||||||
#include "util-net.h"
|
#include "util-pie.h"
|
||||||
|
|
||||||
#include "protobuf.h"
|
#include "protobuf.h"
|
||||||
#include "protobuf/pipe.pb-c.h"
|
#include "protobuf/pipe.pb-c.h"
|
||||||
|
@@ -15,7 +15,7 @@
|
|||||||
#include "image.h"
|
#include "image.h"
|
||||||
#include "crtools.h"
|
#include "crtools.h"
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
#include "util-net.h"
|
#include "util-pie.h"
|
||||||
#include "sockets.h"
|
#include "sockets.h"
|
||||||
|
|
||||||
#include "sk-queue.h"
|
#include "sk-queue.h"
|
||||||
|
@@ -17,7 +17,7 @@
|
|||||||
#include "image.h"
|
#include "image.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
#include "util-net.h"
|
#include "util-pie.h"
|
||||||
#include "sockets.h"
|
#include "sockets.h"
|
||||||
#include "sk-queue.h"
|
#include "sk-queue.h"
|
||||||
#include "mount.h"
|
#include "mount.h"
|
||||||
|
@@ -15,7 +15,7 @@
|
|||||||
#include "packet_diag.h"
|
#include "packet_diag.h"
|
||||||
#include "netlink_diag.h"
|
#include "netlink_diag.h"
|
||||||
#include "files.h"
|
#include "files.h"
|
||||||
#include "util-net.h"
|
#include "util-pie.h"
|
||||||
#include "sk-packet.h"
|
#include "sk-packet.h"
|
||||||
#include "namespaces.h"
|
#include "namespaces.h"
|
||||||
#include "crtools.h"
|
#include "crtools.h"
|
||||||
|
Reference in New Issue
Block a user