Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 205217
b: refs/heads/master
c: b97181f
h: refs/heads/master
i:
  205215: 861eca0
v: v3
  • Loading branch information
Paul E. McKenney committed Jun 14, 2010
1 parent d2f0ad4 commit 2eecc9a
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 10 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: 9161e329ef004343250e3db17b8d12c252af88fc
refs/heads/master: b97181f24212f4c29197890ce1b2b9100bcc184d
3 changes: 0 additions & 3 deletions trunk/fs/file.c
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,6 @@ static struct fdtable * alloc_fdtable(unsigned int nr)
fdt->open_fds = (fd_set *)data;
data += nr / BITS_PER_BYTE;
fdt->close_on_exec = (fd_set *)data;
INIT_RCU_HEAD(&fdt->rcu);
fdt->next = NULL;

return fdt;
Expand Down Expand Up @@ -312,7 +311,6 @@ struct files_struct *dup_fd(struct files_struct *oldf, int *errorp)
new_fdt->close_on_exec = (fd_set *)&newf->close_on_exec_init;
new_fdt->open_fds = (fd_set *)&newf->open_fds_init;
new_fdt->fd = &newf->fd_array[0];
INIT_RCU_HEAD(&new_fdt->rcu);
new_fdt->next = NULL;

spin_lock(&oldf->file_lock);
Expand Down Expand Up @@ -430,7 +428,6 @@ struct files_struct init_files = {
.fd = &init_files.fd_array[0],
.close_on_exec = (fd_set *)&init_files.close_on_exec_init,
.open_fds = (fd_set *)&init_files.open_fds_init,
.rcu = RCU_HEAD_INIT,
},
.file_lock = __SPIN_LOCK_UNLOCKED(init_task.file_lock),
};
Expand Down
31 changes: 26 additions & 5 deletions trunk/fs/fs-writeback.c
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,33 @@ static inline bool bdi_work_on_stack(struct bdi_work *work)
return test_bit(WS_ONSTACK_B, &work->state);
}

static inline void bdi_work_init(struct bdi_work *work,
struct wb_writeback_args *args)
static inline void __bdi_work_init(struct bdi_work *work,
struct wb_writeback_args *args,
int on_stack)
{
INIT_RCU_HEAD(&work->rcu_head);
work->args = *args;
work->state = WS_USED;
if (on_stack) {
work->state |= WS_ONSTACK;
init_rcu_head_on_stack(&work->rcu_head);
}
}

static inline void bdi_work_init(struct bdi_work *work,
struct wb_writeback_args *args)
{
__bdi_work_init(work, args, false);
}

static inline void bdi_work_init_on_stack(struct bdi_work *work,
struct wb_writeback_args *args)
{
__bdi_work_init(work, args, true);
}

static inline void bdi_destroy_work_on_stack(struct bdi_work *work)
{
destroy_rcu_head_on_stack(&work->rcu_head);
}

/**
Expand Down Expand Up @@ -233,11 +254,11 @@ static void bdi_sync_writeback(struct backing_dev_info *bdi,
};
struct bdi_work work;

bdi_work_init(&work, &args);
work.state |= WS_ONSTACK;
bdi_work_init_on_stack(&work, &args);

bdi_queue_work(bdi, &work);
bdi_wait_on_work_clear(&work);
bdi_destroy_work_on_stack(&work);
}

/**
Expand Down
1 change: 0 additions & 1 deletion trunk/fs/partitions/check.c
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,6 @@ struct hd_struct *add_partition(struct gendisk *disk, int partno,
}

/* everything is up and running, commence */
INIT_RCU_HEAD(&p->rcu_head);
rcu_assign_pointer(ptbl->part[partno], p);

/* suppress uevent if the disk supresses it */
Expand Down

0 comments on commit 2eecc9a

Please sign in to comment.