Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758632AbZCBXLz (ORCPT ); Mon, 2 Mar 2009 18:11:55 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1757932AbZCBXKp (ORCPT ); Mon, 2 Mar 2009 18:10:45 -0500 Received: from host64.cybernetics.com ([98.174.209.230]:2969 "EHLO mail.cybernetics.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757904AbZCBXKo (ORCPT ); Mon, 2 Mar 2009 18:10:44 -0500 Message-ID: <49AC6771.2030106@cybernetics.com> Date: Mon, 02 Mar 2009 18:10:41 -0500 From: Tony Battersby User-Agent: Thunderbird 2.0.0.19 (X11/20090105) MIME-Version: 1.0 To: Andrew Morton Cc: Davide Libenzi , Linux Kernel Mailing List Subject: [PATCH 5/5] epoll: use real type instead of void * Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 819 Lines: 26 eventpoll.c uses void * in one place for no obvious reason; change it to use the real type instead. Signed-off-by: Tony Battersby Acked-by: Davide Libenzi --- --- a/fs/eventpoll.c 2009-02-23 13:32:00.000000000 -0500 +++ b/fs/eventpoll.c 2009-02-23 13:32:57.000000000 -0500 @@ -192,7 +192,7 @@ struct eppoll_entry { struct list_head llink; /* The "base" pointer is set to the container "struct epitem" */ - void *base; + struct epitem *base; /* * Wait queue item that will be linked to the target file wait -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/