FW: AW: Kontakt.

2019-05-30 Thread info
Sehr geehrte Damen und Herren, ich wende mich an Sie, da ich der Meinung bin, dass sich die von Ihnen auf der Webseite angebotenen Produkte ausgezeichnet dazu eignen, im Internet gefördert zu werden. Deshalb möchte ich Ihnen die Tools anbieten, die es erlauben, den Verkauf von Ihren Produkten u

RE

2019-05-30 Thread detsad103
Sehr geehrter Begünstigter. Sie wurden ausgewählt, um Euro zu erhalten, 950.000,00 EURO, als Wohltätigkeitsorganisation Spenden / Hilfe von den Vereinten Nationen. Antwort für mehr Informationen und Ansprüche. Wir gratulieren Ihnen im Namen der Stiftung. Freundliche Grüße, Anna Ryan

Re: [PATCH 06/24] virtio_scsi: use reserved commands for TMF

2019-05-30 Thread John Garry
On 29/05/2019 14:28, Hannes Reinecke wrote: static int virtscsi_map_queues(struct Scsi_Host *shost) @@ -827,6 +830,8 @@ static int virtscsi_probe(struct virtio_device *vdev) shost->max_channel = 0; shost->max_cmd_len = VIRTIO_SCSI_CDB_SIZE; shost->nr_hw_queues = num_queu

Re: [PATCH 03/24] scsi: add 'nr_reserved_cmds' field to the SCSI host template

2019-05-30 Thread John Garry
On 29/05/2019 14:28, Hannes Reinecke wrote: From: Hannes Reinecke Add a new field 'nr_reserved_cmds' to the SCSI host template to instruct the block layer to set aside a tag space for reserved commands. Out of curiousity, is there a reason why this would not also be added to scsi_host_templ

Re: [PATCH v2 08/10] mpt3sas: Enable interrupt coalescing on high iops

2019-05-30 Thread Sreekanth Reddy
On Thu, May 30, 2019 at 6:36 AM Martin K. Petersen wrote: > > > Suganath, > > > This configuration should reset during driver unload or shutdown to > > the default settings. For this driver takes copy of default ioc page 1 > > and copy backs the default or unmodified ioc page1 during unload and >

Re: [PATCH v2 06/10] mpt3sas:save msix index and use same while posting RD

2019-05-30 Thread Sreekanth Reddy
On Thu, May 30, 2019 at 6:34 AM Martin K. Petersen wrote: > > > Suganath, > > > +static u8 > > +_base_set_and_get_msix_index(struct MPT3SAS_ADAPTER *ioc, u16 smid) > > +{ > > + struct scsiio_tracker *st; > > + > > + st = (smid < ioc->hi_priority_smid) ? > > + (_get_st_from_smid

Re: [PATCH 11/24] scsi: add scsi_host_get_reserved_cmd()

2019-05-30 Thread Hannes Reinecke
On 5/29/19 9:36 PM, Bart Van Assche wrote: On 5/29/19 10:38 AM, Hannes Reinecke wrote: On 5/29/19 5:19 PM, Bart Van Assche wrote: On 5/29/19 6:28 AM, Hannes Reinecke wrote: +    rq = blk_mq_alloc_request(shost->reserved_cmd_q, +  REQ_OP_DRV_OUT | REQ_NOWAIT, + 

Re: [PATCH 02/24] scsi: add scsi_{get,put}_reserved_cmd()

2019-05-30 Thread Hannes Reinecke
On 5/30/19 8:41 AM, Ming Lei wrote: On Wed, May 29, 2019 at 03:28:39PM +0200, Hannes Reinecke wrote: Add helper functions to retrieve SCSI commands from the reserved tag pool. Signed-off-by: Hannes Reinecke --- include/scsi/scsi_tcq.h | 22 ++ 1 file changed, 22 insertio

Re: [PATCH 03/24] scsi: add 'nr_reserved_cmds' field to the SCSI host template

2019-05-30 Thread Hannes Reinecke
On 5/30/19 2:51 PM, John Garry wrote: On 29/05/2019 14:28, Hannes Reinecke wrote: From: Hannes Reinecke Add a new field 'nr_reserved_cmds' to the SCSI host template to instruct the block layer to set aside a tag space for reserved commands. Out of curiousity, is there a reason why this woul

Re: [PATCH 06/24] virtio_scsi: use reserved commands for TMF

2019-05-30 Thread Hannes Reinecke
On 5/30/19 2:35 PM, John Garry wrote: On 29/05/2019 14:28, Hannes Reinecke wrote:  static int virtscsi_map_queues(struct Scsi_Host *shost) @@ -827,6 +830,8 @@ static int virtscsi_probe(struct virtio_device *vdev) shost->max_channel = 0; shost->max_cmd_len = VIRTIO_SCSI_CDB_SIZE;

Re: [PATCH 10/24] scsi: allocate separate queue for reserved commands

2019-05-30 Thread John Garry
On 29/05/2019 14:28, Hannes Reinecke wrote: From: Hannes Reinecke Allocate a separate 'reserved_cmd_q' for sending reserved commands. Signed-off-by: Hannes Reinecke --- drivers/scsi/scsi_lib.c | 15 ++- include/scsi/scsi_host.h | 4 2 files changed, 18 insertions(+), 1 del

Re: [PATCH 02/24] scsi: add scsi_{get,put}_reserved_cmd()

2019-05-30 Thread Ming Lei
On Thu, May 30, 2019 at 10:57 PM Hannes Reinecke wrote: > > On 5/30/19 8:41 AM, Ming Lei wrote: > > On Wed, May 29, 2019 at 03:28:39PM +0200, Hannes Reinecke wrote: > >> Add helper functions to retrieve SCSI commands from the reserved > >> tag pool. > >> > >> Signed-off-by: Hannes Reinecke > >> -

Re: [PATCH 02/24] scsi: add scsi_{get,put}_reserved_cmd()

2019-05-30 Thread Hannes Reinecke
On 5/30/19 5:48 PM, Ming Lei wrote: On Thu, May 30, 2019 at 10:57 PM Hannes Reinecke wrote: On 5/30/19 8:41 AM, Ming Lei wrote: On Wed, May 29, 2019 at 03:28:39PM +0200, Hannes Reinecke wrote: Add helper functions to retrieve SCSI commands from the reserved tag pool. Signed-off-by: Hannes R

Re: [PATCH 10/24] scsi: allocate separate queue for reserved commands

2019-05-30 Thread Hannes Reinecke
On 5/30/19 5:28 PM, John Garry wrote: On 29/05/2019 14:28, Hannes Reinecke wrote: From: Hannes Reinecke Allocate a separate 'reserved_cmd_q' for sending reserved commands. Signed-off-by: Hannes Reinecke ---  drivers/scsi/scsi_lib.c  | 15 ++-  include/scsi/scsi_host.h |  4  2

Re: [Patch v2] wd719x: pass GFP_ATOMIC instead of GFP_KERNEL linux-ker...@vger.kernel.org

2019-05-30 Thread Hariprasad Kelam
On Wed, May 29, 2019 at 02:13:18PM -0700, David Rientjes wrote: > On Wed, 29 May 2019, Hariprasad Kelam wrote: > > > dont acquire lock before calling wd719x_chip_init. > > > > Issue identified by coccicheck > > > > Signed-off-by: Hariprasad Kelam > > - > > changes in v1: Replace GFP_KERNEL

URGENT REPLY FOR THIS BUSINESS...

2019-05-30 Thread Ms Lisa Hugh
Dear Friend, I am Ms Lisa Hugh work with the department of Audit and accounting manager here in the Bank, There is this fund that was keep in my custody years ago,please i need your assistance for the transferring of thIs fund to your bank account for both of us benefit for life time inves

Re: [Patch v2] wd719x: pass GFP_ATOMIC instead of GFP_KERNEL linux-ker...@vger.kernel.org

2019-05-30 Thread Ondrej Zary
On Thursday 30 May 2019 20:10:44 Hariprasad Kelam wrote: > On Wed, May 29, 2019 at 02:13:18PM -0700, David Rientjes wrote: > > On Wed, 29 May 2019, Hariprasad Kelam wrote: > > > > > dont acquire lock before calling wd719x_chip_init. > > > > > > Issue identified by coccicheck > > > > > > Signed-o

Dear Friend

2019-05-30 Thread Mark Bobolo
I have a business proposal in the tune of $ 10.2 Million USD for you to handle with me. I have an opportunity to transfer this debt to your bank account in your country to our client. I am inviting you in this transaction Where this money can be shared between us at ratio of 60/40% and help the ne