All of lore.kernel.org
 help / color / mirror / Atom feed
From: Roland Dreier <rdreier-FYB4Gu1CFyUAvxtiuMwx3w@public.gmane.org>
To: Ralph Campbell <ralph.campbell-h88ZbnxC6KDQT0dZR+AlfA@public.gmane.org>
Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: [PATCH 27/53] IB/qib: Add qib_pcie.c
Date: Thu, 19 Nov 2009 16:11:20 -0800	[thread overview]
Message-ID: <adaaayi6onr.fsf@roland-alpha.cisco.com> (raw)
In-Reply-To: <20091119233918.30356.5469.stgit-/vjeY7uYZjrPXfVEPVhPGq6RkeBMCJyt@public.gmane.org> (Ralph Campbell's message of "Thu, 19 Nov 2009 15:39:18 -0800")


 > +#ifdef CONFIG_PCIEAER
 > +#include <linux/aer.h>
 > +#endif

I don't think this ifdef is needed... <linux/aer.h> looks fine to
include even if PCIEAER isn't set.

 > +#ifndef PCI_MSIX_FLAGS
 > +#define PCI_MSIX_FLAGS 2
 > +#endif
 > +#ifndef PCI_MSIX_FLAGS_ENABLE
 > +#define  PCI_MSIX_FLAGS_ENABLE  (1 << 15)
 > +#endif
 > +#ifndef PCI_MSIX_FLAGS_QSIZE
 > +#define PCI_MSIX_FLAGS_QSIZE 0x7FF
 > +#endif

None of this is needed ... all these constants are defined, right?

 > +#ifdef CONFIG_PCIEAER
 > +	/* enable basic AER reporting.  Perhaps more later */
 > +	if (pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ERR)) {
 > +		ret = pci_enable_pcie_error_reporting(pdev);
 > +		if (ret)
 > +			qib_early_err(&pdev->dev,
 > +				      "Unable to enable pcie error reporting"
 > +				      ": %d\n", ret);
 > +	} else
 > +		qib_dbg("AER capability not found! AER reports not enabled\n");
 > +#endif

ifdef here isn't needed either, I don't think.  And neither is the test
for the capability... just call pci_enable_pcie_error_reporting always
and it will return an error if the config option isn't set or the cap
isn't found.

 > +#ifdef CONFIG_PCI_MSI

again, ifdef not needed, right?

 > +static void qib_msix_setup(struct qib_devdata *dd, int pos, u32 *msixcnt,
 > +			   struct msix_entry *msix_entry)
 > +{
 > +	int ret;
 > +	u32 tabsize = 0;
 > +	u16 msix_flags;
 > +
 > +	pci_read_config_word(dd->pcidev, pos + PCI_MSIX_FLAGS, &msix_flags);
 > +	tabsize = 1 + (msix_flags & PCI_MSIX_FLAGS_QSIZE);
 > +	if (tabsize > *msixcnt)
 > +		tabsize = *msixcnt;
 > +	ret = pci_enable_msix(dd->pcidev, msix_entry, tabsize);

all the monkeying with config space seems dubious... fallback should
handle the table size, and I don't think drivers should be peeking and
poking in config space anyway.  Fix the PCI core if some generic
function is missing...

 > +/**
 > + * We save the msi lo and hi values, so we can restore them after
 > + * chip reset (the kernel PCI infrastructure doesn't yet handle that
 > + * correctly.
 > + */

again... if the core doesn't do something right, fix it rather than
hacking around it in a driver.
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

  parent reply	other threads:[~2009-11-20  0:11 UTC|newest]

Thread overview: 68+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-11-19 23:36 [PATCH 0/53] IB/qib: add Ralph Campbell
     [not found] ` <20091119233655.30356.57433.stgit-/vjeY7uYZjrPXfVEPVhPGq6RkeBMCJyt@public.gmane.org>
2009-11-19 23:37   ` [PATCH 01/53] IB/qib: Add Kconfig Ralph Campbell
     [not found]     ` <20091119233701.30356.78628.stgit-/vjeY7uYZjrPXfVEPVhPGq6RkeBMCJyt@public.gmane.org>
2009-11-20  0:02       ` Roland Dreier
2009-11-19 23:37   ` [PATCH 02/53] IB/qib: Add Makefile Ralph Campbell
     [not found]     ` <20091119233706.30356.20051.stgit-/vjeY7uYZjrPXfVEPVhPGq6RkeBMCJyt@public.gmane.org>
2009-11-20  0:05       ` Roland Dreier
     [not found]         ` <adaeinu6owu.fsf-BjVyx320WGW9gfZ95n9DRSW4+XlvGpQz@public.gmane.org>
2009-11-20  1:07           ` Dave Olson
     [not found]             ` <alpine.LFD.1.10.0911191700500.21294-vxnkQ4oxbxUi9g6yJnKVd0EOCMrvLtNR@public.gmane.org>
2009-11-24  3:59               ` Roland Dreier
     [not found]                 ` <adamy2c3754.fsf-BjVyx320WGW9gfZ95n9DRSW4+XlvGpQz@public.gmane.org>
2009-11-24 17:10                   ` [PATCH 02/53] IB/qib: Add Makefile (ipath vs qib) Dave Olson
2009-11-24  4:02               ` [PATCH 02/53] IB/qib: Add Makefile Roland Dreier
2009-11-19 23:37   ` [PATCH 03/53] IB/qib: Add qib.h Ralph Campbell
2009-11-19 23:37   ` [PATCH 04/53] IB/qib: Add qib_6120_regs.h Ralph Campbell
2009-11-19 23:37   ` [PATCH 05/53] IB/qib: Add qib_7220.h Ralph Campbell
2009-11-19 23:37   ` [PATCH 06/53] IB/qib: Add qib_7220_regs.h Ralph Campbell
2009-11-19 23:37   ` [PATCH 08/53] IB/qib: Add qib_common.h Ralph Campbell
2009-11-19 23:37   ` [PATCH 09/53] IB/qib: Add qib_cq.c Ralph Campbell
2009-11-19 23:37   ` [PATCH 10/53] IB/qib: Add qib_debug.h Ralph Campbell
2009-11-19 23:37   ` [PATCH 11/53] IB/qib: Add qib_diag.c Ralph Campbell
2009-11-19 23:37   ` [PATCH 12/53] IB/qib: Add qib_dma.c Ralph Campbell
2009-11-19 23:38   ` [PATCH 13/53] IB/qib: Add qib_driver.c Ralph Campbell
2009-11-19 23:38   ` [PATCH 14/53] IB/qib: Add qib_eeprom.c Ralph Campbell
2009-11-19 23:38   ` [PATCH 15/53] IB/qib: Add qib_file_ops.c Ralph Campbell
2009-11-19 23:38   ` [PATCH 16/53] IB/qib: Add qib_fs.c Ralph Campbell
2009-11-19 23:38   ` [PATCH 20/53] IB/qib: Add qib_init.c Ralph Campbell
2009-11-19 23:38   ` [PATCH 21/53] IB/qib: Add qib_intr.c Ralph Campbell
2009-11-19 23:38   ` [PATCH 22/53] IB/qib: Add qib_keys.c Ralph Campbell
2009-11-19 23:38   ` [PATCH 23/53] IB/qib: Add qib_mad.c Ralph Campbell
2009-11-19 23:39   ` [PATCH 24/53] IB/qib: Add qib_mad.h Ralph Campbell
2009-11-19 23:39   ` [PATCH 25/53] IB/qib: Add qib_mmap.c Ralph Campbell
2009-11-19 23:39   ` [PATCH 26/53] IB/qib: Add qib_mr.c Ralph Campbell
2009-11-19 23:39   ` [PATCH 27/53] IB/qib: Add qib_pcie.c Ralph Campbell
     [not found]     ` <20091119233918.30356.5469.stgit-/vjeY7uYZjrPXfVEPVhPGq6RkeBMCJyt@public.gmane.org>
2009-11-20  0:11       ` Roland Dreier [this message]
     [not found]         ` <adaaayi6onr.fsf-BjVyx320WGW9gfZ95n9DRSW4+XlvGpQz@public.gmane.org>
2009-11-20  1:00           ` Dave Olson
2009-11-19 23:39   ` [PATCH 28/53] IB/qib: Add qib_pio_copy.c Ralph Campbell
2009-11-19 23:39   ` [PATCH 29/53] IB/qib: Add qib_qp.c Ralph Campbell
2009-11-19 23:39   ` [PATCH 30/53] IB/qib: Add qib_qsfp.c Ralph Campbell
2009-11-19 23:39   ` [PATCH 31/53] IB/qib: Add qib_qsfp.h Ralph Campbell
2009-11-19 23:39   ` [PATCH 32/53] IB/qib: Add qib_rc.c Ralph Campbell
2009-11-19 23:39   ` [PATCH 33/53] IB/qib: Add qib_ruc.c Ralph Campbell
2009-11-19 23:39   ` [PATCH 34/53] IB/qib: Add qib_sd7220.c Ralph Campbell
2009-11-19 23:40   ` [PATCH 35/53] IB/qib: Add qib_sd7220_img.c Ralph Campbell
2009-11-19 23:40   ` [PATCH 36/53] IB/qib: Add qib_sdma.c Ralph Campbell
2009-11-19 23:40   ` [PATCH 37/53] IB/qib: Add qib_srq.c Ralph Campbell
2009-11-19 23:40   ` [PATCH 38/53] IB/qib: Add qib_sysfs.c Ralph Campbell
2009-11-19 23:40   ` [PATCH 39/53] IB/qib: Add qib_trace.c Ralph Campbell
     [not found]     ` <20091119234021.30356.77098.stgit-/vjeY7uYZjrPXfVEPVhPGq6RkeBMCJyt@public.gmane.org>
2009-11-20  0:14       ` Roland Dreier
     [not found]         ` <ada63966oip.fsf-BjVyx320WGW9gfZ95n9DRSW4+XlvGpQz@public.gmane.org>
2009-11-20  0:53           ` Dave Olson
     [not found]             ` <alpine.LFD.1.10.0911191652280.21294-vxnkQ4oxbxUi9g6yJnKVd0EOCMrvLtNR@public.gmane.org>
2009-11-24  4:09               ` Roland Dreier
2009-12-02  0:10           ` Ralph Campbell
     [not found]             ` <1259712618.992.637.camel-/vjeY7uYZjrPXfVEPVhPGq6RkeBMCJyt@public.gmane.org>
2009-12-02 17:52               ` Roland Dreier
2009-11-19 23:40   ` [PATCH 40/53] IB/qib: Add qib_trace.h Ralph Campbell
2009-11-19 23:40   ` [PATCH 41/53] IB/qib: Add qib_twsi.c Ralph Campbell
2009-11-19 23:40   ` [PATCH 42/53] IB/qib: Add qib_tx.c Ralph Campbell
2009-11-19 23:40   ` [PATCH 43/53] IB/qib: Add qib_uc.c Ralph Campbell
2009-11-19 23:40   ` [PATCH 44/53] IB/qib: Add qib_ud.c Ralph Campbell
2009-11-19 23:40   ` [PATCH 45/53] IB/qib: Add qib_user_pages.c Ralph Campbell
2009-11-19 23:40   ` [PATCH 46/53] IB/qib: Add qib_user_sdma.c Ralph Campbell
2009-11-19 23:41   ` [PATCH 47/53] IB/qib: Add qib_user_sdma.h Ralph Campbell
2009-11-19 23:41   ` [PATCH 48/53] IB/qib: Add qib_verbs.c Ralph Campbell
2009-11-19 23:41   ` [PATCH 49/53] IB/qib: Add qib_verbs.h Ralph Campbell
2009-11-19 23:41   ` [PATCH 50/53] IB/qib: Add qib_verbs_mcast.c Ralph Campbell
2009-11-19 23:41   ` [PATCH 51/53] IB/qib: Add qib_wc_ppc64.c Ralph Campbell
2009-11-19 23:41   ` [PATCH 52/53] IB/qib: Add qib_wc_x86_64.c Ralph Campbell
2009-11-19 23:41   ` [PATCH 53/53] IB/qib: Hooks for adding the QIB driver into the framework Ralph Campbell
2009-11-24  3:52   ` [PATCH 0/53] IB/qib: add Roland Dreier
     [not found] ` <20091119233732.30356.15053.stgit@chromite.mv.qlogic.com>
     [not found]   ` <20091119233732.30356.15053.stgit-/vjeY7uYZjrPXfVEPVhPGq6RkeBMCJyt@public.gmane.org>
2009-11-24  4:04     ` [PATCH 07/53] IB/qib: Add qib_7322_regs.h Roland Dreier
     [not found]       ` <adaeino36vw.fsf-BjVyx320WGW9gfZ95n9DRSW4+XlvGpQz@public.gmane.org>
2009-11-24 20:28         ` Ralph Campbell
     [not found]           ` <1259094504.992.517.camel-/vjeY7uYZjrPXfVEPVhPGq6RkeBMCJyt@public.gmane.org>
2009-11-24 22:29             ` Roland Dreier
     [not found]               ` <ada1vjn36bz.fsf-BjVyx320WGW9gfZ95n9DRSW4+XlvGpQz@public.gmane.org>
2009-11-25  0:15                 ` Ralph Campbell

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=adaaayi6onr.fsf@roland-alpha.cisco.com \
    --to=rdreier-fyb4gu1cfyuavxtiumwx3w@public.gmane.org \
    --cc=linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=ralph.campbell-h88ZbnxC6KDQT0dZR+AlfA@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.