projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eb2b8eb
)
ext4: balloc: use task_pid_nr() helper
author
Ritesh Harjani
<riteshh@linux.ibm.com>
Sun, 10 May 2020 06:24:50 +0000
(11:54 +0530)
committer
Theodore Ts'o
<tytso@mit.edu>
Thu, 4 Jun 2020 03:16:52 +0000
(23:16 -0400)
Use task_pid_nr() function instead of current->pid.
There should be no functionality change in this patch.
Signed-off-by: Ritesh Harjani <riteshh@linux.ibm.com>
Link:
https://lore.kernel.org/r/4b58403e15e9c8deb34a1b93deb3fc9cd153ab84.1589086800.git.riteshh@linux.ibm.com
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
fs/ext4/balloc.c
patch
|
blob
|
history
diff --git
a/fs/ext4/balloc.c
b/fs/ext4/balloc.c
index a32e5f7b53853ffce8c8249c0753ff3ad554d5b1..1ba46d87cdf103a81146358b84765bfa4f6fc311 100644
(file)
--- a/
fs/ext4/balloc.c
+++ b/
fs/ext4/balloc.c
@@
-903,10
+903,11
@@
ext4_fsblk_t ext4_inode_to_goal_block(struct inode *inode)
return bg_start;
if (bg_start + EXT4_BLOCKS_PER_GROUP(inode->i_sb) <= last_block)
- colour = (
current->pid
% 16) *
+ colour = (
task_pid_nr(current)
% 16) *
(EXT4_BLOCKS_PER_GROUP(inode->i_sb) / 16);
else
- colour = (current->pid % 16) * ((last_block - bg_start) / 16);
+ colour = (task_pid_nr(current) % 16) *
+ ((last_block - bg_start) / 16);
return bg_start + colour;
}