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 shelob.surriel.com (shelob.surriel.com [96.67.55.147]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id B2619C433EF for ; Sat, 8 Jan 2022 12:23:49 +0000 (UTC) Received: from localhost ([::1] helo=shelob.surriel.com) by shelob.surriel.com with esmtp (Exim 4.94.2) (envelope-from ) id 1n6Akj-0004fO-BJ; Sat, 08 Jan 2022 07:23:21 -0500 Received: from mail-oo1-xc29.google.com ([2607:f8b0:4864:20::c29]) by shelob.surriel.com with esmtps (TLS1.2) tls TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 (Exim 4.94.2) (envelope-from ) id 1n6Akg-0004f1-0o for kernelnewbies@kernelnewbies.org; Sat, 08 Jan 2022 07:23:18 -0500 Received: by mail-oo1-xc29.google.com with SMTP id q14-20020a056820028e00b002da9808b90fso2252551ood.7 for ; Sat, 08 Jan 2022 04:23:17 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=JUq8tGfz/84tavafmYqMAnvEjQQ3nwo5U0sWCFCO1mI=; b=d+SdWaJ7t3CiMdATykywtKkZHMu5d6ITGaZUD7IZw4ibmwuM3lAsL72Q/M40WNvEyr aG38WDcL4pO1u0djr3KbSOyGAFkh9Zzjhwyp0uuW2Xb5viozySOttcC3XPCWMkgGPcYv IpmCorEfLdwXYWVV+piqksA/2ug3rwZ4PDuwrrYnKN7H634IHi+qR1x6NMZeXMKW/kg/ d/8IqPoIoJ+4QaL1EaPaYdVzOBD6WJ1T4oYshRru2VdkA+sRsZuFKU2MFE8EkeDQnrUr hd/kvkLicMaCc/AkSzOcLyba6f31YdbEk6nfxTXvyv7GbKZi3nvXN7e06AyVtaaNJbkn JyZQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=JUq8tGfz/84tavafmYqMAnvEjQQ3nwo5U0sWCFCO1mI=; b=lgvuAgJJhLVd8NswUCK/v0oRbj2hK31Au3BVAy/w6c7swwx7vbP0Px16hg5q3+ASu/ aBMQD6j1rOnQd/VxbSBt9zHvPk0o2UxJXgYWVTDmdCtC2YkEEEGzfzOOTi884vHQyKOI yZkcfhijPQdANJLvwJiov2119a/JIHVOqwyGeO52Oau4ndw7TKd2VeZfjOPJw1eV+ONR 115IoXIcGJmvSZ0t/vHLSqU5XmnXs4HbajP8UbexDByU909Ycv1rnIkdo4VOeW/aPbUU lwchY0oPG1a3j4C795IjXLoCnHy/GngTjLS3D77Hinl2JKQSbk2+RmqmD4luRtgy2H6O pNdQ== X-Gm-Message-State: AOAM5321tCXLUVO8FtTCFRiScozGyQuRGuVYl/WjTspEXvk6QTzslDHu XptI15nwY0/V2FY2aWjVFGWaEJD3FS099S37L/o= X-Google-Smtp-Source: ABdhPJxId5LIKbCOZq9Koka7CeWIQsQuKObOFwhAbGuQedZnWhsrzVAiJXAkIkIn/vB1sihCV0RmtfIkfw1eZ2FUXHQ= X-Received: by 2002:a4a:95a1:: with SMTP id o30mr9420435ooi.66.1641644595814; Sat, 08 Jan 2022 04:23:15 -0800 (PST) MIME-Version: 1.0 References: In-Reply-To: From: FMDF Date: Sat, 8 Jan 2022 13:22:50 +0100 Message-ID: Subject: Re: Contiguous Memory Allocator (CMA) To: Sadanand Warrier Cc: kernelnewbies X-BeenThere: kernelnewbies@kernelnewbies.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: Learn about the Linux kernel List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: multipart/mixed; boundary="===============2226308348920793063==" Errors-To: kernelnewbies-bounces@kernelnewbies.org --===============2226308348920793063== Content-Type: multipart/alternative; boundary="000000000000fb261b05d5112ac4" --000000000000fb261b05d5112ac4 Content-Type: text/plain; charset="UTF-8" On Tue, 21 Dec 2021, 15:36 Sadanand Warrier, wrote: > Hello > Is CMA still supported as described in this document > https://lwn.net/Articles/396707/ ? > Yes, it is. Read the following instructions on how to use that feature: "A deep dive into CMA" at https://lwn.net/Articles/486301/ Regards, Fabio M. De Francesco --000000000000fb261b05d5112ac4 Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable
On Tue, 21 Dec 2021, 15:36 Sadanand Warrier, <sadanandwarrier@gmail.com> wrote:
Hello
=C2=A0=C2=A0=C2=A0 Is CMA still supported as described in this document

Yes, it is.

Read the following instru= ctions on how to use that feature:

"A deep dive into CMA" at=C2=A0

Regards,

Fabio M. De Francesco
=

--000000000000fb261b05d5112ac4-- --===============2226308348920793063== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org https://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies --===============2226308348920793063==--