2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-31 14:25:49 +00:00

sk-queue: Move struct sk_packet to C file

No need to keep it in header, sk_packet used solely in one C file.

Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
This commit is contained in:
Cyrill Gorcunov
2012-07-13 21:05:00 +04:00
committed by Pavel Emelyanov
parent a8c2bd0c5d
commit f703f31990
2 changed files with 6 additions and 6 deletions

View File

@@ -19,6 +19,12 @@
#include "sk-queue.h"
struct sk_packet {
struct list_head list;
struct sk_packet_entry *entry;
off_t img_off;
};
static LIST_HEAD(packets_list);
int read_sk_queues(void)