Trivial cleanups.

Reported-by: Darren Hart <dvh...@linux.intel.com>
Signed-off-by: Sasha Levin <levinsasha...@gmail.com>
---
 tools/kvm/virtio/9p.c |   10 ++++------
 1 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/tools/kvm/virtio/9p.c b/tools/kvm/virtio/9p.c
index 2392bd1..8104ac4 100644
--- a/tools/kvm/virtio/9p.c
+++ b/tools/kvm/virtio/9p.c
@@ -683,13 +683,11 @@ static void virtio_p9_remove(struct p9_dev *p9dev,
        int ret;
        u32 fid_val;
        struct p9_fid *fid;
-       char full_path[PATH_MAX];
 
        virtio_p9_pdu_readf(pdu, "d", &fid_val);
        fid = &p9dev->fids[fid_val];
 
-       sprintf(full_path, "%s", fid->abs_path);
-       ret = remove(full_path);
+       ret = remove(fid->abs_path);
        if (ret < 0)
                goto err_out;
        *outlen = pdu->write_offset;
@@ -698,7 +696,7 @@ static void virtio_p9_remove(struct p9_dev *p9dev,
 
 err_out:
        virtio_p9_error_reply(p9dev, pdu, errno, outlen);
-       return; 
+       return;
 }
 
 static void virtio_p9_rename(struct p9_dev *p9dev,
@@ -724,9 +722,9 @@ static void virtio_p9_rename(struct p9_dev *p9dev,
 
 err_out:
        virtio_p9_error_reply(p9dev, pdu, errno, outlen);
-       return; 
+       return;
 }
-                              
+
 static void virtio_p9_readlink(struct p9_dev *p9dev,
                               struct p9_pdu *pdu, u32 *outlen)
 {
-- 
1.7.7.2

--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to