[sheepdog] [PATCH] object cache: use fcntl() for create_cache_object()
Liu Yuan
namei.unix at gmail.com
Tue May 29 11:00:37 CEST 2012
On 05/29/2012 04:18 PM, Liu Yuan wrote:
> From: Liu Yuan <tailai.ly at taobao.com>
>
>
> Signed-off-by: Liu Yuan <tailai.ly at taobao.com>
> ---
> sheep/object_cache.c | 14 +++++++++++---
> 1 file changed, 11 insertions(+), 3 deletions(-)
>
> diff --git a/sheep/object_cache.c b/sheep/object_cache.c
> index 305f931..7d2733d 100644
> --- a/sheep/object_cache.c
> +++ b/sheep/object_cache.c
> @@ -398,6 +398,7 @@ static int create_cache_object(struct object_cache *oc, uint32_t idx, void *buff
> {
> int flags = def_open_flags | O_CREAT | O_EXCL, fd, ret = SD_RES_SUCCESS;
> struct strbuf buf;
> + struct flock fl;
>
> strbuf_init(&buf, PATH_MAX);
> strbuf_addstr(&buf, cache_dir);
> @@ -412,13 +413,20 @@ static int create_cache_object(struct object_cache *oc, uint32_t idx, void *buff
> ret = SD_RES_EIO;
> goto out;
> }
> - if (flock(fd, LOCK_EX) < 0) {
> - ret = SD_RES_EIO;
> + fl.l_type = F_WRLCK;
> + fl.l_whence = SEEK_SET;
> + fl.l_start = 0;
> + fl.l_len = 0; /* 0 means EOF */
> + fl.l_pid = getpid();
> + if (fcntl(fd, F_SETLKW, &fl) < 0) {
> eprintf("%m\n");
> + ret = SD_RES_EIO;
> goto out_close;
> }
> ret = xpwrite(fd, buffer, buf_size, 0);
> - if (flock(fd, LOCK_UN) < 0) {
> +
> + fl.l_type = F_UNLCK;
> + if (fcntl(fd, F_SETLK, &fl) < 0) {
> ret = SD_RES_EIO;
> eprintf("%m\n");
> goto out_close;
Applied..
Thanks,
Yuan
More information about the sheepdog
mailing list