The variable is initialized but it is only used after its assignment. Signed-off-by: Deming Wang <wangdeming@xxxxxxxxxx> --- fs/fuse/virtio_fs.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fs/fuse/virtio_fs.c b/fs/fuse/virtio_fs.c index 4d8d4f16c..bffe74d44 100644 --- a/fs/fuse/virtio_fs.c +++ b/fs/fuse/virtio_fs.c @@ -414,7 +414,7 @@ static int send_forget_request(struct virtio_fs_vq *fsvq, { struct scatterlist sg; struct virtqueue *vq; - int ret = 0; + int ret; bool notify; struct virtio_fs_forget_req *req = &forget->req; @@ -1414,10 +1414,10 @@ static int virtio_fs_get_tree(struct fs_context *fsc) { struct virtio_fs *fs; struct super_block *sb; - struct fuse_conn *fc = NULL; + struct fuse_conn *fc; struct fuse_mount *fm; unsigned int virtqueue_size; - int err = -EIO; + int err; /* This gets a reference on virtio_fs object. This ptr gets installed * in fc->iq->priv. Once fuse_conn is going away, it calls ->put() -- 2.27.0