<br><br><div class="gmail_quote">On Thu, May 29, 2008 at 11:18 PM, Greg KH <<a href="mailto:greg@kroah.com">greg@kroah.com</a>> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div><div></div><div class="Wj3C7c">On Thu, May 29, 2008 at 10:30:03AM -0700, Stephen Hemminger wrote:<br>
> On Thu, 29 May 2008 15:27:54 +0530<br>
> Ramachandra K <<a href="mailto:ramachandra.kuchimanchi@qlogic.com">ramachandra.kuchimanchi@qlogic.com</a>> wrote:<br>
><br>
> > From: Amar Mudrankit <<a href="mailto:amar.mudrankit@qlogic.com">amar.mudrankit@qlogic.com</a>><br>
> ><br>
> > The sysfs interface for the QLogic VNIC driver is implemented through<br>
> > this patch.<br>
> ><br>
> > Signed-off-by: Amar Mudrankit <<a href="mailto:amar.mudrankit@qlogic.com">amar.mudrankit@qlogic.com</a>><br>
> > Signed-off-by: Ramachandra K <<a href="mailto:ramachandra.kuchimanchi@qlogic.com">ramachandra.kuchimanchi@qlogic.com</a>><br>
> > Signed-off-by: Poornima Kamath <<a href="mailto:poornima.kamath@qlogic.com">poornima.kamath@qlogic.com</a>><br>
> > ---<br>
> ><br>
> >  drivers/infiniband/ulp/qlgc_vnic/vnic_sys.c | 1133 +++++++++++++++++++++++++++<br>
> >  drivers/infiniband/ulp/qlgc_vnic/vnic_sys.h |   51 +<br>
> >  2 files changed, 1184 insertions(+), 0 deletions(-)<br>
> >  create mode 100644 drivers/infiniband/ulp/qlgc_vnic/vnic_sys.c<br>
> >  create mode 100644 drivers/infiniband/ulp/qlgc_vnic/vnic_sys.h<br>
> ><br>
> > diff --git a/drivers/infiniband/ulp/qlgc_vnic/vnic_sys.c b/drivers/infiniband/ulp/qlgc_vnic/vnic_sys.c<br>
> > new file mode 100644<br>
> > index 0000000..40b3c77<br>
> > --- /dev/null<br>
> > +++ b/drivers/infiniband/ulp/qlgc_vnic/vnic_sys.c<br>
> > @@ -0,0 +1,1133 @@<br>
> > +/*<br>
> > + * Copyright (c) 2006 QLogic, Inc.  All rights reserved.<br>
> > + *<br>
> > + * This software is available to you under a choice of one of two<br>
> > + * licenses.  You may choose to be licensed under the terms of the GNU<br>
> > + * General Public License (GPL) Version 2, available from the file<br>
> > + * COPYING in the main directory of this source tree, or the<br>
> > + * OpenIB.org BSD license below:<br>
> > + *<br>
> > + *     Redistribution and use in source and binary forms, with or<br>
> > + *     without modification, are permitted provided that the following<br>
> > + *     conditions are met:<br>
> > + *<br>
> > + *      - Redistributions of source code must retain the above<br>
> > + *        copyright notice, this list of conditions and the following<br>
> > + *        disclaimer.<br>
> > + *<br>
> > + *      - Redistributions in binary form must reproduce the above<br>
> > + *        copyright notice, this list of conditions and the following<br>
> > + *        disclaimer in the documentation and/or other materials<br>
> > + *        provided with the distribution.<br>
> > + *<br>
> > + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,<br>
> > + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF<br>
> > + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND<br>
> > + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS<br>
> > + * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN<br>
> > + * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN<br>
> > + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE<br>
> > + * SOFTWARE.<br>
> > + */<br>
> > +<br>
> > +#include <linux/netdevice.h><br>
> > +#include <linux/parser.h><br>
> > +#include <linux/if.h><br>
> > +<br>
> > +#include "vnic_util.h"<br>
> > +#include "vnic_config.h"<br>
> > +#include "vnic_ib.h"<br>
> > +#include "vnic_viport.h"<br>
> > +#include "vnic_main.h"<br>
> > +#include "vnic_stats.h"<br>
> > +<br>
> > +/*<br>
> > + * target eiocs are added by writing<br>
> > + *<br>
> > + * ioc_guid=<EIOC GUID>,dgid=<dest GID>,pkey=<P_key>,name=<interface_name><br>
> > + * to the create_primary  sysfs attribute.<br>
> > + */<br>
> > +enum {<br>
> > +   VNIC_OPT_ERR = 0,<br>
> > +   VNIC_OPT_IOC_GUID = 1 << 0,<br>
> > +   VNIC_OPT_DGID = 1 << 1,<br>
> > +   VNIC_OPT_PKEY = 1 << 2,<br>
> > +   VNIC_OPT_NAME = 1 << 3,<br>
> > +   VNIC_OPT_INSTANCE = 1 << 4,<br>
> > +   VNIC_OPT_RXCSUM = 1 << 5,<br>
> > +   VNIC_OPT_TXCSUM = 1 << 6,<br>
> > +   VNIC_OPT_HEARTBEAT = 1 << 7,<br>
> > +   VNIC_OPT_IOC_STRING = 1 << 8,<br>
> > +   VNIC_OPT_IB_MULTICAST = 1 << 9,<br>
> > +   VNIC_OPT_ALL = (VNIC_OPT_IOC_GUID |<br>
> > +                   VNIC_OPT_DGID | VNIC_OPT_NAME | VNIC_OPT_PKEY),<br>
> > +};<br>
> > +<br>
> > +static match_table_t vnic_opt_tokens = {<br>
> > +   {VNIC_OPT_IOC_GUID, "ioc_guid=%s"},<br>
> > +   {VNIC_OPT_DGID, "dgid=%s"},<br>
> > +   {VNIC_OPT_PKEY, "pkey=%x"},<br>
> > +   {VNIC_OPT_NAME, "name=%s"},<br>
> > +   {VNIC_OPT_INSTANCE, "instance=%d"},<br>
> > +   {VNIC_OPT_RXCSUM, "rx_csum=%s"},<br>
> > +   {VNIC_OPT_TXCSUM, "tx_csum=%s"},<br>
> > +   {VNIC_OPT_HEARTBEAT, "heartbeat=%d"},<br>
> > +   {VNIC_OPT_IOC_STRING, "ioc_string=\"%s"},<br>
> > +   {VNIC_OPT_IB_MULTICAST, "ib_multicast=%s"},<br>
> > +   {VNIC_OPT_ERR, NULL}<br>
> > +};<br>
> ><br>
><br>
> No sysfs is supposed to be one value per file use separate attributes<br>
> for each one. This also eliminates the parsing code.<br></div></div><br>
And yes, multiple values per sysfs file are not allowed, sorry, please<br>
change this.  If you need to configure your device through an interface<br>
like this, consider using configfs instead, that is what it is there<br>
for.</blockquote><div> </div><div>Documentation/filesystems/configfs/configfs.txt <<snip>><br><div><br>                  [Using configfs]<br><br>                  Like sysfs, attributes should be ASCII text files, preferably<br>

                  with only one value per file.  The same efficiency caveats from sysfs<br>                  apply.  Don't mix more than one attribute in one attribute file.<br><br></div>
It looks like configfs also does not allow multiple attributes per
file.  So, in that case, shall we modify our sysfs code to support one
value per sysfs file? With this approach, the impact on user space applications that we have which depend on the qlgc_vnic driver sysfs interface will be less.<br>


</div><div><br>Thanks and Regards,<br>Amar  <br></div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><br>
<div><div></div><div class="Wj3C7c">_______________________________________________<br>
general mailing list<br>
<a href="mailto:general@lists.openfabrics.org">general@lists.openfabrics.org</a><br>
<a href="http://lists.openfabrics.org/cgi-bin/mailman/listinfo/general" target="_blank">http://lists.openfabrics.org/cgi-bin/mailman/listinfo/general</a><br>
<br>
To unsubscribe, please visit <a href="http://openib.org/mailman/listinfo/openib-general" target="_blank">http://openib.org/mailman/listinfo/openib-general</a><br>
</div></div></blockquote></div><br>