Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 94207
b: refs/heads/master
c: e46b272
h: refs/heads/master
i:
  94205: e6c4f63
  94203: 1a83337
  94199: aa54018
  94191: e096daf
  94175: 0dd4ee0
  94143: 6eaed97
  94079: 1cfee4f
  93951: 3d9b405
  93695: 9ee7fd4
  93183: d5d762b
  92159: 1c9e807
  90111: db57e95
v: v3
  • Loading branch information
Harvey Harrison authored and Linus Torvalds committed Apr 28, 2008
1 parent 2c2c104 commit c5beeab
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 26 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: 9a7b2b0f36c40beeb252cb5ceff36bb295e88d97
refs/heads/master: e46b272b6608783ed7aa7b0594871550ce20b849
22 changes: 11 additions & 11 deletions trunk/drivers/md/dm-uevent.c
Original file line number Diff line number Diff line change
Expand Up @@ -78,40 +78,40 @@ static struct dm_uevent *dm_build_path_uevent(struct mapped_device *md,

event = dm_uevent_alloc(md);
if (!event) {
DMERR("%s: dm_uevent_alloc() failed", __FUNCTION__);
DMERR("%s: dm_uevent_alloc() failed", __func__);
goto err_nomem;
}

event->action = action;

if (add_uevent_var(&event->ku_env, "DM_TARGET=%s", ti->type->name)) {
DMERR("%s: add_uevent_var() for DM_TARGET failed",
__FUNCTION__);
__func__);
goto err_add;
}

if (add_uevent_var(&event->ku_env, "DM_ACTION=%s", dm_action)) {
DMERR("%s: add_uevent_var() for DM_ACTION failed",
__FUNCTION__);
__func__);
goto err_add;
}

if (add_uevent_var(&event->ku_env, "DM_SEQNUM=%u",
dm_next_uevent_seq(md))) {
DMERR("%s: add_uevent_var() for DM_SEQNUM failed",
__FUNCTION__);
__func__);
goto err_add;
}

if (add_uevent_var(&event->ku_env, "DM_PATH=%s", path)) {
DMERR("%s: add_uevent_var() for DM_PATH failed", __FUNCTION__);
DMERR("%s: add_uevent_var() for DM_PATH failed", __func__);
goto err_add;
}

if (add_uevent_var(&event->ku_env, "DM_NR_VALID_PATHS=%d",
nr_valid_paths)) {
DMERR("%s: add_uevent_var() for DM_NR_VALID_PATHS failed",
__FUNCTION__);
__func__);
goto err_add;
}

Expand Down Expand Up @@ -146,25 +146,25 @@ void dm_send_uevents(struct list_head *events, struct kobject *kobj)
if (dm_copy_name_and_uuid(event->md, event->name,
event->uuid)) {
DMERR("%s: dm_copy_name_and_uuid() failed",
__FUNCTION__);
__func__);
goto uevent_free;
}

if (add_uevent_var(&event->ku_env, "DM_NAME=%s", event->name)) {
DMERR("%s: add_uevent_var() for DM_NAME failed",
__FUNCTION__);
__func__);
goto uevent_free;
}

if (add_uevent_var(&event->ku_env, "DM_UUID=%s", event->uuid)) {
DMERR("%s: add_uevent_var() for DM_UUID failed",
__FUNCTION__);
__func__);
goto uevent_free;
}

r = kobject_uevent_env(kobj, event->action, event->ku_env.envp);
if (r)
DMERR("%s: kobject_uevent_env failed", __FUNCTION__);
DMERR("%s: kobject_uevent_env failed", __func__);
uevent_free:
dm_uevent_free(event);
}
Expand All @@ -187,7 +187,7 @@ void dm_path_uevent(enum dm_uevent_type event_type, struct dm_target *ti,
struct dm_uevent *event;

if (event_type >= ARRAY_SIZE(_dm_uevent_type_names)) {
DMERR("%s: Invalid event_type %d", __FUNCTION__, event_type);
DMERR("%s: Invalid event_type %d", __func__, event_type);
goto out;
}

Expand Down
28 changes: 14 additions & 14 deletions trunk/drivers/md/raid5.c
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ static void ops_run_io(struct stripe_head *sh)

bi->bi_bdev = rdev->bdev;
pr_debug("%s: for %llu schedule op %ld on disc %d\n",
__FUNCTION__, (unsigned long long)sh->sector,
__func__, (unsigned long long)sh->sector,
bi->bi_rw, i);
atomic_inc(&sh->count);
bi->bi_sector = sh->sector + rdev->data_offset;
Expand Down Expand Up @@ -520,7 +520,7 @@ static void ops_complete_biofill(void *stripe_head_ref)
raid5_conf_t *conf = sh->raid_conf;
int i;

pr_debug("%s: stripe %llu\n", __FUNCTION__,
pr_debug("%s: stripe %llu\n", __func__,
(unsigned long long)sh->sector);

/* clear completed biofills */
Expand Down Expand Up @@ -569,7 +569,7 @@ static void ops_run_biofill(struct stripe_head *sh)
raid5_conf_t *conf = sh->raid_conf;
int i;

pr_debug("%s: stripe %llu\n", __FUNCTION__,
pr_debug("%s: stripe %llu\n", __func__,
(unsigned long long)sh->sector);

for (i = sh->disks; i--; ) {
Expand Down Expand Up @@ -600,7 +600,7 @@ static void ops_complete_compute5(void *stripe_head_ref)
int target = sh->ops.target;
struct r5dev *tgt = &sh->dev[target];

pr_debug("%s: stripe %llu\n", __FUNCTION__,
pr_debug("%s: stripe %llu\n", __func__,
(unsigned long long)sh->sector);

set_bit(R5_UPTODATE, &tgt->flags);
Expand All @@ -625,7 +625,7 @@ ops_run_compute5(struct stripe_head *sh, unsigned long pending)
int i;

pr_debug("%s: stripe %llu block: %d\n",
__FUNCTION__, (unsigned long long)sh->sector, target);
__func__, (unsigned long long)sh->sector, target);
BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));

for (i = disks; i--; )
Expand Down Expand Up @@ -653,7 +653,7 @@ static void ops_complete_prexor(void *stripe_head_ref)
{
struct stripe_head *sh = stripe_head_ref;

pr_debug("%s: stripe %llu\n", __FUNCTION__,
pr_debug("%s: stripe %llu\n", __func__,
(unsigned long long)sh->sector);

set_bit(STRIPE_OP_PREXOR, &sh->ops.complete);
Expand All @@ -670,7 +670,7 @@ ops_run_prexor(struct stripe_head *sh, struct dma_async_tx_descriptor *tx)
/* existing parity data subtracted */
struct page *xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;

pr_debug("%s: stripe %llu\n", __FUNCTION__,
pr_debug("%s: stripe %llu\n", __func__,
(unsigned long long)sh->sector);

for (i = disks; i--; ) {
Expand Down Expand Up @@ -699,7 +699,7 @@ ops_run_biodrain(struct stripe_head *sh, struct dma_async_tx_descriptor *tx,
*/
int prexor = test_bit(STRIPE_OP_PREXOR, &pending);

pr_debug("%s: stripe %llu\n", __FUNCTION__,
pr_debug("%s: stripe %llu\n", __func__,
(unsigned long long)sh->sector);

for (i = disks; i--; ) {
Expand Down Expand Up @@ -744,7 +744,7 @@ static void ops_complete_postxor(void *stripe_head_ref)
{
struct stripe_head *sh = stripe_head_ref;

pr_debug("%s: stripe %llu\n", __FUNCTION__,
pr_debug("%s: stripe %llu\n", __func__,
(unsigned long long)sh->sector);

set_bit(STRIPE_OP_POSTXOR, &sh->ops.complete);
Expand All @@ -757,7 +757,7 @@ static void ops_complete_write(void *stripe_head_ref)
struct stripe_head *sh = stripe_head_ref;
int disks = sh->disks, i, pd_idx = sh->pd_idx;

pr_debug("%s: stripe %llu\n", __FUNCTION__,
pr_debug("%s: stripe %llu\n", __func__,
(unsigned long long)sh->sector);

for (i = disks; i--; ) {
Expand Down Expand Up @@ -787,7 +787,7 @@ ops_run_postxor(struct stripe_head *sh, struct dma_async_tx_descriptor *tx,
unsigned long flags;
dma_async_tx_callback callback;

pr_debug("%s: stripe %llu\n", __FUNCTION__,
pr_debug("%s: stripe %llu\n", __func__,
(unsigned long long)sh->sector);

/* check if prexor is active which means only process blocks
Expand Down Expand Up @@ -837,7 +837,7 @@ static void ops_complete_check(void *stripe_head_ref)
struct stripe_head *sh = stripe_head_ref;
int pd_idx = sh->pd_idx;

pr_debug("%s: stripe %llu\n", __FUNCTION__,
pr_debug("%s: stripe %llu\n", __func__,
(unsigned long long)sh->sector);

if (test_and_clear_bit(STRIPE_OP_MOD_DMA_CHECK, &sh->ops.pending) &&
Expand All @@ -859,7 +859,7 @@ static void ops_run_check(struct stripe_head *sh)
int count = 0, pd_idx = sh->pd_idx, i;
struct page *xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;

pr_debug("%s: stripe %llu\n", __FUNCTION__,
pr_debug("%s: stripe %llu\n", __func__,
(unsigned long long)sh->sector);

for (i = disks; i--; ) {
Expand Down Expand Up @@ -1759,7 +1759,7 @@ handle_write_operations5(struct stripe_head *sh, int rcw, int expand)
locked++;

pr_debug("%s: stripe %llu locked: %d pending: %lx\n",
__FUNCTION__, (unsigned long long)sh->sector,
__func__, (unsigned long long)sh->sector,
locked, sh->ops.pending);

return locked;
Expand Down

0 comments on commit c5beeab

Please sign in to comment.