diff options
| author | David Howells <[email protected]> | 2024-03-18 17:15:57 +0000 |
|---|---|---|
| committer | David Howells <[email protected]> | 2024-04-29 15:01:43 +0100 |
| commit | 93bf1cc0096fa1e02244078db3334ca7fa1d88c1 (patch) | |
| tree | 04f622dbcd718b02836646d53de1f5e8afd3fd4e /include/linux | |
| parent | ae678317b95e760607c7b20b97c9cd4ca9ed6e1a (diff) | |
netfs: Make netfs_io_request::subreq_counter an atomic_t
Make the netfs_io_request::subreq_counter, used to generate values for
netfs_io_subrequest::debug_index, into an atomic_t so that it can be called
from the retry thread at the same time as the app thread issuing writes.
Signed-off-by: David Howells <[email protected]>
Reviewed-by: Jeff Layton <[email protected]>
cc: [email protected]
cc: [email protected]
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/netfs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/netfs.h b/include/linux/netfs.h index f36a6d8163d1..ddafc6ebff42 100644 --- a/include/linux/netfs.h +++ b/include/linux/netfs.h @@ -202,7 +202,7 @@ struct netfs_io_request { unsigned int debug_id; unsigned int rsize; /* Maximum read size (0 for none) */ unsigned int wsize; /* Maximum write size (0 for none) */ - unsigned int subreq_counter; /* Next subreq->debug_index */ + atomic_t subreq_counter; /* Next subreq->debug_index */ atomic_t nr_outstanding; /* Number of ops in progress */ atomic_t nr_copy_ops; /* Number of copy-to-cache ops in progress */ size_t submitted; /* Amount submitted for I/O so far */ |