scoutfs: remove unused kvec.h

We've removed the last use of kvecs to describe item values.

Signed-off-by: Zach Brown <zab@versity.com>
This commit is contained in:
Zach Brown
2020-08-19 10:04:26 -07:00
committed by Zach Brown
parent 12067e99ab
commit ae97ffd6fc

View File

@@ -1,12 +0,0 @@
#ifndef _SCOUTFS_KVEC_H_
#define _SCOUTFS_KVEC_H_
#include <linux/uio.h>
static inline void kvec_init(struct kvec *kv, void *base, size_t len)
{
kv->iov_base = base;
kv->iov_len = len;
}
#endif