All of lore.kernel.org
 help / color / mirror / Atom feed
From: Kiran Patil <kiran.patil@intel.com>
To: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Joe Eykholt <jeykholt@cisco.com>,
	Nicholas Bellinger <nab@linux-iscsi.org>,
	"James E.J. Bottomley" <JBottomley@parallels.com>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	scsi <linux-scsi@vger.kernel.org>
Subject: Re: [SCSI] tcm_fc: Adding FC_FC4 provider (tcm_fc) for FCoE target (TCM - target core) support
Date: Wed, 08 Jun 2011 13:51:21 -0700	[thread overview]
Message-ID: <4DEFE0C9.10206@intel.com> (raw)
In-Reply-To: <BANLkTimLbj1FHy9j56ScRGwc2t6Ci+QhAw@mail.gmail.com>

Hi Geert,

Response in-line.

On 6/8/2011 1:10 PM, Geert Uytterhoeven wrote:
>>     [SCSI] tcm_fc: Adding FC_FC4 provider (tcm_fc) for FCoE target (TCM - target core) support
>>
>>     This is a comprehensive patch for FC-FC4 provider. tcm_fc is a FC-FC4
>>     provider which glues target core (TCM) with Fiber channel library
>>     (libfc). tcm_fc uses existing FC4 provider hooks from Fiber channel
>>     library. This Fiber channel library is used by FCoE (transport - FC
>>     over Ethernet) protocol driver as well.
>> --- /dev/null
>> +++ b/drivers/target/tcm_fc/tfc_conf.c
>> +static int __init ft_init(void)
>> +{
>> +       if (ft_register_configfs())
>> +               return -1;
>> +       if (fc_fc4_register_provider(FC_TYPE_FCP,&ft_prov)) {
>> +               ft_deregister_configfs();
>> +               return -1;
>> +       }
>> +       blocking_notifier_chain_register(&fc_lport_notifier_head,&ft_notifier);
>> +       fc_lport_iterate(ft_lport_add, NULL);
>> +       return 0;
>> +}
>> +
>> +static void __exit ft_exit(void)
>> +{
>> +       blocking_notifier_chain_unregister(&fc_lport_notifier_head,
>> +&ft_notifier);
>> +       fc_fc4_deregister_provider(FC_TYPE_FCP,&ft_prov);
>> +       fc_lport_iterate(ft_lport_del, NULL);
>> +       ft_deregister_configfs();
>> +       synchronize_rcu();
>> +}
>> +
>> +#ifdef MODULE
>> +MODULE_DESCRIPTION("FC TCM fabric driver " FT_VERSION);
>> +MODULE_LICENSE("GPL");
>> +module_init(ft_init);
>> +module_exit(ft_exit);
>> +#endif /* MODULE */
> If CONFIG_TCM_FC=y, this gives:
>
> | drivers/target/tcm_fc/tfc_conf.c:642: warning: ‘ft_init’ defined but not used
>
> Shouldn't the #ifdef MODULE and #endif just be removed?
Agree. Will get it fixed.
> Who else initializes this module if it's builtin?
> E.g. ft_register_configfs() is global, but not used outside this source file?
>
> Gr{oetje,eeting}s,
>
>                          Geert
>
> --
> Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
>
> In personal conversations with technical people, I call myself a hacker. But
> when I'm talking to journalists I just say "programmer" or something like that.
>                                  -- Linus Torvalds
Thanks
-- KIran P.
--
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

WARNING: multiple messages have this Message-ID (diff)
From: Kiran Patil <kiran.patil@intel.com>
To: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Joe Eykholt <jeykholt@cisco.com>,
	Nicholas Bellinger <nab@linux-iscsi.org>,
	"James E.J. Bottomley" <JBottomley@parallels.com>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	scsi <linux-scsi@vger.kernel.org>
Subject: Re: [SCSI] tcm_fc: Adding FC_FC4 provider (tcm_fc) for FCoE target (TCM - target core) support
Date: Wed, 08 Jun 2011 13:51:21 -0700	[thread overview]
Message-ID: <4DEFE0C9.10206@intel.com> (raw)
In-Reply-To: <BANLkTimLbj1FHy9j56ScRGwc2t6Ci+QhAw@mail.gmail.com>

Hi Geert,

Response in-line.

On 6/8/2011 1:10 PM, Geert Uytterhoeven wrote:
>>     [SCSI] tcm_fc: Adding FC_FC4 provider (tcm_fc) for FCoE target (TCM - target core) support
>>
>>     This is a comprehensive patch for FC-FC4 provider. tcm_fc is a FC-FC4
>>     provider which glues target core (TCM) with Fiber channel library
>>     (libfc). tcm_fc uses existing FC4 provider hooks from Fiber channel
>>     library. This Fiber channel library is used by FCoE (transport - FC
>>     over Ethernet) protocol driver as well.
>> --- /dev/null
>> +++ b/drivers/target/tcm_fc/tfc_conf.c
>> +static int __init ft_init(void)
>> +{
>> +       if (ft_register_configfs())
>> +               return -1;
>> +       if (fc_fc4_register_provider(FC_TYPE_FCP,&ft_prov)) {
>> +               ft_deregister_configfs();
>> +               return -1;
>> +       }
>> +       blocking_notifier_chain_register(&fc_lport_notifier_head,&ft_notifier);
>> +       fc_lport_iterate(ft_lport_add, NULL);
>> +       return 0;
>> +}
>> +
>> +static void __exit ft_exit(void)
>> +{
>> +       blocking_notifier_chain_unregister(&fc_lport_notifier_head,
>> +&ft_notifier);
>> +       fc_fc4_deregister_provider(FC_TYPE_FCP,&ft_prov);
>> +       fc_lport_iterate(ft_lport_del, NULL);
>> +       ft_deregister_configfs();
>> +       synchronize_rcu();
>> +}
>> +
>> +#ifdef MODULE
>> +MODULE_DESCRIPTION("FC TCM fabric driver " FT_VERSION);
>> +MODULE_LICENSE("GPL");
>> +module_init(ft_init);
>> +module_exit(ft_exit);
>> +#endif /* MODULE */
> If CONFIG_TCM_FC=y, this gives:
>
> | drivers/target/tcm_fc/tfc_conf.c:642: warning: ‘ft_init’ defined but not used
>
> Shouldn't the #ifdef MODULE and #endif just be removed?
Agree. Will get it fixed.
> Who else initializes this module if it's builtin?
> E.g. ft_register_configfs() is global, but not used outside this source file?
>
> Gr{oetje,eeting}s,
>
>                          Geert
>
> --
> Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
>
> In personal conversations with technical people, I call myself a hacker. But
> when I'm talking to journalists I just say "programmer" or something like that.
>                                  -- Linus Torvalds
Thanks
-- KIran P.

  reply	other threads:[~2011-06-08 20:51 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <201105202102.p4KL28Io025077@hera.kernel.org>
2011-06-08 20:10 ` [SCSI] tcm_fc: Adding FC_FC4 provider (tcm_fc) for FCoE target (TCM - target core) support Geert Uytterhoeven
2011-06-08 20:10   ` Geert Uytterhoeven
2011-06-08 20:51   ` Kiran Patil [this message]
2011-06-08 20:51     ` Kiran Patil

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=4DEFE0C9.10206@intel.com \
    --to=kiran.patil@intel.com \
    --cc=JBottomley@parallels.com \
    --cc=geert@linux-m68k.org \
    --cc=jeykholt@cisco.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-scsi@vger.kernel.org \
    --cc=nab@linux-iscsi.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.