From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45205) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZvvdJ-00030j-KJ for qemu-devel@nongnu.org; Mon, 09 Nov 2015 18:13:54 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZvvdE-0006w5-H8 for qemu-devel@nongnu.org; Mon, 09 Nov 2015 18:13:53 -0500 Received: from mx1.redhat.com ([209.132.183.28]:55618) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZvvdE-0006vu-BY for qemu-devel@nongnu.org; Mon, 09 Nov 2015 18:13:48 -0500 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (Postfix) with ESMTPS id EA8F9A2C16 for ; Mon, 9 Nov 2015 23:13:47 +0000 (UTC) From: Bandan Das References: <1446595225-23608-1-git-send-email-bsd@redhat.com> <1446595225-23608-3-git-send-email-bsd@redhat.com> <1446713390.30393.17.camel@redhat.com> Date: Mon, 09 Nov 2015 18:13:46 -0500 In-Reply-To: <1446713390.30393.17.camel@redhat.com> (Gerd Hoffmann's message of "Thu, 05 Nov 2015 09:49:50 +0100") Message-ID: MIME-Version: 1.0 Content-Type: text/plain Subject: Re: [Qemu-devel] [PATCH 2/3] usb-mtp: Add support for inotify based file monitoring List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Gerd Hoffmann Cc: qemu-devel@nongnu.org Gerd Hoffmann writes: > On Di, 2015-11-03 at 19:00 -0500, Bandan Das wrote: >> + case IN_DELETE: >> + /* >> + * The kernel issues a IN_IGNORED event >> + * when a dir containing a watchpoint is >> + * deleted >> + */ > > Wrong place for the comment? I added this to avoid confusion as to why are we not deleting the watch during a delete event. I will reword the comment.