Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 158124
b: refs/heads/master
c: 12aac19
h: refs/heads/master
v: v3
  • Loading branch information
Li Zefan authored and Ingo Molnar committed Aug 17, 2009
1 parent dc98ae9 commit c186b7a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 31 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: 8109e1de8502421f9efff1359f2779b1adcc0724
refs/heads/master: 12aac19d4ba41019a1748f49d3c5d259b1bfb26d
37 changes: 7 additions & 30 deletions trunk/kernel/lockdep_proc.c
Original file line number Diff line number Diff line change
Expand Up @@ -113,26 +113,6 @@ static const struct file_operations proc_lockdep_operations = {
};

#ifdef CONFIG_PROVE_LOCKING
static void *lc_next(struct seq_file *m, void *v, loff_t *pos)
{
struct lock_chain *chain;

(*pos)++;

if (v == SEQ_START_TOKEN)
chain = m->private;
else {
chain = v;

if (*pos - 1 < nr_lock_chains)
chain = lock_chains + (*pos - 1);
else
chain = NULL;
}

return chain;
}

static void *lc_start(struct seq_file *m, loff_t *pos)
{
if (*pos == 0)
Expand All @@ -144,6 +124,12 @@ static void *lc_start(struct seq_file *m, loff_t *pos)
return NULL;
}

static void *lc_next(struct seq_file *m, void *v, loff_t *pos)
{
(*pos)++;
return lc_start(m, pos);
}

static void lc_stop(struct seq_file *m, void *v)
{
}
Expand Down Expand Up @@ -184,16 +170,7 @@ static const struct seq_operations lockdep_chains_ops = {

static int lockdep_chains_open(struct inode *inode, struct file *file)
{
int res = seq_open(file, &lockdep_chains_ops);
if (!res) {
struct seq_file *m = file->private_data;

if (nr_lock_chains)
m->private = lock_chains;
else
m->private = NULL;
}
return res;
return seq_open(file, &lockdep_chains_ops);
}

static const struct file_operations proc_lockdep_chains_operations = {
Expand Down

0 comments on commit c186b7a

Please sign in to comment.