From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 36453138359 for ; Mon, 6 Jul 2020 02:10:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6636CE087E; Mon, 6 Jul 2020 02:10:24 +0000 (UTC) Received: from mail-io1-f41.google.com (mail-io1-f41.google.com [209.85.166.41]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5F631E087E for ; Mon, 6 Jul 2020 02:10:24 +0000 (UTC) Received: by mail-io1-f41.google.com with SMTP id v8so37657225iox.2 for ; Sun, 05 Jul 2020 19:10:24 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=b6du+rmqZ/I6dShYdAnWrDESSg5Bhrcde+ZewobtucY=; b=bLBTzjPfVAscwCxJA4r6uhWc3IN2UbOh9omqFgpDSfYZfSXCVLUI1hxqjf03h5OGFp RE+qQvO2T7NP3WAveAABFjr8LHHNc+xQQMNa65L97HuOjGcCvu78DG9asuwe+e2jUUe5 OK82e8HMiavmOlcG01dQnbAmJzflfDDZeXmPlPGfjodpgYFBOnAz9K7ZbrpzMkNmisaV uhsfS6a6GIAW4582PAnRT+BJMbR72SkhZQHHz2PwZCjCwJGbea43tlFE2ERiJrV5GOHE UzDII0fbVdHiuYnKVTlZrnyreXqHXzfVRHYssHos7ZNWlebvSWpQ9tX6dHVh17FbOd2t Xbrw== X-Gm-Message-State: AOAM532t95rNDjIcxGOryIPh72ik22Ei8VGH23GWCJlJRDIsSLfQiBOS L5k1uzkE5bPgNmiWBA9BRh8FjnLlXQKYd8oO2JYdUQ== X-Google-Smtp-Source: ABdhPJzCKtkIttxFrGsVMeSaKVxEY4ieiwfVjvcooQcNl9f4d3jD+L3JfqAhV/e7k/5KME71nCHB20GHqygi8+VCSxY= X-Received: by 2002:a6b:d102:: with SMTP id l2mr8012160iob.142.1594001423409; Sun, 05 Jul 2020 19:10:23 -0700 (PDT) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-soc@lists.gentoo.org Reply-to: gentoo-soc@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply MIME-Version: 1.0 From: Kaoru Esashika Date: Mon, 6 Jul 2020 11:10:12 +0900 Message-ID: Subject: [gentoo-soc] Weekly Report: Fusebox - FUSE Porwered sandbox project To: gentoo-soc@lists.gentoo.org Content-Type: text/plain; charset="UTF-8" X-Archives-Salt: 72048029-ae94-4869-9fe6-f88c7865faef X-Archives-Hash: 0db91f97f50157ab51971091bb214389 Hi, This week, I'm trying to fix some issue which is pointed out by my mentor (thanks!) Some of the issues are caused by deadlock. Since Fusebox is a single thread program, It cannot process a request from VFS (kernel) while processing another request. So I choose a solution that hides the directory which causes deadlock. Because Fusebox has been developed for sandbox, basically it doesn't need recursive access. So I think this not bad. In the next week, I will write unit test because debugging and testing burden me. And also I will implement virtual inode mechanism (which will kick out a compromise in the code) Project Repository: https://github.com/pluser/fusebox Regards, Kaoru Esashika