From 978a3150018dac8d3b04dc216cb6a51c39c52f97 Mon Sep 17 00:00:00 2001 From: hanyujie2002 Date: Thu, 18 Jan 2024 17:38:31 +0800 Subject: [PATCH] fix typo: Update filesystems_part2.rst --- Documentation/teaching/labs/filesystems_part2.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/teaching/labs/filesystems_part2.rst b/Documentation/teaching/labs/filesystems_part2.rst index 18a221bfcf4b89..9217cdbe68bdd7 100644 --- a/Documentation/teaching/labs/filesystems_part2.rst +++ b/Documentation/teaching/labs/filesystems_part2.rst @@ -432,7 +432,7 @@ This function is called by the ``mkdir`` system call. Such a function performs t Creating a link --------------- -The link creation function (hard link) is indicated by the ``symlink`` field in the ``inode_operations`` structure. +The link creation function (hard link) is indicated by the ``link`` field in the ``inode_operations`` structure. In the minix case, the function is :c:func:`minix_link`. This function is called by the ``link`` system call. Such a function performs the following operations: