diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2014-04-02 23:53:45 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-04-02 23:53:45 -0400 |
commit | cd6362befe4cc7bf589a5236d2a780af2d47bcc9 (patch) | |
tree | 3bd4e13ec3f92a00dc4f6c3d65e820b54dbfe46e /drivers/net/ethernet/qlogic/qlcnic/qlcnic_sysfs.c | |
parent | 0f1b1e6d73cb989ce2c071edc57deade3b084dfe (diff) | |
parent | b1586f099ba897542ece36e8a23c1a62907261ef (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next
Pull networking updates from David Miller:
"Here is my initial pull request for the networking subsystem during
this merge window:
1) Support for ESN in AH (RFC 4302) from Fan Du.
2) Add full kernel doc for ethtool command structures, from Ben
Hutchings.
3) Add BCM7xxx PHY driver, from Florian Fainelli.
4) Export computed TCP rate information in netlink socket dumps, from
Eric Dumazet.
5) Allow IPSEC SA to be dumped partially using a filter, from Nicolas
Dichtel.
6) Convert many drivers to pci_enable_msix_range(), from Alexander
Gordeev.
7) Record SKB timestamps more efficiently, from Eric Dumazet.
8) Switch to microsecond resolution for TCP round trip times, also
from Eric Dumazet.
9) Clean up and fix 6lowpan fragmentation handling by making use of
the existing inet_frag api for it's implementation.
10) Add TX grant mapping to xen-netback driver, from Zoltan Kiss.
11) Auto size SKB lengths when composing netlink messages based upon
past message sizes used, from Eric Dumazet.
12) qdisc dumps can take a long time, add a cond_resched(), From Eric
Dumazet.
13) Sanitize netpoll core and drivers wrt. SKB handling semantics.
Get rid of never-used-in-tree netpoll RX handling. From Eric W
Biederman.
14) Support inter-address-family and namespace changing in VTI tunnel
driver(s). From Steffen Klassert.
15) Add Altera TSE driver, from Vince Bridgers.
16) Optimizing csum_replace2() so that it doesn't adjust the checksum
by checksumming the entire header, from Eric Dumazet.
17) Expand BPF internal implementation for faster interpreting, more
direct translations into JIT'd code, and much cleaner uses of BPF
filtering in non-socket ocntexts. From Daniel Borkmann and Alexei
Starovoitov"
* git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next: (1976 commits)
netpoll: Use skb_irq_freeable to make zap_completion_queue safe.
net: Add a test to see if a skb is freeable in irq context
qlcnic: Fix build failure due to undefined reference to `vxlan_get_rx_port'
net: ptp: move PTP classifier in its own file
net: sxgbe: make "core_ops" static
net: sxgbe: fix logical vs bitwise operation
net: sxgbe: sxgbe_mdio_register() frees the bus
Call efx_set_channels() before efx->type->dimension_resources()
xen-netback: disable rogue vif in kthread context
net/mlx4: Set proper build dependancy with vxlan
be2net: fix build dependency on VxLAN
mac802154: make csma/cca parameters per-wpan
mac802154: allow only one WPAN to be up at any given time
net: filter: minor: fix kdoc in __sk_run_filter
netlink: don't compare the nul-termination in nla_strcmp
can: c_can: Avoid led toggling for every packet.
can: c_can: Simplify TX interrupt cleanup
can: c_can: Store dlc private
can: c_can: Reduce register access
can: c_can: Make the code readable
...
Diffstat (limited to 'drivers/net/ethernet/qlogic/qlcnic/qlcnic_sysfs.c')
-rw-r--r-- | drivers/net/ethernet/qlogic/qlcnic/qlcnic_sysfs.c | 102 |
1 files changed, 37 insertions, 65 deletions
diff --git a/drivers/net/ethernet/qlogic/qlcnic/qlcnic_sysfs.c b/drivers/net/ethernet/qlogic/qlcnic/qlcnic_sysfs.c index 3d64113a35af..448d156c3d08 100644 --- a/drivers/net/ethernet/qlogic/qlcnic/qlcnic_sysfs.c +++ b/drivers/net/ethernet/qlogic/qlcnic/qlcnic_sysfs.c | |||
@@ -350,33 +350,15 @@ static ssize_t qlcnic_sysfs_write_mem(struct file *filp, struct kobject *kobj, | |||
350 | return size; | 350 | return size; |
351 | } | 351 | } |
352 | 352 | ||
353 | static u32 qlcnic_get_pci_func_count(struct qlcnic_adapter *adapter) | ||
354 | { | ||
355 | struct qlcnic_hardware_context *ahw = adapter->ahw; | ||
356 | u32 count = 0; | ||
357 | |||
358 | if (!(adapter->flags & QLCNIC_ESWITCH_ENABLED)) | ||
359 | return ahw->total_nic_func; | ||
360 | |||
361 | if (ahw->total_pci_func <= QLC_DEFAULT_VNIC_COUNT) | ||
362 | count = QLC_DEFAULT_VNIC_COUNT; | ||
363 | else | ||
364 | count = ahw->max_vnic_func; | ||
365 | |||
366 | return count; | ||
367 | } | ||
368 | |||
369 | int qlcnic_is_valid_nic_func(struct qlcnic_adapter *adapter, u8 pci_func) | 353 | int qlcnic_is_valid_nic_func(struct qlcnic_adapter *adapter, u8 pci_func) |
370 | { | 354 | { |
371 | u32 pci_func_count = qlcnic_get_pci_func_count(adapter); | ||
372 | int i; | 355 | int i; |
373 | 356 | ||
374 | for (i = 0; i < pci_func_count; i++) { | 357 | for (i = 0; i < adapter->ahw->max_vnic_func; i++) { |
375 | if (adapter->npars[i].pci_func == pci_func) | 358 | if (adapter->npars[i].pci_func == pci_func) |
376 | return i; | 359 | return i; |
377 | } | 360 | } |
378 | 361 | return -EINVAL; | |
379 | return -1; | ||
380 | } | 362 | } |
381 | 363 | ||
382 | static int validate_pm_config(struct qlcnic_adapter *adapter, | 364 | static int validate_pm_config(struct qlcnic_adapter *adapter, |
@@ -464,23 +446,21 @@ static ssize_t qlcnic_sysfs_read_pm_config(struct file *filp, | |||
464 | { | 446 | { |
465 | struct device *dev = container_of(kobj, struct device, kobj); | 447 | struct device *dev = container_of(kobj, struct device, kobj); |
466 | struct qlcnic_adapter *adapter = dev_get_drvdata(dev); | 448 | struct qlcnic_adapter *adapter = dev_get_drvdata(dev); |
467 | u32 pci_func_count = qlcnic_get_pci_func_count(adapter); | ||
468 | struct qlcnic_pm_func_cfg *pm_cfg; | 449 | struct qlcnic_pm_func_cfg *pm_cfg; |
469 | int i, pm_cfg_size; | ||
470 | u8 pci_func; | 450 | u8 pci_func; |
451 | u32 count; | ||
452 | int i; | ||
471 | 453 | ||
472 | pm_cfg_size = pci_func_count * sizeof(*pm_cfg); | 454 | memset(buf, 0, size); |
473 | if (size != pm_cfg_size) | ||
474 | return QL_STATUS_INVALID_PARAM; | ||
475 | |||
476 | memset(buf, 0, pm_cfg_size); | ||
477 | pm_cfg = (struct qlcnic_pm_func_cfg *)buf; | 455 | pm_cfg = (struct qlcnic_pm_func_cfg *)buf; |
478 | 456 | count = size / sizeof(struct qlcnic_pm_func_cfg); | |
479 | for (i = 0; i < pci_func_count; i++) { | 457 | for (i = 0; i < adapter->ahw->total_nic_func; i++) { |
480 | pci_func = adapter->npars[i].pci_func; | 458 | pci_func = adapter->npars[i].pci_func; |
481 | if (!adapter->npars[i].active) | 459 | if (pci_func >= count) { |
460 | dev_dbg(dev, "%s: Total nic functions[%d], App sent function count[%d]\n", | ||
461 | __func__, adapter->ahw->total_nic_func, count); | ||
482 | continue; | 462 | continue; |
483 | 463 | } | |
484 | if (!adapter->npars[i].eswitch_status) | 464 | if (!adapter->npars[i].eswitch_status) |
485 | continue; | 465 | continue; |
486 | 466 | ||
@@ -494,7 +474,6 @@ static ssize_t qlcnic_sysfs_read_pm_config(struct file *filp, | |||
494 | static int validate_esw_config(struct qlcnic_adapter *adapter, | 474 | static int validate_esw_config(struct qlcnic_adapter *adapter, |
495 | struct qlcnic_esw_func_cfg *esw_cfg, int count) | 475 | struct qlcnic_esw_func_cfg *esw_cfg, int count) |
496 | { | 476 | { |
497 | u32 pci_func_count = qlcnic_get_pci_func_count(adapter); | ||
498 | struct qlcnic_hardware_context *ahw = adapter->ahw; | 477 | struct qlcnic_hardware_context *ahw = adapter->ahw; |
499 | int i, ret; | 478 | int i, ret; |
500 | u32 op_mode; | 479 | u32 op_mode; |
@@ -507,7 +486,7 @@ static int validate_esw_config(struct qlcnic_adapter *adapter, | |||
507 | 486 | ||
508 | for (i = 0; i < count; i++) { | 487 | for (i = 0; i < count; i++) { |
509 | pci_func = esw_cfg[i].pci_func; | 488 | pci_func = esw_cfg[i].pci_func; |
510 | if (pci_func >= pci_func_count) | 489 | if (pci_func >= ahw->max_vnic_func) |
511 | return QL_STATUS_INVALID_PARAM; | 490 | return QL_STATUS_INVALID_PARAM; |
512 | 491 | ||
513 | if (adapter->ahw->op_mode == QLCNIC_MGMT_FUNC) | 492 | if (adapter->ahw->op_mode == QLCNIC_MGMT_FUNC) |
@@ -642,23 +621,21 @@ static ssize_t qlcnic_sysfs_read_esw_config(struct file *file, | |||
642 | { | 621 | { |
643 | struct device *dev = container_of(kobj, struct device, kobj); | 622 | struct device *dev = container_of(kobj, struct device, kobj); |
644 | struct qlcnic_adapter *adapter = dev_get_drvdata(dev); | 623 | struct qlcnic_adapter *adapter = dev_get_drvdata(dev); |
645 | u32 pci_func_count = qlcnic_get_pci_func_count(adapter); | ||
646 | struct qlcnic_esw_func_cfg *esw_cfg; | 624 | struct qlcnic_esw_func_cfg *esw_cfg; |
647 | size_t esw_cfg_size; | 625 | u8 pci_func; |
648 | u8 i, pci_func; | 626 | u32 count; |
649 | 627 | int i; | |
650 | esw_cfg_size = pci_func_count * sizeof(*esw_cfg); | ||
651 | if (size != esw_cfg_size) | ||
652 | return QL_STATUS_INVALID_PARAM; | ||
653 | 628 | ||
654 | memset(buf, 0, esw_cfg_size); | 629 | memset(buf, 0, size); |
655 | esw_cfg = (struct qlcnic_esw_func_cfg *)buf; | 630 | esw_cfg = (struct qlcnic_esw_func_cfg *)buf; |
656 | 631 | count = size / sizeof(struct qlcnic_esw_func_cfg); | |
657 | for (i = 0; i < pci_func_count; i++) { | 632 | for (i = 0; i < adapter->ahw->total_nic_func; i++) { |
658 | pci_func = adapter->npars[i].pci_func; | 633 | pci_func = adapter->npars[i].pci_func; |
659 | if (!adapter->npars[i].active) | 634 | if (pci_func >= count) { |
635 | dev_dbg(dev, "%s: Total nic functions[%d], App sent function count[%d]\n", | ||
636 | __func__, adapter->ahw->total_nic_func, count); | ||
660 | continue; | 637 | continue; |
661 | 638 | } | |
662 | if (!adapter->npars[i].eswitch_status) | 639 | if (!adapter->npars[i].eswitch_status) |
663 | continue; | 640 | continue; |
664 | 641 | ||
@@ -741,23 +718,24 @@ static ssize_t qlcnic_sysfs_read_npar_config(struct file *file, | |||
741 | { | 718 | { |
742 | struct device *dev = container_of(kobj, struct device, kobj); | 719 | struct device *dev = container_of(kobj, struct device, kobj); |
743 | struct qlcnic_adapter *adapter = dev_get_drvdata(dev); | 720 | struct qlcnic_adapter *adapter = dev_get_drvdata(dev); |
744 | u32 pci_func_count = qlcnic_get_pci_func_count(adapter); | ||
745 | struct qlcnic_npar_func_cfg *np_cfg; | 721 | struct qlcnic_npar_func_cfg *np_cfg; |
746 | struct qlcnic_info nic_info; | 722 | struct qlcnic_info nic_info; |
747 | size_t np_cfg_size; | ||
748 | int i, ret; | 723 | int i, ret; |
749 | 724 | u32 count; | |
750 | np_cfg_size = pci_func_count * sizeof(*np_cfg); | ||
751 | if (size != np_cfg_size) | ||
752 | return QL_STATUS_INVALID_PARAM; | ||
753 | 725 | ||
754 | memset(&nic_info, 0, sizeof(struct qlcnic_info)); | 726 | memset(&nic_info, 0, sizeof(struct qlcnic_info)); |
755 | memset(buf, 0, np_cfg_size); | 727 | memset(buf, 0, size); |
756 | np_cfg = (struct qlcnic_npar_func_cfg *)buf; | 728 | np_cfg = (struct qlcnic_npar_func_cfg *)buf; |
757 | 729 | ||
758 | for (i = 0; i < pci_func_count; i++) { | 730 | count = size / sizeof(struct qlcnic_npar_func_cfg); |
731 | for (i = 0; i < adapter->ahw->total_nic_func; i++) { | ||
759 | if (qlcnic_is_valid_nic_func(adapter, i) < 0) | 732 | if (qlcnic_is_valid_nic_func(adapter, i) < 0) |
760 | continue; | 733 | continue; |
734 | if (adapter->npars[i].pci_func >= count) { | ||
735 | dev_dbg(dev, "%s: Total nic functions[%d], App sent function count[%d]\n", | ||
736 | __func__, adapter->ahw->total_nic_func, count); | ||
737 | continue; | ||
738 | } | ||
761 | ret = qlcnic_get_nic_info(adapter, &nic_info, i); | 739 | ret = qlcnic_get_nic_info(adapter, &nic_info, i); |
762 | if (ret) | 740 | if (ret) |
763 | return ret; | 741 | return ret; |
@@ -783,7 +761,6 @@ static ssize_t qlcnic_sysfs_get_port_stats(struct file *file, | |||
783 | { | 761 | { |
784 | struct device *dev = container_of(kobj, struct device, kobj); | 762 | struct device *dev = container_of(kobj, struct device, kobj); |
785 | struct qlcnic_adapter *adapter = dev_get_drvdata(dev); | 763 | struct qlcnic_adapter *adapter = dev_get_drvdata(dev); |
786 | u32 pci_func_count = qlcnic_get_pci_func_count(adapter); | ||
787 | struct qlcnic_esw_statistics port_stats; | 764 | struct qlcnic_esw_statistics port_stats; |
788 | int ret; | 765 | int ret; |
789 | 766 | ||
@@ -793,7 +770,7 @@ static ssize_t qlcnic_sysfs_get_port_stats(struct file *file, | |||
793 | if (size != sizeof(struct qlcnic_esw_statistics)) | 770 | if (size != sizeof(struct qlcnic_esw_statistics)) |
794 | return QL_STATUS_INVALID_PARAM; | 771 | return QL_STATUS_INVALID_PARAM; |
795 | 772 | ||
796 | if (offset >= pci_func_count) | 773 | if (offset >= adapter->ahw->max_vnic_func) |
797 | return QL_STATUS_INVALID_PARAM; | 774 | return QL_STATUS_INVALID_PARAM; |
798 | 775 | ||
799 | memset(&port_stats, 0, size); | 776 | memset(&port_stats, 0, size); |
@@ -884,13 +861,12 @@ static ssize_t qlcnic_sysfs_clear_port_stats(struct file *file, | |||
884 | 861 | ||
885 | struct device *dev = container_of(kobj, struct device, kobj); | 862 | struct device *dev = container_of(kobj, struct device, kobj); |
886 | struct qlcnic_adapter *adapter = dev_get_drvdata(dev); | 863 | struct qlcnic_adapter *adapter = dev_get_drvdata(dev); |
887 | u32 pci_func_count = qlcnic_get_pci_func_count(adapter); | ||
888 | int ret; | 864 | int ret; |
889 | 865 | ||
890 | if (qlcnic_83xx_check(adapter)) | 866 | if (qlcnic_83xx_check(adapter)) |
891 | return QLC_STATUS_UNSUPPORTED_CMD; | 867 | return QLC_STATUS_UNSUPPORTED_CMD; |
892 | 868 | ||
893 | if (offset >= pci_func_count) | 869 | if (offset >= adapter->ahw->max_vnic_func) |
894 | return QL_STATUS_INVALID_PARAM; | 870 | return QL_STATUS_INVALID_PARAM; |
895 | 871 | ||
896 | ret = qlcnic_clear_esw_stats(adapter, QLCNIC_STATS_PORT, offset, | 872 | ret = qlcnic_clear_esw_stats(adapter, QLCNIC_STATS_PORT, offset, |
@@ -914,17 +890,12 @@ static ssize_t qlcnic_sysfs_read_pci_config(struct file *file, | |||
914 | { | 890 | { |
915 | struct device *dev = container_of(kobj, struct device, kobj); | 891 | struct device *dev = container_of(kobj, struct device, kobj); |
916 | struct qlcnic_adapter *adapter = dev_get_drvdata(dev); | 892 | struct qlcnic_adapter *adapter = dev_get_drvdata(dev); |
917 | u32 pci_func_count = qlcnic_get_pci_func_count(adapter); | ||
918 | struct qlcnic_pci_func_cfg *pci_cfg; | 893 | struct qlcnic_pci_func_cfg *pci_cfg; |
919 | struct qlcnic_pci_info *pci_info; | 894 | struct qlcnic_pci_info *pci_info; |
920 | size_t pci_cfg_sz; | ||
921 | int i, ret; | 895 | int i, ret; |
896 | u32 count; | ||
922 | 897 | ||
923 | pci_cfg_sz = pci_func_count * sizeof(*pci_cfg); | 898 | pci_info = kcalloc(size, sizeof(*pci_info), GFP_KERNEL); |
924 | if (size != pci_cfg_sz) | ||
925 | return QL_STATUS_INVALID_PARAM; | ||
926 | |||
927 | pci_info = kcalloc(pci_func_count, sizeof(*pci_info), GFP_KERNEL); | ||
928 | if (!pci_info) | 899 | if (!pci_info) |
929 | return -ENOMEM; | 900 | return -ENOMEM; |
930 | 901 | ||
@@ -935,7 +906,8 @@ static ssize_t qlcnic_sysfs_read_pci_config(struct file *file, | |||
935 | } | 906 | } |
936 | 907 | ||
937 | pci_cfg = (struct qlcnic_pci_func_cfg *)buf; | 908 | pci_cfg = (struct qlcnic_pci_func_cfg *)buf; |
938 | for (i = 0; i < pci_func_count; i++) { | 909 | count = size / sizeof(struct qlcnic_pci_func_cfg); |
910 | for (i = 0; i < count; i++) { | ||
939 | pci_cfg[i].pci_func = pci_info[i].id; | 911 | pci_cfg[i].pci_func = pci_info[i].id; |
940 | pci_cfg[i].func_type = pci_info[i].type; | 912 | pci_cfg[i].func_type = pci_info[i].type; |
941 | pci_cfg[i].func_state = 0; | 913 | pci_cfg[i].func_state = 0; |