Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 201881
b: refs/heads/master
c: cdcd90f
h: refs/heads/master
i:
  201879: 894ceb5
v: v3
  • Loading branch information
Arnd Bergmann authored and James Morris committed Aug 2, 2010
1 parent fc6d8e0 commit 70c357e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7e2deb7ce8f662bce877dbfd3b0053e9559c25a3
refs/heads/master: cdcd90f9e450d4edb5fab0490119f9540874e882
9 changes: 6 additions & 3 deletions trunk/security/integrity/ima/ima_fs.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ static ssize_t ima_show_htable_violations(struct file *filp,
}

static const struct file_operations ima_htable_violations_ops = {
.read = ima_show_htable_violations
.read = ima_show_htable_violations,
.llseek = generic_file_llseek,
};

static ssize_t ima_show_measurements_count(struct file *filp,
Expand All @@ -57,7 +58,8 @@ static ssize_t ima_show_measurements_count(struct file *filp,
}

static const struct file_operations ima_measurements_count_ops = {
.read = ima_show_measurements_count
.read = ima_show_measurements_count,
.llseek = generic_file_llseek,
};

/* returns pointer to hlist_node */
Expand Down Expand Up @@ -319,7 +321,8 @@ static int ima_release_policy(struct inode *inode, struct file *file)
static const struct file_operations ima_measure_policy_ops = {
.open = ima_open_policy,
.write = ima_write_policy,
.release = ima_release_policy
.release = ima_release_policy,
.llseek = generic_file_llseek,
};

int __init ima_fs_init(void)
Expand Down

0 comments on commit 70c357e

Please sign in to comment.