diff options
| author | Josef Bacik <[email protected]> | 2022-10-24 16:16:14 -0400 |
|---|---|---|
| committer | David Sterba <[email protected]> | 2022-12-05 18:00:44 +0100 |
| commit | 911bd75aca7390ca9e39191450829b09772c5a77 (patch) | |
| tree | 4116a3a22768a7742dc9938fb27db4652e8a5198 /tools/perf/scripts/python | |
| parent | 45c40c8f9541f336c7857f09ea843fc8fa980b65 (diff) | |
btrfs: remove unused function prototypes
I wrote the following coccinelle script to find function declarations
that didn't have the corresponding code for them
@funcproto@
identifier func;
type T;
position p0;
@@
T func@p0(...);
@funccode@
identifier funcproto.func;
position p1;
@@
func@p1(...) { ... }
@script:python depends on !funccode@
p0 << funcproto.p0;
@@
print("Proto with no function at %s:%s" % (p0[0].file, p0[0].line))
and ran it against btrfs, which identified the 4 function prototypes
I've removed in this patch.
Signed-off-by: Josef Bacik <[email protected]>
Reviewed-by: David Sterba <[email protected]>
Signed-off-by: David Sterba <[email protected]>
Diffstat (limited to 'tools/perf/scripts/python')
0 files changed, 0 insertions, 0 deletions