Skip to content

Commit 7caf3e3

Browse files
puranjaymohanJonathan Corbet
authored andcommitted
Filesystems: Documentation: Replace deprecated :c:func: Usage
Replace :c:func: with func() as the previous usage is deprecated. Signed-off-by: Puranjay Mohan <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Jonathan Corbet <[email protected]>
1 parent 1fc0fd6 commit 7caf3e3

File tree

1 file changed

+33
-33
lines changed

1 file changed

+33
-33
lines changed

Documentation/filesystems/journalling.rst

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -10,27 +10,27 @@ Details
1010
The journalling layer is easy to use. You need to first of all create a
1111
journal_t data structure. There are two calls to do this dependent on
1212
how you decide to allocate the physical media on which the journal
13-
resides. The :c:func:`jbd2_journal_init_inode` call is for journals stored in
14-
filesystem inodes, or the :c:func:`jbd2_journal_init_dev` call can be used
13+
resides. The jbd2_journal_init_inode() call is for journals stored in
14+
filesystem inodes, or the jbd2_journal_init_dev() call can be used
1515
for journal stored on a raw device (in a continuous range of blocks). A
1616
journal_t is a typedef for a struct pointer, so when you are finally
17-
finished make sure you call :c:func:`jbd2_journal_destroy` on it to free up
17+
finished make sure you call jbd2_journal_destroy() on it to free up
1818
any used kernel memory.
1919

2020
Once you have got your journal_t object you need to 'mount' or load the
2121
journal file. The journalling layer expects the space for the journal
2222
was already allocated and initialized properly by the userspace tools.
23-
When loading the journal you must call :c:func:`jbd2_journal_load` to process
23+
When loading the journal you must call jbd2_journal_load() to process
2424
journal contents. If the client file system detects the journal contents
2525
does not need to be processed (or even need not have valid contents), it
26-
may call :c:func:`jbd2_journal_wipe` to clear the journal contents before
27-
calling :c:func:`jbd2_journal_load`.
26+
may call jbd2_journal_wipe() to clear the journal contents before
27+
calling jbd2_journal_load().
2828

2929
Note that jbd2_journal_wipe(..,0) calls
30-
:c:func:`jbd2_journal_skip_recovery` for you if it detects any outstanding
31-
transactions in the journal and similarly :c:func:`jbd2_journal_load` will
32-
call :c:func:`jbd2_journal_recover` if necessary. I would advise reading
33-
:c:func:`ext4_load_journal` in fs/ext4/super.c for examples on this stage.
30+
jbd2_journal_skip_recovery() for you if it detects any outstanding
31+
transactions in the journal and similarly jbd2_journal_load() will
32+
call jbd2_journal_recover() if necessary. I would advise reading
33+
ext4_load_journal() in fs/ext4/super.c for examples on this stage.
3434

3535
Now you can go ahead and start modifying the underlying filesystem.
3636
Almost.
@@ -39,57 +39,57 @@ You still need to actually journal your filesystem changes, this is done
3939
by wrapping them into transactions. Additionally you also need to wrap
4040
the modification of each of the buffers with calls to the journal layer,
4141
so it knows what the modifications you are actually making are. To do
42-
this use :c:func:`jbd2_journal_start` which returns a transaction handle.
42+
this use jbd2_journal_start() which returns a transaction handle.
4343

44-
:c:func:`jbd2_journal_start` and its counterpart :c:func:`jbd2_journal_stop`,
44+
jbd2_journal_start() and its counterpart jbd2_journal_stop(),
4545
which indicates the end of a transaction are nestable calls, so you can
4646
reenter a transaction if necessary, but remember you must call
47-
:c:func:`jbd2_journal_stop` the same number of times as
48-
:c:func:`jbd2_journal_start` before the transaction is completed (or more
47+
jbd2_journal_stop() the same number of times as
48+
jbd2_journal_start() before the transaction is completed (or more
4949
accurately leaves the update phase). Ext4/VFS makes use of this feature to
5050
simplify handling of inode dirtying, quota support, etc.
5151

5252
Inside each transaction you need to wrap the modifications to the
5353
individual buffers (blocks). Before you start to modify a buffer you
54-
need to call :c:func:`jbd2_journal_get_create_access()` /
55-
:c:func:`jbd2_journal_get_write_access()` /
56-
:c:func:`jbd2_journal_get_undo_access()` as appropriate, this allows the
54+
need to call jbd2_journal_get_create_access() /
55+
jbd2_journal_get_write_access() /
56+
jbd2_journal_get_undo_access() as appropriate, this allows the
5757
journalling layer to copy the unmodified
5858
data if it needs to. After all the buffer may be part of a previously
5959
uncommitted transaction. At this point you are at last ready to modify a
6060
buffer, and once you are have done so you need to call
61-
:c:func:`jbd2_journal_dirty_metadata`. Or if you've asked for access to a
61+
jbd2_journal_dirty_metadata(). Or if you've asked for access to a
6262
buffer you now know is now longer required to be pushed back on the
63-
device you can call :c:func:`jbd2_journal_forget` in much the same way as you
64-
might have used :c:func:`bforget` in the past.
63+
device you can call jbd2_journal_forget() in much the same way as you
64+
might have used bforget() in the past.
6565

66-
A :c:func:`jbd2_journal_flush` may be called at any time to commit and
66+
A jbd2_journal_flush() may be called at any time to commit and
6767
checkpoint all your transactions.
6868

69-
Then at umount time , in your :c:func:`put_super` you can then call
70-
:c:func:`jbd2_journal_destroy` to clean up your in-core journal object.
69+
Then at umount time , in your put_super() you can then call
70+
jbd2_journal_destroy() to clean up your in-core journal object.
7171

7272
Unfortunately there a couple of ways the journal layer can cause a
7373
deadlock. The first thing to note is that each task can only have a
7474
single outstanding transaction at any one time, remember nothing commits
75-
until the outermost :c:func:`jbd2_journal_stop`. This means you must complete
75+
until the outermost jbd2_journal_stop(). This means you must complete
7676
the transaction at the end of each file/inode/address etc. operation you
7777
perform, so that the journalling system isn't re-entered on another
7878
journal. Since transactions can't be nested/batched across differing
7979
journals, and another filesystem other than yours (say ext4) may be
8080
modified in a later syscall.
8181

82-
The second case to bear in mind is that :c:func:`jbd2_journal_start` can block
82+
The second case to bear in mind is that jbd2_journal_start() can block
8383
if there isn't enough space in the journal for your transaction (based
8484
on the passed nblocks param) - when it blocks it merely(!) needs to wait
8585
for transactions to complete and be committed from other tasks, so
86-
essentially we are waiting for :c:func:`jbd2_journal_stop`. So to avoid
87-
deadlocks you must treat :c:func:`jbd2_journal_start` /
88-
:c:func:`jbd2_journal_stop` as if they were semaphores and include them in
86+
essentially we are waiting for jbd2_journal_stop(). So to avoid
87+
deadlocks you must treat jbd2_journal_start() /
88+
jbd2_journal_stop() as if they were semaphores and include them in
8989
your semaphore ordering rules to prevent
90-
deadlocks. Note that :c:func:`jbd2_journal_extend` has similar blocking
91-
behaviour to :c:func:`jbd2_journal_start` so you can deadlock here just as
92-
easily as on :c:func:`jbd2_journal_start`.
90+
deadlocks. Note that jbd2_journal_extend() has similar blocking
91+
behaviour to jbd2_journal_start() so you can deadlock here just as
92+
easily as on jbd2_journal_start().
9393

9494
Try to reserve the right number of blocks the first time. ;-). This will
9595
be the maximum number of blocks you are going to touch in this
@@ -116,8 +116,8 @@ called after each transaction commit. You can also use
116116
that need processing when the transaction commits.
117117

118118
JBD2 also provides a way to block all transaction updates via
119-
:c:func:`jbd2_journal_lock_updates()` /
120-
:c:func:`jbd2_journal_unlock_updates()`. Ext4 uses this when it wants a
119+
jbd2_journal_lock_updates() /
120+
jbd2_journal_unlock_updates(). Ext4 uses this when it wants a
121121
window with a clean and stable fs for a moment. E.g.
122122

123123
::

0 commit comments

Comments
 (0)