From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 641DCC41513 for ; Wed, 9 Aug 2023 22:34:59 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232340AbjHIWe6 convert rfc822-to-8bit (ORCPT ); Wed, 9 Aug 2023 18:34:58 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:39318 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232221AbjHIWe4 (ORCPT ); Wed, 9 Aug 2023 18:34:56 -0400 Received: from lithops.sigma-star.at (lithops.sigma-star.at [195.201.40.130]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D952BD2; Wed, 9 Aug 2023 15:34:52 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by lithops.sigma-star.at (Postfix) with ESMTP id 8EDBF635D288; Thu, 10 Aug 2023 00:34:45 +0200 (CEST) Received: from lithops.sigma-star.at ([127.0.0.1]) by localhost (lithops.sigma-star.at [127.0.0.1]) (amavisd-new, port 10032) with ESMTP id 6b55IotJG3xt; Thu, 10 Aug 2023 00:34:45 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by lithops.sigma-star.at (Postfix) with ESMTP id 2A724635D292; Thu, 10 Aug 2023 00:34:45 +0200 (CEST) Received: from lithops.sigma-star.at ([127.0.0.1]) by localhost (lithops.sigma-star.at [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id 1iNohkyg2VBA; Thu, 10 Aug 2023 00:34:45 +0200 (CEST) Received: from lithops.sigma-star.at (lithops.sigma-star.at [195.201.40.130]) by lithops.sigma-star.at (Postfix) with ESMTP id 0691C635D288; Thu, 10 Aug 2023 00:34:45 +0200 (CEST) Date: Thu, 10 Aug 2023 00:34:44 +0200 (CEST) From: Richard Weinberger To: hch Cc: Stephan Wurm , linux-block , Miquel Raynal , Vignesh Raghavendra , linux-mtd , linux-kernel , Johannes Eigner Message-ID: <366198994.5052941.1691620484888.JavaMail.zimbra@nod.at> In-Reply-To: <20230809141542.GA32614@lst.de> References: <1293911429.1782934.1691445776353.JavaMail.zimbra@nod.at> <20230809135308.GA32214@lst.de> <20230809141542.GA32614@lst.de> Subject: Re: ubiblock: null pointer dereference using scatterlist in work_queue MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8BIT X-Originating-IP: [195.201.40.130] X-Mailer: Zimbra 8.8.12_GA_3807 (ZimbraWebClient - FF97 (Linux)/8.8.12_GA_3809) Thread-Topic: ubiblock: null pointer dereference using scatterlist in work_queue Thread-Index: PSfkdM2AA1GzDUjTP1lykwQuXd+vkA== Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org ----- Ursprüngliche Mail ----- > Von: "hch" > Yes. So the code needs to stop using sg_virt to work on highmem > setups and do the equivalent of scsi_kmap_atomic_sg. Best way > forward is probably to move scsi_kmap_atomic_sg to lib/scatterlist.c > (and also convert it to kmap_local instead of kmap_atomic while you're > at it) and then use that in ubiblock Will do so! So far I managed to get UBIblock work with scsi_kmap_atomic_sg(). Sadly now with kmap'ed memory a bounce buffer is needed since IO in UBI/MTD can sleep. Is there a strong reason why scsi_kmap_atomic_sg() needs IRQs disabled? Thanks, //richard