Re: [PATCH 3/6] open iscsi iser transport provider code

From: Stephen Hemminger
Date: Thu Apr 27 2006 - 13:01:40 EST


On Thu, 27 Apr 2006 15:31:52 +0300 (IDT)
Or Gerlitz <ogerlitz@xxxxxxxxxxxx> wrote:

> Signed-off-by: Or Gerlitz <ogerlitz@xxxxxxxxxxxx>
>
> --- /usr/src/linux-2.6.17-rc3/drivers/infiniband/ulp/iser-x/iscsi_iser.c 1970-01-01 02:00:00.000000000 +0200
> +++ /usr/src/linux-2.6.17-rc3/drivers/infiniband/ulp/iser/iscsi_iser.c 2006-04-26 12:50:11.000000000 +0300
> @@ -0,0 +1,800 @@
> +/*
> + * iSCSI Initiator over iSER Data-Path
> + *
> + * Copyright (C) 2004 Dmitry Yusupov
> + * Copyright (C) 2004 Alex Aizman
> + * Copyright (C) 2005 Mike Christie
> + * Copyright (c) 2005, 2006 Voltaire, Inc. All rights reserved.
> + * maintained by openib-general@xxxxxxxxxx
> + *
> + * This software is available to you under a choice of one of two
> + * licenses. You may choose to be licensed under the terms of the GNU
> + * General Public License (GPL) Version 2, available from the file
> + * COPYING in the main directory of this source tree, or the
> + * OpenIB.org BSD license below:
> + *
> + * Redistribution and use in source and binary forms, with or
> + * without modification, are permitted provided that the following
> + * conditions are met:
> + *
> + * - Redistributions of source code must retain the above
> + * copyright notice, this list of conditions and the following
> + * disclaimer.
> + *
> + * - Redistributions in binary form must reproduce the above
> + * copyright notice, this list of conditions and the following
> + * disclaimer in the documentation and/or other materials
> + * provided with the distribution.
> + *
> + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
> + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
> + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
> + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
> + * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
> + * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
> + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
> + * SOFTWARE.
> + *
> + * Credits:
> + * Christoph Hellwig
> + * FUJITA Tomonori
> + * Arne Redlich
> + * Zhenyu Wang
> + * Modified by:
> + * Erez Zilber
> + *
> + *
> + * $Id: iscsi_iser.c 6643 2006-04-26 10:01:01Z ogerlitz $
> + */
> +
> +#include <linux/types.h>
> +#include <linux/list.h>
> +#include <linux/hardirq.h>
> +#include <linux/kfifo.h>
> +#include <linux/blkdev.h>
> +#include <linux/init.h>
> +#include <linux/ioctl.h>
> +#include <linux/devfs_fs_kernel.h>
> +#include <linux/cdev.h>
> +#include <linux/in.h>
> +#include <linux/net.h>
> +#include <linux/scatterlist.h>
> +#include <linux/delay.h>
> +
> +#include <net/sock.h>
> +
> +#include <asm/uaccess.h>
> +
> +#include <scsi/scsi_cmnd.h>
> +#include <scsi/scsi_device.h>
> +#include <scsi/scsi_eh.h>
> +#include <scsi/scsi_request.h>
> +#include <scsi/scsi_tcq.h>
> +#include <scsi/scsi_host.h>
> +#include <scsi/scsi.h>
> +#include <scsi/scsi_transport_iscsi.h>
> +
> +#include "iscsi_iser.h"
> +
> +static unsigned int iscsi_max_lun = 512;
> +module_param_named(max_lun, iscsi_max_lun, uint, S_IRUGO);
> +
> +#define DRV_VER "$Rev: 227 $"
> +#define DRV_DATE "$LastChangedDate: 2006-03-22 16:47:30 +0200 (Wed, 22 Mar 2006) $"
> +

Don't use your magic revision control tags, they won't be updated by other
revision control systems.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/