Skip to content

Commit

Permalink
doc:it_IT: translation alignment
Browse files Browse the repository at this point in the history
Align Italian translation after the following changes in Documentation

bba757d coding-style.rst: Generic alloc functions do not need OOM logging
d8e8bcc docs: doc-guide: remove the extension from .rst files

Signed-off-by: Federico Vaga <[email protected]>
Signed-off-by: Jonathan Corbet <[email protected]>
  • Loading branch information
FedericoVaga authored and Jonathan Corbet committed Apr 30, 2019
1 parent fbf7c7e commit 678f784
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 4 deletions.
13 changes: 13 additions & 0 deletions Documentation/translations/it_IT/core-api/memory-allocation.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
.. include:: ../disclaimer-ita.rst

:Original: :ref:`Documentation/core-api/memory-allocation.rst <memory_allocation>`

.. _it_memory_allocation:

================================
Guida all'allocazione di memoria
================================

.. warning::

TODO ancora da tradurre
6 changes: 3 additions & 3 deletions Documentation/translations/it_IT/doc-guide/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ Come scrivere la documentazione del kernel
.. toctree::
:maxdepth: 1

sphinx.rst
kernel-doc.rst
parse-headers.rst
sphinx
kernel-doc
parse-headers

.. only:: subproject and html

Expand Down
8 changes: 7 additions & 1 deletion Documentation/translations/it_IT/process/coding-style.rst
Original file line number Diff line number Diff line change
Expand Up @@ -859,7 +859,8 @@ racchiusa in #ifdef, potete usare printk(KERN_DEBUG ...).

Il kernel fornisce i seguenti assegnatori ad uso generico:
kmalloc(), kzalloc(), kmalloc_array(), kcalloc(), vmalloc(), e vzalloc().
Per maggiori informazioni, consultate la documentazione dell'API.
Per maggiori informazioni, consultate la documentazione dell'API:
:ref:`Documentation/translations/it_IT/core-api/memory-allocation.rst <it_memory_allocation>`

Il modo preferito per passare la dimensione di una struttura è il seguente:

Expand Down Expand Up @@ -890,6 +891,11 @@ Il modo preferito per assegnare un vettore a zero è il seguente:
Entrambe verificano la condizione di overflow per la dimensione
d'assegnamento n * sizeof(...), se accade ritorneranno NULL.

Questi allocatori generici producono uno *stack dump* in caso di fallimento
a meno che non venga esplicitamente specificato __GFP_NOWARN. Quindi, nella
maggior parte dei casi, è inutile stampare messaggi aggiuntivi quando uno di
questi allocatori ritornano un puntatore NULL.

15) Il morbo inline
-------------------

Expand Down

0 comments on commit 678f784

Please sign in to comment.