From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Howells Subject: Re: [PATCH 21/21] posix_types: Remove fd_set macros Date: Tue, 14 Feb 2012 19:18:34 +0000 Message-ID: <30935.1329247114@redhat.com> References: <4F32A98F.7030400@zytor.com> <1328677745-20121-22-git-send-email-hpa@zytor.com> <1328677745-20121-1-git-send-email-hpa@zytor.com> <8328.1328703626@redhat.com> <16325.1328736262@redhat.com> <4F32E98F.2090909@zytor.com> Return-path: Received: from mx1.redhat.com ([209.132.183.28]:47519 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1759974Ab2BNTSp (ORCPT ); Tue, 14 Feb 2012 14:18:45 -0500 In-Reply-To: Sender: linux-arch-owner@vger.kernel.org List-ID: To: Tony Luck , "H. Peter Anvin" Cc: dhowells@redhat.com, linux-arch@vger.kernel.org, linux-kernel@vger.kernel.org, Linus Torvalds , Arnd Bergmann Tony Luck wrote: > Adding a #include to include/linux/time.h fixes them for me. Which is one of the reasons I'd rather not see these things cropping up in linux/time.h. Either put them in linux/select.h (mirroring userspace) or stick them in linux/poll.h with the rest of the polling paraphernalia. __FD_SET() and co aren't exported to userspace anyway, as I understand it, so it shouldn't hurt to bung them in linux/poll.h, and if they are exported to userspace, they should stay in posix_types.h, shouldn't they? To support this, at least three #includes will have to be added to linux/time.h: linux/posix_types.h (which is fair enough), linux/bitops.h and linux/string.h. David