Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d50c97b5 authored by Ilya Dryomov's avatar Ilya Dryomov
Browse files

libceph: nuke time_sub()



Unused since ceph got merged into mainline I guess.

Signed-off-by: default avatarIlya Dryomov <idryomov@gmail.com>
Reviewed-by: default avatarAlex Elder <elder@linaro.org>
parent e8a7b8b1
Loading
Loading
Loading
Loading
+0 −9
Original line number Diff line number Diff line
@@ -93,15 +93,6 @@ enum {
	CEPH_MOUNT_SHUTDOWN,
};

/*
 * subtract jiffies
 */
static inline unsigned long time_sub(unsigned long a, unsigned long b)
{
	BUG_ON(time_after(b, a));
	return (long)a - (long)b;
}

struct ceph_mds_client;

/*