All of lore.kernel.org
 help / color / mirror / Atom feed
* Fwd: Delivery Status Notification (Failure)
       [not found]   ` <CAC+NB+NcYvmTRht1Go4Dar_Jg2CYTa=GQ4E6YxpBeu8MM=zCAg@mail.gmail.com>
@ 2014-02-25  9:45     ` Jakub Józefowicz
  0 siblings, 0 replies; 16+ messages in thread
From: Jakub Józefowicz @ 2014-02-25  9:45 UTC (permalink / raw)
  To: linux-wireless, sgruszka

Hi,

I am looking for the support with below mentioned problem. I have a Intel
Corporation PRO/Wireless 3945ABG [Golan] Network Connection (rev 02) wifi
card instaled. From the Intel technical support I received the information,
that this card is dual band and supports 5GHz standard. I cannot see this
network, but only 2,4GHz one. I have Ubuntu 12.04 instaled and tried to
update given below drivers. I am afraid I need a help with this process.
Would you be so kind and give me step by step manual, how to update the
intel drivers (together with needed commands, if possible)?

Thank you in advance.

.

---------- Forwarded message ----------
From: <support.replies@mailbox.intel.com>
Date: 2014-01-30
Subject: {ticketno:[8000861141]} - Your Intel Customer Support Inquiry


Dear Sir,

Thank you for contacting Intel Customer Support.

As we understand it, you would like to know about your wireless card
compatibility. The Wireless card you mentioned is dual band and support
5ghz. Please check for your driver version for Linux as it may be outdated.
On the following link we have support for linux drivers and community
forums that may be able to answer your questions.

http://wireless.kernel.org/en/users/Drivers/iwlwifi

*Important note: Should you need further assistance from us regarding your
inquiry, we would highly appreciate if you could simply reply to this email
of ours, instead of sending a brand new email, unless it is a different
issue/inquiry.  This will allow us to provide timely support and will keep
the communications for this issue/inquiry as part of the same service
ticket.*

Sincerely,

Manfred M.
Intel Customer Support

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Fwd: Delivery Status Notification (Failure)
       [not found] ` <5d4c34ea.1c69fb81.a7a36.5f7f.GMR@mx.google.com>
@ 2019-08-08 19:58   ` Nigel Sollars
  0 siblings, 0 replies; 16+ messages in thread
From: Nigel Sollars @ 2019-08-08 19:58 UTC (permalink / raw)
  To: linux-wireless

Hi,

So I have been trying to reach out in aim to get this driver fixed as
its regressed now to a total non working state.

The card can see access points, but thats about as good as it gets as
trying to connect to any networks ( either 2.4 ot 5 Ghz ) results in
the following,

  wlp3s0: CTRL-EVENT-SCAN-FAILED ret=-22 retry=1

( alot of these ) which then resets connection status with a failed timeout.

I am currently running FedoraCore 30 with the 5.2.5-200 kernel updated
from 5.1.x yesterday. The firmware loaded is,

loaded firmware version 9.221.4.1 build 25532 op_mode iwldvm

Now with all that said, using a Linux Mint live boot from a usb device
yeilds the card working fine at both 2.4 and 5ghz speeds, it connects
within seconds. The kernal in this live boot is 4.15.x and uses the
same firmware build as my FC install.

I did see strange behavior with this card from around 4.18 to 20,
thinking the card might have developed a fault and obtained a new one.
This proved that this was not the case as I get the exact same
behavior from both cards.

Hope this information is helpful to solve quickly, please reach out
for more information if required

Thanks
Nige

-- 
“Science is a differential equation. Religion is a boundary condition.”

                           Alan Turing

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Fwd: Delivery Status Notification (Failure)
       [not found] ` <94eb2c1899c80a81df053d91af4f@google.com>
@ 2016-09-28 13:58   ` gengdongjiu
  0 siblings, 0 replies; 16+ messages in thread
From: gengdongjiu @ 2016-09-28 13:58 UTC (permalink / raw)
  To: linux-kernel

Hi,
  In the kernel 4.1, I am confused for the
runnable_avg_sum/avg_period/running_avg_sum,
for example below code.
Does the task runnable_avg_sum includes running_avg_sum? Does avg_period
includes the task runnable_avg_sum and the task sleep time? thank you.

static inline void __update_task_entity_contrib(struct sched_entity *se)
{
        u32 contrib;

        /* avoid overflowing a 32-bit type w/ SCHED_LOAD_SCALE */
        contrib = se->avg.runnable_avg_sum * scale_load_down(se->load.
weight);
        contrib /= (se->avg.avg_period + 1);
        se->avg.load_avg_contrib = scale_load(contrib);
}


static inline void __update_task_entity_utilization(struct sched_entity *se)
{
        u32 contrib;

        /* avoid overflowing a 32-bit type w/ SCHED_LOAD_SCALE */
        contrib = se->avg.running_avg_sum * scale_load_down(SCHED_LOAD_
SCALE);
        contrib /= (se->avg.avg_period + 1);
        se->avg.utilization_avg_contrib = scale_load(contrib);
}

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: Fwd: Delivery Status Notification (Failure)
  2015-09-24 12:03 ` Naveen
@ 2015-09-24 12:50   ` Andy Gospodarek
  0 siblings, 0 replies; 16+ messages in thread
From: Andy Gospodarek @ 2015-09-24 12:50 UTC (permalink / raw)
  To: Naveen; +Cc: netdev

On Thu, Sep 24, 2015 at 08:03:39AM -0400, Naveen wrote:
> Hi
>      Right now the only way to detect if an interface has a peer(veth)
> is touse ethtool -S. Instead I was thinking of adding it to device
> attributes as a peer_ifndex entry. In drivers/net/veth.c I could add
> an entry to
> dev->groups for a veth specific group. Would that be acceptable ?
> 

I've had similar discussions with others who agree with you that the
current method is not ideal -- especially when there are a large number
of namespaces in in use on a system.  One such proposal was to have the
output in ip link show (possibly only with the '-d' option), but no test
patches have been written yet....

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Fwd: Delivery Status Notification (Failure)
       [not found] <047d7b5dbb76a0065405207cfe24@google.com>
@ 2015-09-24 12:03 ` Naveen
  2015-09-24 12:50   ` Andy Gospodarek
  0 siblings, 1 reply; 16+ messages in thread
From: Naveen @ 2015-09-24 12:03 UTC (permalink / raw)
  To: netdev

Hi
     Right now the only way to detect if an interface has a peer(veth)
is touse ethtool -S. Instead I was thinking of adding it to device
attributes as a peer_ifndex entry. In drivers/net/veth.c I could add
an entry to
dev->groups for a veth specific group. Would that be acceptable ?

Thanks
Naveen

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: Fwd: Delivery Status Notification (Failure)
  2014-12-21 23:49     ` Hugo Mills
@ 2014-12-22  0:03       ` Tom
  0 siblings, 0 replies; 16+ messages in thread
From: Tom @ 2014-12-22  0:03 UTC (permalink / raw)
  To: Hugo Mills, Tom, linux-btrfs

I think this is the relevant part:

Dec 21 23:01:25 jackal kernel: BTRFS: error (device sda4) in
__btrfs_unlink_inode:3757: errno=-2 No such entry
Dec 21 23:01:26 jackal kernel: BTRFS info (device sda4): forced readonly
Dec 21 23:01:26 jackal kernel: BTRFS: error (device sda4) in
btrfs_rename:8524: errno=-2 No such entry

It seemed to be related to opening Chromium - I have moved the
~/.config/chromium/Default directory and it doesn't seem to be
remounting the fs ro now.

On 21 December 2014 at 23:49, Hugo Mills <hugo@carfax.org.uk> wrote:
> On Sun, Dec 21, 2014 at 11:41:16PM +0000, Tom wrote:
>> Hi,
>>
>> My laptop experienced a loss of power that seems to have caused some kind
>> of corruption on my /home btrfs partition.
>>
>> Upon boot, the partition is mounted rw, but as soon as I start accessing
>> data my /home is remounted ro
>>
>> uname -a
>> Linux jackal 3.17.6-1-ARCH #1 SMP PREEMPT Sun Dec 7 23:43:32 UTC 2014
>> x86_64 GNU/Linux
>>
>> btrfs --version
>> Btrfs v3.17.3
>>
>> btrfs fi show
>> Label: none  uuid: a5ff01bc-dd6c-4d33-95a4-5caca473f4bc
>>     Total devices 1 FS bytes used 144.86GiB
>>     devid    1 size 250.08GiB used 238.04GiB path /dev/sda4
>>
>> Btrfs v3.17.3
>>
>>
>> btrfs fi df /home/
>> Data, single: total=234.01GiB, used=143.67GiB
>> System, DUP: total=8.00MiB, used=32.00KiB
>> System, single: total=4.00MiB, used=0.00B
>> Metadata, DUP: total=2.00GiB, used=1.19GiB
>> Metadata, single: total=8.00MiB, used=0.00B
>> GlobalReserve, single: total=408.00MiB, used=0.00B
>>
>>
>>
>> Is there anything obvious in the dmesg that will help me recover this?
>
>    Can't tell from the above -- could you copy the relevant time
> period of dmesg to an email so we can see? :)
>
>    Hugo.
>
>> Thanks for any help,
>>
>> Tom
>
> --
> Hugo Mills             | I always felt that as a C programmer, I was becoming
> hugo@... carfax.org.uk | typecast.
> http://carfax.org.uk/  |
> PGP: 65E74AC0          |

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: Fwd: Delivery Status Notification (Failure)
  2014-12-21 23:41   ` Tom
@ 2014-12-21 23:49     ` Hugo Mills
  2014-12-22  0:03       ` Tom
  0 siblings, 1 reply; 16+ messages in thread
From: Hugo Mills @ 2014-12-21 23:49 UTC (permalink / raw)
  To: Tom; +Cc: linux-btrfs

[-- Attachment #1: Type: text/plain, Size: 1351 bytes --]

On Sun, Dec 21, 2014 at 11:41:16PM +0000, Tom wrote:
> Hi,
> 
> My laptop experienced a loss of power that seems to have caused some kind
> of corruption on my /home btrfs partition.
> 
> Upon boot, the partition is mounted rw, but as soon as I start accessing
> data my /home is remounted ro
> 
> uname -a
> Linux jackal 3.17.6-1-ARCH #1 SMP PREEMPT Sun Dec 7 23:43:32 UTC 2014
> x86_64 GNU/Linux
> 
> btrfs --version
> Btrfs v3.17.3
> 
> btrfs fi show
> Label: none  uuid: a5ff01bc-dd6c-4d33-95a4-5caca473f4bc
>     Total devices 1 FS bytes used 144.86GiB
>     devid    1 size 250.08GiB used 238.04GiB path /dev/sda4
> 
> Btrfs v3.17.3
> 
> 
> btrfs fi df /home/
> Data, single: total=234.01GiB, used=143.67GiB
> System, DUP: total=8.00MiB, used=32.00KiB
> System, single: total=4.00MiB, used=0.00B
> Metadata, DUP: total=2.00GiB, used=1.19GiB
> Metadata, single: total=8.00MiB, used=0.00B
> GlobalReserve, single: total=408.00MiB, used=0.00B
> 
> 
> 
> Is there anything obvious in the dmesg that will help me recover this?

   Can't tell from the above -- could you copy the relevant time
period of dmesg to an email so we can see? :)

   Hugo.

> Thanks for any help,
> 
> Tom

-- 
Hugo Mills             | I always felt that as a C programmer, I was becoming
hugo@... carfax.org.uk | typecast.
http://carfax.org.uk/  |
PGP: 65E74AC0          |

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Fwd: Delivery Status Notification (Failure)
       [not found] ` <001a11c3dd5e0f76ea050ac2678e@google.com>
@ 2014-12-21 23:41   ` Tom
  2014-12-21 23:49     ` Hugo Mills
  0 siblings, 1 reply; 16+ messages in thread
From: Tom @ 2014-12-21 23:41 UTC (permalink / raw)
  To: linux-btrfs

Hi,

My laptop experienced a loss of power that seems to have caused some kind
of corruption on my /home btrfs partition.

Upon boot, the partition is mounted rw, but as soon as I start accessing
data my /home is remounted ro

uname -a
Linux jackal 3.17.6-1-ARCH #1 SMP PREEMPT Sun Dec 7 23:43:32 UTC 2014
x86_64 GNU/Linux

btrfs --version
Btrfs v3.17.3

btrfs fi show
Label: none  uuid: a5ff01bc-dd6c-4d33-95a4-5caca473f4bc
    Total devices 1 FS bytes used 144.86GiB
    devid    1 size 250.08GiB used 238.04GiB path /dev/sda4

Btrfs v3.17.3


btrfs fi df /home/
Data, single: total=234.01GiB, used=143.67GiB
System, DUP: total=8.00MiB, used=32.00KiB
System, single: total=4.00MiB, used=0.00B
Metadata, DUP: total=2.00GiB, used=1.19GiB
Metadata, single: total=8.00MiB, used=0.00B
GlobalReserve, single: total=408.00MiB, used=0.00B



Is there anything obvious in the dmesg that will help me recover this?

Thanks for any help,

Tom

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: Fwd: Delivery Status Notification (Failure)
  2013-04-06  4:15   ` Drew Gross
@ 2013-04-06  4:49     ` Jeff King
  0 siblings, 0 replies; 16+ messages in thread
From: Jeff King @ 2013-04-06  4:49 UTC (permalink / raw)
  To: Drew Gross; +Cc: git

On Sat, Apr 06, 2013 at 12:15:33AM -0400, Drew Gross wrote:

> I'm am trying to patch git to refuse to commit if there are both staged and
> unstaged changes, and I pass the -a flag. I expected this simple addition
> to parse_and_validate_options() in commit.c to accomplish most of what I
> want:
> 
> if (all && s->workdir_dirty)
>     die(_("Cannot commit with -a if there are staged and unstaged changes"));
> 
> But when compiled, this will commit anyway even with staged and unstaged
> files. I think I misunderstanding the workdir_dirty flag. Can someone help
> me?

I am not sure if that is a good safety measure in general. But
ignoring that question for a moment, there are a few issues with your
proposed implementation:

  1. workdir_dirty only talks about unstaged changes; it sounds like you
     want to check for both staged and unstaged.

  2. no flags in in the wt_status struct are set until wt_status_collect
     is called; you need to put your check later. But of course by the
     time we call it, we have already updated the index, so you would
     not know anymore which changes were already in the index and which
     were added by "-a".

  3. we do not always run wt_collect_status (e.g., if you are not going
     to run an editor, we do not bother going to the effort to create
     the commit template).

So you'd probably need something more like this:

diff --git a/builtin/commit.c b/builtin/commit.c
index 4620437..ebb5480 100644
--- a/builtin/commit.c
+++ b/builtin/commit.c
@@ -1061,6 +1061,10 @@ static int parse_and_validate_options(int argc, const char *argv[],
 	if (status_format != STATUS_FORMAT_NONE)
 		dry_run = 1;
 
+	wt_status_collect(s);
+	if (all && s->change.nr && s->workdir_dirty)
+		die("Cannot use '-a' with staged and unstaged changes");
+
 	return argc;
 }
 

Note that this may run the diff-index and diff-files procedures twice
(once here, and once later if we actually call run_status). If were
doing this for real (and I do not think it is something we want to take
upstream anyway), you would want to make sure that information was
cached.

-Peff

^ permalink raw reply related	[flat|nested] 16+ messages in thread

* Fwd: Delivery Status Notification (Failure)
       [not found] ` <047d7b3a85a201067604d9a948e8@google.com>
@ 2013-04-06  4:15   ` Drew Gross
  2013-04-06  4:49     ` Jeff King
  0 siblings, 1 reply; 16+ messages in thread
From: Drew Gross @ 2013-04-06  4:15 UTC (permalink / raw)
  To: git

Hello,

I'm am trying to patch git to refuse to commit if there are both staged and
unstaged changes, and I pass the -a flag. I expected this simple addition
to parse_and_validate_options() in commit.c to accomplish most of what I
want:

if (all && s->workdir_dirty)
    die(_("Cannot commit with -a if there are staged and unstaged changes"));

But when compiled, this will commit anyway even with staged and unstaged
files. I think I misunderstanding the workdir_dirty flag. Can someone help
me?

Drew Gross

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Fwd: Delivery Status Notification (Failure)
       [not found]               ` <CAGfy=6mesQn=wGQiXgKDwKd3zjYWNtYdn+xY=StSKgDqiNa9NA@mail.gmail.com>
@ 2012-10-30  9:02                 ` hemant surale
  0 siblings, 0 replies; 16+ messages in thread
From: hemant surale @ 2012-10-30  9:02 UTC (permalink / raw)
  To: ceph-devel

---------- Forwarded message ----------
From: hemant surale <hemant.surale@gmail.com>
Date: Tue, Oct 30, 2012 at 2:28 PM
Subject: Re: Delivery Status Notification (Failure)
To: Dan Mick <dan.mick@inktank.com>


Sir,
  Now "mkcephfs" is working fine but even after that when i tried to
execute "service ceph start " following error is observed


------------------------------------------------------------------------------------------------------------------------------------
root@atish-virtual-machine:/usr/local/bin# service ceph start
=== mon.alpha ===
Starting Ceph mon.alpha on atish-virtual-machine...
bash: /usr/bin/ceph-mon: Is a directory
failed: ' /usr/bin/ceph-mon -i alpha --pid-file
/var/run/ceph/mon.alpha.pid -c /etc/ceph/ceph.conf '
-------------------------------------------------------------------------------------------------------------------------------------


Thanks & Regards,
Hemant Surale.


On Tue, Oct 30, 2012 at 11:33 AM, hemant surale <hemant.surale@gmail.com> wrote:
> -------------------//ceph.conf-----------------------------------------------------------------
>
> [global]
>         auth supported = none
>
> [mon]
>        # mon data = /ceph_data/mon.$id
>
> [mds]
>
> [osd]
>         #osd data = /ceph_data/osd.$id
>         #osd journal = /ceph_data/osd.$id.journal
>         osd journal size = 1000
>         filestore xattr use omap = true
>
> [mon.alpha]
>         host = atish-virtual-machine
>         mon addr = 10.72.148.248:6789
>
> [osd.0]
>         host = atish-virtual-machine
>         host addr = 10.72.148.248:6789
>
>
> [mds.alpha]
>         host = atish-virtual-machine
>         host addr = 10.72.148.248:6789
> ----------------------------------------------------------------------------------------------------------------------------------------------------
>
>
> -
> Hemant Surale
>
> On Tue, Oct 30, 2012 at 11:31 AM, Dan Mick <dan.mick@inktank.com> wrote:
>> This is totally different from not finding ceph-common.sh.
>>
>> Please show your ceph.conf.
>>
>>
>> On Oct 29, 2012, at 9:11 PM, hemant surale <hemant.surale@gmail.com> wrote:
>>
>>> After performing all required steps for building I simply executed
>>> "mkcephfs -a -c /etc/ceph/ceph/ceph/conf -k ceph.keyring" then it
>>> showed Error:
>>>
>>> ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
>>>
>>> temp dir is /tmp/mkcephfs.V45sNNmgk8
>>> preparing monmap in /tmp/mkcephfs.V45sNNmgk8/monmap
>>> /usr/local/bin/monmaptool --create --clobber --add alpha
>>> 10.72.148.248:6789 --print /tmp/mkcephfs.V45sNNmgk8/monmap
>>> /usr/local/bin/monmaptool: monmap file /tmp/mkcephfs.V45sNNmgk8/monmap
>>> /usr/local/bin/monmaptool: generated fsid d30d3dbf-232f-46cf-9e64-ed31f9083a0b
>>> epoch 0
>>> fsid d30d3dbf-232f-46cf-9e64-ed31f9083a0b
>>> last_changed 2012-10-30 09:38:44.916885
>>> created 2012-10-30 09:38:44.916885
>>> 0: 10.72.148.248:6789/0 mon.alpha
>>> /usr/local/bin/monmaptool: writing epoch 0 to
>>> /tmp/mkcephfs.V45sNNmgk8/monmap (1 monitors)
>>> === osd.0 ===
>>> 2012-10-30 09:38:45.008029 b6fa5740 -1
>>> filestore(/var/lib/ceph/osd/ceph-0) limited size xattrs -- enable
>>> filestore_xattr_use_omap
>>> 2012-10-30 09:38:45.008044 b6fa5740 -1 OSD::mkfs: couldn't mount
>>> FileStore: error -95
>>> 2012-10-30 09:38:45.008069 b6fa5740 -1  ** ERROR: error creating empty
>>> object store in /var/lib/ceph/osd/ceph-0: (95) Operation not supported
>>> failed: '/usr/local/sbin/mkcephfs -d /tmp/mkcephfs.V45sNNmgk8
>>> --init-daemon osd.0'
>>> ----------------------------------------------------------------------------------------------------------------------------------------------------------
>>> And According to my knowledge Till mkcephfs doesn't work fine
>>> "service Ceph start" wont work. Can you please guide me about steps
>>> required after successfully executing build instructions given at
>>> official site.
>>>
>>>
>>> Thanks & Regards,
>>> Hemant Surale.
>>>
>>>
>>>
>>> On Tue, Oct 30, 2012 at 1:49 AM, Dan Mick <dan.mick@inktank.com> wrote:
>>>> Last time you asked this, I responded (on 18 Oct):
>>>>
>>>> So, clearly something went wrong with the installation step, and this file
>>>> was not created.  How did you install after building?
>>>>
>>>>
>>>> On 10/29/2012 02:27 AM, hemant surale wrote:
>>>>>
>>>>> Hi Folks ,
>>>>>
>>>>> I have executed all required steps to build Ceph from source but now
>>>>> when I execute "service Ceph start" it shows
>>>>>
>>>>>
>>>>> ---------------------------------------//Error--------------------------------------------
>>>>> root@atish-virtual-machine:/ceph_data# service ceph start
>>>>> /etc/init.d/ceph: 37: .: Can't open /usr/lib/ceph/ceph_common.sh
>>>>>
>>>>> -------------------------------------------------------------------------------------------
>>>>>
>>>>>
>>>>> Please help me out .

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: Fwd: Delivery Status Notification (Failure)
  2011-08-27 17:17   ` Henning Sprang
@ 2011-08-27 23:47     ` Ian Campbell
  0 siblings, 0 replies; 16+ messages in thread
From: Ian Campbell @ 2011-08-27 23:47 UTC (permalink / raw)
  To: Henning Sprang; +Cc: xen-devel

On Sat, 2011-08-27 at 18:17 +0100, Henning Sprang wrote:
> Hi,
> 
> I seem not to be able to unsubscribe from xen Lists.

Have you tried visiting the link in the original email? It is an
alternative to the reply-to-mail method which you've apparently tried.
Obviously both should work but maybe that will help you until we figure
out what is wrong with the mail-in option.

Ian.

> 
> Any help?!
> 
> 
> ---------- Forwarded message ----------
> From: Mail Delivery Subsystem <mailer-daemon@googlemail.com>
> Date: Sat, Aug 27, 2011 at 7:16 PM
> Subject: Delivery Status Notification (Failure)
> To: henning.sprang@gmail.com
> 
> 
> Delivery to the following recipient failed permanently:
> 
>     xen-devel-request@lists.xensource.com
> 
> Technical details of permanent failure:
> Google tried to deliver your message, but it was rejected by the
> recipient domain. We recommend contacting the other email provider for
> further information about the cause of this error. The error that the
> other server returned was: 550 550-Invalid recipient
> <xen-devel-request@lists.xensource.com
> 550 > (#5.1.1) (state 14).
> 
> ----- Original message -----
> 
> Received: by 10.150.13.4 with SMTP id 4mr3515950ybm.199.1314465359134; Sat, 27
>  Aug 2011 10:15:59 -0700 (PDT)
> MIME-Version: 1.0
> Received: by 10.151.50.7 with HTTP; Sat, 27 Aug 2011 10:15:39 -0700 (PDT)
> In-Reply-To: <mailman.0.1314456950.20745.xen-devel@lists.xensource.com>
> References: <mailman.0.1314456950.20745.xen-devel@lists.xensource.com>
> From: Henning Sprang <henning.sprang@gmail.com>
> Date: Sat, 27 Aug 2011 19:15:39 +0200
> Message-ID: <CAB10+Lvr+smqSRV99YLQCZZyyjiMYmJ8SL2nj-MVnpZj66MzYw@mail.gmail.com>
> Subject: Re: confirm e4d1858721366d871c270e93eef91eacb6b8be48
> To: xen-devel-request@lists.xensource.com
> Content-Type: text/plain; charset=ISO-8859-1
> Content-Transfer-Encoding: quoted-printable
> 
> On Sat, Aug 27, 2011 at 4:55 PM,  <xen-devel-request@lists.xensource.com> wrote:
> > Mailing list removal confirmation notice for mailing list Xen-devel
> >
> > We have received a request for the removal of your email address,
> > "henning.sprang@gmail.com" from the xen-devel@lists.xensource.com
> > mailing list.  To confirm that you want to be removed from this
> > mailing list, simply reply to this message, keeping the Subject:
> > header intact.  Or visit this web page:
> >
> >    http://lists.xensource.com/mailman/confirm/xen-devel/e4d1858721366d871c270e93eef91eacb6b8be48
> >
> >
> > Or include the following line -- and only the following line -- in a
> > message to xen-devel-request@lists.xensource.com:
> >
> >    confirm e4d1858721366d871c270e93eef91eacb6b8be48
> >
> > Note that simply sending a `reply' to this message should work from
> > most mail readers, since that usually leaves the Subject: line in the
> > right form (additional "Re:" text in the Subject: is okay).
> >
> > If you do not wish to be removed from this list, please simply
> > disregard this message.  If you think you are being maliciously
> > removed from the list, or have any other questions, send them to
> > xen-devel-owner@lists.xensource.com.
> >
> 
> 
> 
> --
> Henning Sprang
> http://www.sprang.de
> 
> 
> 

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Fwd: Delivery Status Notification (Failure)
       [not found] ` <000e0cd76280df88c404ab7fd0d8@google.com>
@ 2011-08-27 17:17   ` Henning Sprang
  2011-08-27 23:47     ` Ian Campbell
  0 siblings, 1 reply; 16+ messages in thread
From: Henning Sprang @ 2011-08-27 17:17 UTC (permalink / raw)
  To: xen-devel

Hi,

I seem not to be able to unsubscribe from xen Lists.

Any help?!


---------- Forwarded message ----------
From: Mail Delivery Subsystem <mailer-daemon@googlemail.com>
Date: Sat, Aug 27, 2011 at 7:16 PM
Subject: Delivery Status Notification (Failure)
To: henning.sprang@gmail.com


Delivery to the following recipient failed permanently:

    xen-devel-request@lists.xensource.com

Technical details of permanent failure:
Google tried to deliver your message, but it was rejected by the
recipient domain. We recommend contacting the other email provider for
further information about the cause of this error. The error that the
other server returned was: 550 550-Invalid recipient
<xen-devel-request@lists.xensource.com
550 > (#5.1.1) (state 14).

----- Original message -----

Received: by 10.150.13.4 with SMTP id 4mr3515950ybm.199.1314465359134; Sat, 27
 Aug 2011 10:15:59 -0700 (PDT)
MIME-Version: 1.0
Received: by 10.151.50.7 with HTTP; Sat, 27 Aug 2011 10:15:39 -0700 (PDT)
In-Reply-To: <mailman.0.1314456950.20745.xen-devel@lists.xensource.com>
References: <mailman.0.1314456950.20745.xen-devel@lists.xensource.com>
From: Henning Sprang <henning.sprang@gmail.com>
Date: Sat, 27 Aug 2011 19:15:39 +0200
Message-ID: <CAB10+Lvr+smqSRV99YLQCZZyyjiMYmJ8SL2nj-MVnpZj66MzYw@mail.gmail.com>
Subject: Re: confirm e4d1858721366d871c270e93eef91eacb6b8be48
To: xen-devel-request@lists.xensource.com
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable

On Sat, Aug 27, 2011 at 4:55 PM,  <xen-devel-request@lists.xensource.com> wrote:
> Mailing list removal confirmation notice for mailing list Xen-devel
>
> We have received a request for the removal of your email address,
> "henning.sprang@gmail.com" from the xen-devel@lists.xensource.com
> mailing list.  To confirm that you want to be removed from this
> mailing list, simply reply to this message, keeping the Subject:
> header intact.  Or visit this web page:
>
>    http://lists.xensource.com/mailman/confirm/xen-devel/e4d1858721366d871c270e93eef91eacb6b8be48
>
>
> Or include the following line -- and only the following line -- in a
> message to xen-devel-request@lists.xensource.com:
>
>    confirm e4d1858721366d871c270e93eef91eacb6b8be48
>
> Note that simply sending a `reply' to this message should work from
> most mail readers, since that usually leaves the Subject: line in the
> right form (additional "Re:" text in the Subject: is okay).
>
> If you do not wish to be removed from this list, please simply
> disregard this message.  If you think you are being maliciously
> removed from the list, or have any other questions, send them to
> xen-devel-owner@lists.xensource.com.
>



--
Henning Sprang
http://www.sprang.de



-- 
Henning Sprang
http://www.sprang.de

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Fwd: Delivery Status Notification (Failure)
       [not found] ` <001485f274c8d0242a0481dc90a9@google.com>
@ 2010-03-15 20:20   ` Shahar Or
  0 siblings, 0 replies; 16+ messages in thread
From: Shahar Or @ 2010-03-15 20:20 UTC (permalink / raw)
  To: linux-media

OK, only text this time :)

---------- Forwarded message ----------
From: Mail Delivery Subsystem <mailer-daemon@googlemail.com>
Date: Mon, Mar 15, 2010 at 10:17 PM
Subject: Delivery Status Notification (Failure)
To: mightyiampresence@gmail.com


Delivery to the following recipient failed permanently:

    linux-media@vger.kernel.org

Technical details of permanent failure:
Google tried to deliver your message, but it was rejected by the
recipient domain. We recommend contacting the other email provider for
further information about the cause of this error. The error that the
other server returned was: 550 550 5.7.1 Content-Policy reject msg:
The message contains HTML subpart, therefore we consider it SPAM or
Outlook Virus.  TEXT/PLAIN is accepted.! BF:<U 0.498823>;
S936641Ab0COURI (state 18).

----- Original message -----

MIME-Version: 1.0
Received: by 10.216.178.70 with SMTP id e48mr24691wem.0.1268684226676; Mon, 15
       Mar 2010 13:17:06 -0700 (PDT)
In-Reply-To: <20100315191239.54f4c6fa@tele>
References: <bf87febf1003151024k7987318bv6f76a40c4d7daeee@mail.gmail.com>
        <20100315191239.54f4c6fa@tele>
Date: Mon, 15 Mar 2010 22:17:06 +0200
Message-ID: <bf87febf1003151317y4f15ef1fs1c1de6bca03602da@mail.gmail.com>
Subject: Re: [Spca50x-devs] 17a1:0118
From: Shahar Or <mightyiampresence@gmail.com>
To: Jean-Francois Moine <moinejf@free.fr>
Cc: SPCA50x Linux Device Driver Development
<spca50x-devs@lists.sourceforge.net>, rcml@lecurie.org,
       ropers <ropers@gmail.com>, Jean-Yves Lamoureux
<jylam@lnxscene.org>, linux-media@vger.kernel.org
Content-Type: multipart/mixed; boundary=001485f274c8a9ca510481dc90b5

On Mon, Mar 15, 2010 at 8:12 PM, Jean-Francois Moine <moinejf@free.fr>wrote:

> On Mon, 15 Mar 2010 19:24:24 +0200
> Shahar Or <email@shahar-or.co.il> wrote:
>
> > I have a non-supported one, with the ID 17a1:0118. Data attached.
> >
> > I am willing to cooperate with anything that I can, including testing
> > patches.
> >
> > I've noticed there's one here related:
> >
> http://lists-archives.org/spca50x-devs/01649-patch-for-17a1-0128-xpx-jpeg-webcam-tascorp.html
> >
> > I can also send the cam over by mail, if that is necessary.
> >
> > I'm subscribed to the list.
>
> Hello Shahar,
>
> A driver for this webcam is available (you may find it in the last
> gspca version that I have just uploaded - 2.9.6 - the subdriver is
> 'gspca_tasc.ko').
>
> The only problem is that nobody could yet decode the images! (Jens,
> Jean-Yves, any news?)
>
> About the list, all the linux video stuff is hosted at LinuxTv.org and
> the linux-media mailing-list at vger.kernel.org (see Cc:).
>
> Best regards.
>
> --
> Ken ar c'hentañ |             ** Breizh ha Linux atav! **
> Jef             |               http://moinejf.free.fr/
>

Yo, I've installed 2.6.9 and tested with vlc. Theres no image but
/dev/video0 exists. Here's dmesg attached.

BTW, I didn't get the part in the README about "If you used a distribution
from a LinuxTv mercurial repository,[...]".

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Fwd: Delivery Status Notification (Failure)
       [not found] ` <001636ed7681994278047e4e4a6f@google.com>
@ 2010-01-29 14:18   ` Laszlo Papp
  0 siblings, 0 replies; 16+ messages in thread
From: Laszlo Papp @ 2010-01-29 14:18 UTC (permalink / raw)
  To: git; +Cc: normalperson, lznuaa@gmail.com - Chinma/Shanghai/31

Hello,

It would be nice to use --pasword option on windows, like --username
option with git svn facility. I can't handle SVN repository with git
svn on windows if I'd like to authenticate myself with other user than
the default domain name of my windows.

If I use --username option, Frank Li said me it's not enough in
TortoiseGIT to provide a popup facility to type the password related
to the set --username option.

What's your opinion/suggestion/recommendation ?

Best Regards,
Laszlo Papp

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Fwd: Delivery Status Notification (Failure)
@ 2009-12-24 19:14 Gene Heskett
  0 siblings, 0 replies; 16+ messages in thread
From: Gene Heskett @ 2009-12-24 19:14 UTC (permalink / raw)
  To: Linux Kernel

Greetings all & Merry Christmas to all;

The address below came from the info doc for fdutils-5.5, clues anybody?

----------  Forwarded Message  ----------

Subject: Delivery Status Notification (Failure)
Date: Thursday 24 December 2009
From: Mail Delivery Subsystem <mailer-daemon@googlemail.com>
To: gene.heskett@gmail.com

Delivery to the following recipient failed permanently:

     majordomo@www.tux.org

Technical details of permanent failure: 
Google tried to deliver your message, but it was rejected by the recipient 
domain. We recommend contacting the other email provider for further 
information about the cause of this error. The error that the other server 
returned was: 550 550 5.1.1 <majordomo@www.tux.org>... User unknown (state 
14).

----- Original message -----

Received: by 10.229.119.170 with SMTP id z42mr1505535qcq.35.1261667798758;
        Thu, 24 Dec 2009 07:16:38 -0800 (PST)
Return-Path: <gene.heskett@gmail.com>
Received: from coyote.coyote.den (pool-151-205-59-39.clrk.east.verizon.net 
[151.205.59.39])
        by mx.google.com with ESMTPS id 22sm7351427qyk.10.2009.12.24.07.16.37
        (version=TLSv1/SSLv3 cipher=RC4-MD5);
        Thu, 24 Dec 2009 07:16:38 -0800 (PST)
From: Gene Heskett <gene.heskett@gmail.com>
Organization: Organization? very little
To: majordomo@www.tux.org
Subject: subscribe fdutils
Date: Thu, 24 Dec 2009 10:16:35 -0500
User-Agent: KMail/1.12.3 (Linux/2.6.32; KDE/4.3.3; i686; ; )
MIME-Version: 1.0
Content-Type: Text/Plain;
  charset="us-ascii"
Content-Transfer-Encoding: 7bit
Message-Id: <200912241016.35839.gene.heskett@gmail.com>

subscribe fdutils@www.tux.org


-------------------------------------------------------

Thanks folks.

-- 
Cheers, Gene
"There are four boxes to be used in defense of liberty:
 soap, ballot, jury, and ammo. Please use in that order."
-Ed Howdershelt (Author)

A man who fishes for marlin in ponds
will put his money in Etruscan bonds.

^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2019-08-08 19:58 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <CAC+NB+MuEPfbgt8fLWvk_oUZFyX4o=mbPY_cOeQs13kqgO0VFg@mail.gmail.com>
     [not found] ` <047d7b3a89462f279c04f170647e@google.com>
     [not found]   ` <CAC+NB+NcYvmTRht1Go4Dar_Jg2CYTa=GQ4E6YxpBeu8MM=zCAg@mail.gmail.com>
2014-02-25  9:45     ` Fwd: Delivery Status Notification (Failure) Jakub Józefowicz
     [not found] <CAG6aBkWDyGDtWX7X0t-FjynkYxpdhpZsAv4Ysw3dKf+iEu+mig@mail.gmail.com>
     [not found] ` <5d4c34ea.1c69fb81.a7a36.5f7f.GMR@mx.google.com>
2019-08-08 19:58   ` Nigel Sollars
     [not found] <CAMj-D2CayD3_TNwY2Xv=poQcBeQHNxUmFZtPu=O0cs_6hC4fQA@mail.gmail.com>
     [not found] ` <94eb2c1899c80a81df053d91af4f@google.com>
2016-09-28 13:58   ` gengdongjiu
     [not found] <047d7b5dbb76a0065405207cfe24@google.com>
2015-09-24 12:03 ` Naveen
2015-09-24 12:50   ` Andy Gospodarek
     [not found] <CAEtWy5wo07Yey4d8icCeP51saV2wCaCFh+9dMD23oEJ=nhiSUA@mail.gmail.com>
     [not found] ` <001a11c3dd5e0f76ea050ac2678e@google.com>
2014-12-21 23:41   ` Tom
2014-12-21 23:49     ` Hugo Mills
2014-12-22  0:03       ` Tom
     [not found] <CAECh7fANnQDfSNHvOUH7AhyVNciypCKLXadY-jFxso4etCuvrg@mail.gmail.com>
     [not found] ` <047d7b3a85a201067604d9a948e8@google.com>
2013-04-06  4:15   ` Drew Gross
2013-04-06  4:49     ` Jeff King
     [not found] <CAGfy=6=se6CXExQyyA7TrAjUVkGqRwGL=E1wqo4h4_6ORzS-MA@mail.gmail.com>
     [not found] ` <f46d0438909985742c04cc3f658c@google.com>
2012-10-18 11:19   ` hemant surale
2012-10-29  9:27     ` hemant surale
2012-10-29 20:19       ` Dan Mick
     [not found]         ` <CAGfy=6nj9v14JHa1KX4ffYnNCKoXB-dHNeAUqMqZRAE0+oFhnA@mail.gmail.com>
     [not found]           ` <DBD4A33F-98A2-452B-A854-4DD6D846E0A0@inktank.com>
     [not found]             ` <CAGfy=6kNDhdPQB4WdYN2adZHxAJtXfySfch3-_PjHSGBWknmKg@mail.gmail.com>
     [not found]               ` <CAGfy=6mesQn=wGQiXgKDwKd3zjYWNtYdn+xY=StSKgDqiNa9NA@mail.gmail.com>
2012-10-30  9:02                 ` Fwd: " hemant surale
     [not found] <CAB10+Lvr+smqSRV99YLQCZZyyjiMYmJ8SL2nj-MVnpZj66MzYw@mail.gmail.com>
     [not found] ` <000e0cd76280df88c404ab7fd0d8@google.com>
2011-08-27 17:17   ` Henning Sprang
2011-08-27 23:47     ` Ian Campbell
     [not found] <bf87febf1003151317y4f15ef1fs1c1de6bca03602da@mail.gmail.com>
     [not found] ` <001485f274c8d0242a0481dc90a9@google.com>
2010-03-15 20:20   ` Shahar Or
2010-01-29 14:17 Implement --password option for git svn perl script Laszlo Papp
     [not found] ` <001636ed7681994278047e4e4a6f@google.com>
2010-01-29 14:18   ` Fwd: Delivery Status Notification (Failure) Laszlo Papp
  -- strict thread matches above, loose matches on Subject: below --
2009-12-24 19:14 Gene Heskett

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.