]> git.ipfire.org Git - thirdparty/lxc.git/commit
Simplify overlay.{c,h}
authorChristian Brauner <christian.brauner@mailbox.org>
Thu, 17 Dec 2015 23:26:14 +0000 (00:26 +0100)
committerSerge Hallyn <serge.hallyn@ubuntu.com>
Mon, 28 Dec 2015 22:36:49 +0000 (14:36 -0800)
commit3188197d2443b37193945f1043f39e7f3b96bd78
tree3ee5d8e3adb5138214ca21db812c3c9e8a7c147e
parente9df7e1a94a693f74293b3f6cfe37268a830162b
Simplify overlay.{c,h}

The struct

struct ovl_rsync_data {
struct bdev *orig;
struct bdev *new;
};

is simply a duplicate of

struct rsync_data {
struct bdev *orig;
struct bdev *new;
};

So let's replace any references to ovl_rsync_data with rsync_data.

Signed-off-by: Christian Brauner <christian.brauner@mailbox.org>
src/lxc/bdev/bdev.c
src/lxc/bdev/lxcoverlay.c
src/lxc/bdev/lxcrsync.c