Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dlm: choose better identifiers

sparc32:

fs/dlm/config.c:397: error: expected identifier or '(' before '{' token
fs/dlm/config.c: In function 'drop_node':
fs/dlm/config.c:589: warning: initialization from incompatible pointer type
fs/dlm/config.c:589: warning: initialization from incompatible pointer type
fs/dlm/config.c: In function 'release_node':
fs/dlm/config.c:601: warning: initialization from incompatible pointer type
fs/dlm/config.c:601: warning: initialization from incompatible pointer type
fs/dlm/config.c: In function 'show_node':
fs/dlm/config.c:717: warning: initialization from incompatible pointer type
fs/dlm/config.c:717: warning: initialization from incompatible pointer type
fs/dlm/config.c: In function 'store_node':
fs/dlm/config.c:726: warning: initialization from incompatible pointer type
fs/dlm/config.c:726: warning: initialization from incompatible pointer type

Cc: Christine Caulfield <ccaulfie@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: David Teigland <teigland@redhat.com>

authored by

Andrew Morton and committed by
David Teigland
27eccf46 f9f2ed48

+22 -22
+22 -22
fs/dlm/config.c
··· 380 380 .ct_owner = THIS_MODULE, 381 381 }; 382 382 383 - static struct dlm_cluster *to_cluster(struct config_item *i) 383 + static struct dlm_cluster *config_item_to_cluster(struct config_item *i) 384 384 { 385 385 return i ? container_of(to_config_group(i), struct dlm_cluster, group) : 386 386 NULL; 387 387 } 388 388 389 - static struct dlm_space *to_space(struct config_item *i) 389 + static struct dlm_space *config_item_to_space(struct config_item *i) 390 390 { 391 391 return i ? container_of(to_config_group(i), struct dlm_space, group) : 392 392 NULL; 393 393 } 394 394 395 - static struct dlm_comm *to_comm(struct config_item *i) 395 + static struct dlm_comm *config_item_to_comm(struct config_item *i) 396 396 { 397 397 return i ? container_of(i, struct dlm_comm, item) : NULL; 398 398 } 399 399 400 - static struct dlm_node *to_node(struct config_item *i) 400 + static struct dlm_node *config_item_to_node(struct config_item *i) 401 401 { 402 402 return i ? container_of(i, struct dlm_node, item) : NULL; 403 403 } ··· 453 453 454 454 static void drop_cluster(struct config_group *g, struct config_item *i) 455 455 { 456 - struct dlm_cluster *cl = to_cluster(i); 456 + struct dlm_cluster *cl = config_item_to_cluster(i); 457 457 struct config_item *tmp; 458 458 int j; 459 459 ··· 471 471 472 472 static void release_cluster(struct config_item *i) 473 473 { 474 - struct dlm_cluster *cl = to_cluster(i); 474 + struct dlm_cluster *cl = config_item_to_cluster(i); 475 475 kfree(cl->group.default_groups); 476 476 kfree(cl); 477 477 } ··· 510 510 511 511 static void drop_space(struct config_group *g, struct config_item *i) 512 512 { 513 - struct dlm_space *sp = to_space(i); 513 + struct dlm_space *sp = config_item_to_space(i); 514 514 struct config_item *tmp; 515 515 int j; 516 516 ··· 527 527 528 528 static void release_space(struct config_item *i) 529 529 { 530 - struct dlm_space *sp = to_space(i); 530 + struct dlm_space *sp = config_item_to_space(i); 531 531 kfree(sp->group.default_groups); 532 532 kfree(sp); 533 533 } ··· 549 549 550 550 static void drop_comm(struct config_group *g, struct config_item *i) 551 551 { 552 - struct dlm_comm *cm = to_comm(i); 552 + struct dlm_comm *cm = config_item_to_comm(i); 553 553 if (local_comm == cm) 554 554 local_comm = NULL; 555 555 dlm_lowcomms_close(cm->nodeid); ··· 560 560 561 561 static void release_comm(struct config_item *i) 562 562 { 563 - struct dlm_comm *cm = to_comm(i); 563 + struct dlm_comm *cm = config_item_to_comm(i); 564 564 kfree(cm); 565 565 } 566 566 567 567 static struct config_item *make_node(struct config_group *g, const char *name) 568 568 { 569 - struct dlm_space *sp = to_space(g->cg_item.ci_parent); 569 + struct dlm_space *sp = config_item_to_space(g->cg_item.ci_parent); 570 570 struct dlm_node *nd; 571 571 572 572 nd = kzalloc(sizeof(struct dlm_node), GFP_KERNEL); ··· 588 588 589 589 static void drop_node(struct config_group *g, struct config_item *i) 590 590 { 591 - struct dlm_space *sp = to_space(g->cg_item.ci_parent); 592 - struct dlm_node *nd = to_node(i); 591 + struct dlm_space *sp = config_item_to_space(g->cg_item.ci_parent); 592 + struct dlm_node *nd = config_item_to_node(i); 593 593 594 594 mutex_lock(&sp->members_lock); 595 595 list_del(&nd->list); ··· 601 601 602 602 static void release_node(struct config_item *i) 603 603 { 604 - struct dlm_node *nd = to_node(i); 604 + struct dlm_node *nd = config_item_to_node(i); 605 605 kfree(nd); 606 606 } 607 607 ··· 635 635 static ssize_t show_cluster(struct config_item *i, struct configfs_attribute *a, 636 636 char *buf) 637 637 { 638 - struct dlm_cluster *cl = to_cluster(i); 638 + struct dlm_cluster *cl = config_item_to_cluster(i); 639 639 struct cluster_attribute *cla = 640 640 container_of(a, struct cluster_attribute, attr); 641 641 return cla->show ? cla->show(cl, buf) : 0; ··· 645 645 struct configfs_attribute *a, 646 646 const char *buf, size_t len) 647 647 { 648 - struct dlm_cluster *cl = to_cluster(i); 648 + struct dlm_cluster *cl = config_item_to_cluster(i); 649 649 struct cluster_attribute *cla = 650 650 container_of(a, struct cluster_attribute, attr); 651 651 return cla->store ? cla->store(cl, buf, len) : -EINVAL; ··· 654 654 static ssize_t show_comm(struct config_item *i, struct configfs_attribute *a, 655 655 char *buf) 656 656 { 657 - struct dlm_comm *cm = to_comm(i); 657 + struct dlm_comm *cm = config_item_to_comm(i); 658 658 struct comm_attribute *cma = 659 659 container_of(a, struct comm_attribute, attr); 660 660 return cma->show ? cma->show(cm, buf) : 0; ··· 663 663 static ssize_t store_comm(struct config_item *i, struct configfs_attribute *a, 664 664 const char *buf, size_t len) 665 665 { 666 - struct dlm_comm *cm = to_comm(i); 666 + struct dlm_comm *cm = config_item_to_comm(i); 667 667 struct comm_attribute *cma = 668 668 container_of(a, struct comm_attribute, attr); 669 669 return cma->store ? cma->store(cm, buf, len) : -EINVAL; ··· 717 717 static ssize_t show_node(struct config_item *i, struct configfs_attribute *a, 718 718 char *buf) 719 719 { 720 - struct dlm_node *nd = to_node(i); 720 + struct dlm_node *nd = config_item_to_node(i); 721 721 struct node_attribute *nda = 722 722 container_of(a, struct node_attribute, attr); 723 723 return nda->show ? nda->show(nd, buf) : 0; ··· 726 726 static ssize_t store_node(struct config_item *i, struct configfs_attribute *a, 727 727 const char *buf, size_t len) 728 728 { 729 - struct dlm_node *nd = to_node(i); 729 + struct dlm_node *nd = config_item_to_node(i); 730 730 struct node_attribute *nda = 731 731 container_of(a, struct node_attribute, attr); 732 732 return nda->store ? nda->store(nd, buf, len) : -EINVAL; ··· 771 771 i = config_group_find_item(space_list, name); 772 772 mutex_unlock(&space_list->cg_subsys->su_mutex); 773 773 774 - return to_space(i); 774 + return config_item_to_space(i); 775 775 } 776 776 777 777 static void put_space(struct dlm_space *sp) ··· 818 818 mutex_lock(&clusters_root.subsys.su_mutex); 819 819 820 820 list_for_each_entry(i, &comm_list->cg_children, ci_entry) { 821 - cm = to_comm(i); 821 + cm = config_item_to_comm(i); 822 822 823 823 if (nodeid) { 824 824 if (cm->nodeid != nodeid)