summaryrefslogtreecommitdiff
path: root/tools/perf/scripts/python/bin/stackcollapse-record
diff options
context:
space:
mode:
authorLukas Czerner <lczerner@redhat.com>2017-08-03 13:19:13 -0700
committerDarrick J. Wong <darrick.wong@oracle.com>2017-08-04 13:43:36 -0700
commit56bdf855e676f1f2ed7033f288f57dfd315725ba (patch)
tree45f1e00147384ae06000eb3e24a5bee542907706 /tools/perf/scripts/python/bin/stackcollapse-record
parentea7bd56fa309d10a41b1041827a63c0746c47554 (diff)
downloadkernel-56bdf855e676f1f2ed7033f288f57dfd315725ba.tar.gz
xfs: Fix per-inode DAX flag inheritance
According to the commit that implemented per-inode DAX flag: commit 58f88ca2df72 ("xfs: introduce per-inode DAX enablement") the flag is supposed to act as "inherit flag". Currently this only works in the situations where parent directory already has a flag in di_flags set, otherwise inheritance does not work. This is because setting the XFS_DIFLAG2_DAX flag is done in a wrong branch designated for di_flags, not di_flags2. Fix this by moving the code to branch designated for setting di_flags2, which does test for flags in di_flags2. Fixes: 58f88ca2df72 ("xfs: introduce per-inode DAX enablement") Signed-off-by: Lukas Czerner <lczerner@redhat.com> Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com> Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Diffstat (limited to 'tools/perf/scripts/python/bin/stackcollapse-record')
0 files changed, 0 insertions, 0 deletions
021cb710dfad56adcc62'>bpf: Use get_file_rcu() instead of get_file() for task_file iteratorYonghong Song 2020-07-25bpf: Refactor to provide aux info to bpf_iter_init_seq_priv_tYonghong Song 2020-07-25bpf: Refactor bpf_iter_reg to have separate seq_info memberYonghong Song 2020-07-25bpf: Fix pos computation for bpf_iter seq_ops->start()Yonghong Song 2020-07-21bpf: net: Use precomputed btf_id for bpf iteratorsYonghong Song 2020-05-14bpf: Fix bpf_iter's task iterator logicAndrii Nakryiko 2020-05-13bpf: Enable bpf_iter targets registering ctx argument typesYonghong Song 2020-05-13bpf: net: Refactor bpf_iter target registrationYonghong Song 2020-05-09bpf: Add task and task/file iterator targetsYonghong Song