From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Sandeen Subject: [PATCH] fix I_DIO_WAKEUP definition Date: Thu, 16 Apr 2015 15:04:56 -0500 Message-ID: <553015E8.9040200@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Cc: Christoph Hellwig , Al Viro To: "linux-fsdevel@vger.kernel.org" Return-path: Received: from mx1.redhat.com ([209.132.183.28]:47586 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753381AbbDPUrc (ORCPT ); Thu, 16 Apr 2015 16:47:32 -0400 Sender: linux-fsdevel-owner@vger.kernel.org List-ID: I_DIO_WAKEUP is never directly used, but fix it up anyway. Signed-off-by: Eric Sandeen --- diff --git a/include/linux/fs.h b/include/linux/fs.h index b4d71b5..e46842f 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -1785,7 +1785,7 @@ struct super_operations { #define I_SYNC (1 << __I_SYNC) #define I_REFERENCED (1 << 8) #define __I_DIO_WAKEUP 9 -#define I_DIO_WAKEUP (1 << I_DIO_WAKEUP) +#define I_DIO_WAKEUP (1 << __I_DIO_WAKEUP) #define I_LINKABLE (1 << 10) #define I_DIRTY_TIME (1 << 11) #define __I_DIRTY_TIME_EXPIRED 12