Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751053AbdISIaI (ORCPT ); Tue, 19 Sep 2017 04:30:08 -0400 Received: from mail-wm0-f66.google.com ([74.125.82.66]:36085 "EHLO mail-wm0-f66.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750823AbdISIaH (ORCPT ); Tue, 19 Sep 2017 04:30:07 -0400 X-Google-Smtp-Source: AOwi7QB3tga7CB5NzVRtXFTJjJECHkWpB7SQyiewKz9QwcuUKQIWXiE39BRto/sAOgyTv5NySFeMRw== From: Ilya Matveychikov Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 10.3 \(3273\)) Subject: [RFC PATCH 0/3] Introduce kernel small arrays (KSA) Message-Id: Date: Tue, 19 Sep 2017 12:30:03 +0400 Cc: Ilya Matveychikov , ben.hutchings@codethink.co.uk To: linux-kernel@vger.kernel.org X-Mailer: Apple Mail (2.3273) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by nfs id v8J8UFtf001116 Content-Length: 392 Lines: 13 Hi guys, Please review the approach of using small fixed-sized arrays to improve parsing of values like get_options() does. This comes to me after fixing an overflow in get_options(). See the thread for details: https://lkml.org/lkml/2017/5/22/581 If the approach is OK I’ll suggest to replace all of get_options() calls to ksa_parse_ints() and remove get_options() at all. Thank you.