Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Page fault tracepoints can be disabled as with ubuntu-artful (see bel… #1034

Merged
merged 2 commits into from
Jan 12, 2018

Conversation

anoop-sysd
Copy link
Contributor

driver/main.c Outdated
static struct tracepoint *tp_page_fault_user;
static struct tracepoint *tp_page_fault_kernel;
static bool g_fault_tracepoint_registered;
static bool g_fault_tracepoint_disabled = false;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Minor: initializing a static to false is not good practice according to kernel coding conventions, if you run your patch against checkpatch.pl in the kernel tree it should complain.

Copy link
Contributor

@gianlucaborello gianlucaborello left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm

driver/main.c Outdated
@@ -1027,6 +1030,12 @@ static long ppm_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
#ifdef CAPTURE_PAGE_FAULTS
ASSERT(g_tracepoint_registered);

if (g_fault_tracepoint_disabled) {
ret = 0;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We need to return an error here and propagate it to the user. If not, they could run sysdig --page-faults and silently fail.

Return error instead of failing silently when page faults are disabled.
@bertocci bertocci merged commit 7e09185 into dev Jan 12, 2018
@bertocci bertocci deleted the pg_fault_tp branch January 12, 2018 01:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants