Received: by 2002:ad5:474a:0:0:0:0:0 with SMTP id i10csp6620662imu; Mon, 21 Jan 2019 12:18:17 -0800 (PST) X-Google-Smtp-Source: ALg8bN6PM2h4la+O8UllZd7XoLRVZRFGuwl9EnO574Q/SjZ+4C8cjEURHpfE+S3diTbGL47RaEXf X-Received: by 2002:a62:36c1:: with SMTP id d184mr31183865pfa.242.1548101897216; Mon, 21 Jan 2019 12:18:17 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1548101897; cv=none; d=google.com; s=arc-20160816; b=LEVUeOOfCNvXQXuq+0ktG0GFXUbpz4nrQZBKAucxvDFEnIBPLzMIEEhs38w29puj3y iN3XYVijF+C25S10bX6yMxY2loPFBBCmYon1nenuH7i32xnEsekPL9QaEHVWpqhC2ugi zVPcJFFHeb+HndJxjee8pTcSR4LdfA/oEAqfM5lHrEuhrG9SoXISr0uPWDKKVVoutD1N C92GdBzyreC+5xLW0Ihauk0prT09d1oKwK9z1QN/B/iIqixC7wdpl54FtH+ETBIA0CeY I7Rr8THPOJZVlU+KKB+kL/PmWTM9C9NdcXo+x0Yt6HkacR3dXqmP2aIa3vZigKc2YlAj 0T1Q== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:to:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:from; bh=Bi7Af1JqrQ8Y8IuFTzCy0cTPeuoKmMEt+wGlsLja0pQ=; b=Al4KXTuTX6FtNvjmgpKHLySqxDBcAly3942kQpP4+a3FmXXngFUT0TxOh/nBcF3VZP a7OefbRep+U8StGtOvtkFrCL0uQT/mQdSVGBWe4WUgE2IiPnlyn8qv6WNl+dDl/yJVys SjVTqofhN1Fwenw3Meo02J3jdHsTUFMbJTuBLT+gV9Sk8HsYcgMBkxK+xG2reFSEyFIs 0ShbksVwBkHdKzE44z1wYmg0/zNLhPwGxly9ILlwskImfAe3LkVKaBfv5/UTI74u0ZD1 u04EE34+kXw8SjNMAoZmyMvykwDABwLZzmlARReHBlmXpLC7Mqifal8T8Pxma1N+cNC2 zPTQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id j20si12367534pgb.520.2019.01.21.12.18.01; Mon, 21 Jan 2019 12:18:17 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728208AbfAUUPO (ORCPT + 99 others); Mon, 21 Jan 2019 15:15:14 -0500 Received: from mx2.suse.de ([195.135.220.15]:55534 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1727867AbfAUUPO (ORCPT ); Mon, 21 Jan 2019 15:15:14 -0500 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay1.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id B45DAAFF5; Mon, 21 Jan 2019 20:15:12 +0000 (UTC) From: Roman Penyaev Cc: Roman Penyaev , Andrew Morton , Davidlohr Bueso , Jason Baron , Al Viro , "Paul E. McKenney" , Linus Torvalds , Andrea Parri , linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [RFC PATCH v2 02/13] epoll: introduce user structures for polling from userspace Date: Mon, 21 Jan 2019 21:14:45 +0100 Message-Id: <20190121201456.28338-3-rpenyaev@suse.de> X-Mailer: git-send-email 2.19.1 In-Reply-To: <20190121201456.28338-1-rpenyaev@suse.de> References: <20190121201456.28338-1-rpenyaev@suse.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit To: unlisted-recipients:; (no To-header on input) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This one introduces structures of user items array: struct user_epheader - describes inserted epoll items. struct user_epitem - single epoll item, visible to userspace. Signed-off-by: Roman Penyaev Cc: Andrew Morton Cc: Davidlohr Bueso Cc: Jason Baron Cc: Al Viro Cc: "Paul E. McKenney" Cc: Linus Torvalds Cc: Andrea Parri Cc: linux-fsdevel@vger.kernel.org Cc: linux-kernel@vger.kernel.org --- fs/eventpoll.c | 9 +++++++++ include/uapi/linux/eventpoll.h | 19 +++++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/fs/eventpoll.c b/fs/eventpoll.c index 2cc183e86a29..f598442512f3 100644 --- a/fs/eventpoll.c +++ b/fs/eventpoll.c @@ -9,6 +9,8 @@ * * Davide Libenzi * + * Polling from userspace support by Roman Penyaev + * (C) Copyright 2019 SUSE, All Rights Reserved */ #include @@ -109,6 +111,13 @@ #define EP_ITEM_COST (sizeof(struct epitem) + sizeof(struct eppoll_entry)) +/* + * That is around 1.3mb of allocated memory for one epfd. What is more + * important is ->index_length, which should be ^2, so do not increase + * max items number to avoid size doubling of user index. + */ +#define EP_USERPOLL_MAX_ITEMS_NR 65536 + struct epoll_filefd { struct file *file; int fd; diff --git a/include/uapi/linux/eventpoll.h b/include/uapi/linux/eventpoll.h index 39dfc29f0f52..690a625ddeb2 100644 --- a/include/uapi/linux/eventpoll.h +++ b/include/uapi/linux/eventpoll.h @@ -79,4 +79,23 @@ struct epoll_event { __u64 data; } EPOLL_PACKED; +struct epoll_uitem { + __poll_t ready_events; + struct epoll_event event; +}; + +#define EPOLL_USERPOLL_HEADER_SIZE 128 +#define EPOLL_USERPOLL_HEADER_MAGIC 0xeb01eb01 + +struct epoll_uheader { + u32 magic; /* epoll user header magic */ + u32 header_length; /* length of the header + items */ + u32 index_length; /* length of the index ring, always pow2 */ + u32 max_items_nr; /* max number of items */ + u32 head; /* updated by userland */ + u32 tail; /* updated by kernel */ + + struct epoll_uitem items[] __aligned(EPOLL_USERPOLL_HEADER_SIZE); +}; + #endif /* _UAPI_LINUX_EVENTPOLL_H */ -- 2.19.1