summaryrefslogtreecommitdiffstats
path: root/tapset/dentry.stp
Commit message (Collapse)AuthorAgeFilesLines
* Get d_path's root natively with @castJosh Stone2010-03-121-15/+1
| | | | | | | | | | | As mjw's aborted commit 5ab0b1b6 attempted, we can use a @cast to get the filesystem root for the current task instead of embedded-C. I've left it using the kernel debuginfo instead of headers for now, because all of the neighboring @casts are doing the same. * tapset/dentry.stp (d_path): Use @cast to get the root. (__dentry_get_current_root): Remove, no longer needed. * testsuite/buildok/dentry.stp: Test that dentry's functions all build.
* Revert "Remove unnecessary embedded-c function __dentry_get_current_root()."Mark Wielaard2010-03-101-1/+15
| | | | | This reverts commit 5ab0b1b6c4d3a7f1ea156835a32000669e378886. Wrongly pushed commit.
* Remove unnecessary embedded-c function __dentry_get_current_root().Mark Wielaard2010-03-101-15/+1
| | | | | * tapset/dentry.stp: Removed embedded-c include and function __dentry_get_current_root(). Use task_current and @cast in d_path().
* PR 11338 (partial): Used '@defined()' in task, dentry, and scsi tapsets.David Smith2010-03-091-8/+6
| | | | | | * tapset/task.stp: Used '@defined()' to remove kernel version checks. * tapset/dentry.stp: Ditto. * tapset/scsi.stp: Ditto.
* PR10410: dentry tapset, autofs4 sampleJeff Moyer2009-07-171-0/+117
* tapset/dentry.stp: New d_path, d_name, reverse_path_walk. * .../examples/.../autofs4.*: New autofs demo. Signed-off-by: Frank Ch. Eigler <fche@elastic.org>