396449392379

2011-10-23 Thread 233558938299

[demime 1.01d removed an attachment of type image/jpeg which had a name of 
709052999368.jpg]

[demime 1.01d removed an attachment of type image/jpeg which had a name of 
192577525979.jpg]

[demime 1.01d removed an attachment of type image/jpeg which had a name of 
676759436859.jpg]

[demime 1.01d removed an attachment of type image/jpeg]

[demime 1.01d removed an attachment of type image/jpeg which had a name of 
608547484370.jpg]

[demime 1.01d removed an attachment of type image/jpeg which had a name of 
127567011013.jpg]

[demime 1.01d removed an attachment of type image/jpeg which had a name of 
039946375190.jpg]

[demime 1.01d removed an attachment of type image/jpeg which had a name of 
by_Leonardo_Heaven.jpg]

[demime 1.01d removed an attachment of type image/jpeg which had a name of 
by_Leonardo_Earth.jpg]

[demime 1.01d removed an attachment of type image/jpeg which had a name of 
2011_09_17_to_2011_10_17_http_www_hinet_bosai_go_jp_hypomap.jpg]

[demime 1.01d removed an attachment of type image/jpeg which had a name of 
by_Michelangelo.jpg]

[demime 1.01d removed an attachment of type image/jpeg which had a name of 
Grand_Entry_Omaha.jpg]

[demime 1.01d removed an attachment of type image/jpeg which had a name of 
Bennie_pokemire_gorget.jpg]

[demime 1.01d removed an attachment of type image/jpeg which had a name of 
384327117813.jpg]

[demime 1.01d removed an attachment of type image/jpeg which had a name of 
704670747471.jpg]

[demime 1.01d removed an attachment of type image/jpeg which had a name of 
342730896147.jpg]

[demime 1.01d removed an attachment of type image/jpeg which had a name of 
388932104436.jpg]

[demime 1.01d removed an attachment of type image/jpeg which had a name of 
829401190563.jpg]

[demime 1.01d removed an attachment of type image/jpeg which had a name of 
001661789981.jpg]

[demime 1.01d removed an attachment of type image/jpeg which had a name of 
245405163674.jpg]

[demime 1.01d removed an attachment of type image/jpeg which had a name of 
332417797696.jpg]

[demime 1.01d removed an attachment of type image/jpeg which had a name of 
476598829675.jpg]

[demime 1.01d removed an attachment of type image/jpeg which had a name of 
811073769572.jpg]

[demime 1.01d removed an attachment of type image/jpeg which had a name of 
998472560518.jpg]

[demime 1.01d removed an attachment of type image/jpeg which had a name of 
573264562539.jpg]

[demime 1.01d removed an attachment of type image/jpeg which had a name of 
739981012592.jpg]



Re: carp destroy

2011-10-23 Thread Marco Pfatschbacher
On Fri, Oct 21, 2011 at 02:44:43PM +0200, Camiel Dobbelaar wrote:
> Destroying a carp interface does not restore the demote count of the 
> carp group.
> 
> Reason is that the interface is removed from the carp group by 
> if_clone_destroy() before carp_clone_destroy() is run.  The second reason 
> is a simple bug introduced in ip_carp.c, rev 1.175.

Oops, my bad.
OK on that part.

> The diff removes if_delgroup() from if_clone_destroy().  This is possible 
> because if_detach() that is run later on removes the interface from all 
> the groups as well.  This seems to work fine.  I cannot deduce from the 
> CVS history why it was added to if_clone_destroy...  can anyone 
> remember?  (Henning?)

That looks reasonable to me as well. (OK)
But waiting for Hennings answer might be a good idea...

> After the diff (fxp1 has no carrier on purpose):
> 
> camield@rifraf $ ifconfig fxp1
> fxp1: flags=8843 mtu 1500
> lladdr 00:d0:b7:47:3c:07
> priority: 0
> media: Ethernet autoselect (none)
> status: no carrier
> inet 10.38.38.10 netmask 0xff00 broadcast 10.38.38.255
> inet6 fe80::2d0:b7ff:fe47:3c07%fxp1 prefixlen 64 scopeid 0x3
> camield@rifraf $ sudo ifconfig carp11 vhid 11 carpdev fxp1
> camield@rifraf $ ifconfig carp11
> carp11: flags=8803 mtu 1500
> lladdr 00:00:5e:00:01:0b
> priority: 0
> carp: INIT carpdev fxp1 vhid 11 advbase 1 advskew 0
> groups: carp
> inet6 fe80::200:5eff:fe00:10b%carp11 prefixlen 64 scopeid 0x6
> camield@rifraf $ ifconfig -g carp
> carp: carp demote count 1
> camield@rifraf $ sudo ifconfig carp11 destroy
> camield@rifraf $ ifconfig -g carp 
> carp: carp demote count 0
> camield@rifraf $ tail -2 /var/log/messages
>   
> Oct 21 13:48:25 rifraf /bsd: carp: carp11 demoted group carp by 1 to 1 
> (carpdev)
> Oct 21 13:48:33 rifraf /bsd: carp: carp11 demoted group carp by -1 to 0 
> (detach)
> 
> 
> Index: net/if.c
> ===
> RCS file: /cvs/src/sys/net/if.c,v
> retrieving revision 1.239
> diff -u -p -r1.239 if.c
> --- net/if.c  9 Jul 2011 00:47:18 -   1.239
> +++ net/if.c  21 Oct 2011 08:23:04 -
> @@ -712,7 +712,7 @@ if_clone_destroy(const char *name)
>  {
>   struct if_clone *ifc;
>   struct ifnet *ifp;
> - int s, ret;
> + int s;
>  
>   ifc = if_clone_lookup(name, NULL);
>   if (ifc == NULL)
> @@ -731,12 +731,7 @@ if_clone_destroy(const char *name)
>   splx(s);
>   }
>  
> - if_delgroup(ifp, ifc->ifc_name);
> -
> - if ((ret = (*ifc->ifc_destroy)(ifp)) != 0)
> - if_addgroup(ifp, ifc->ifc_name);
> -
> - return (ret);
> + return ((*ifc->ifc_destroy)(ifp));
>  }
>  
>  /*
> Index: netinet/ip_carp.c
> ===
> RCS file: /cvs/src/sys/netinet/ip_carp.c,v
> retrieving revision 1.191
> diff -u -p -r1.191 ip_carp.c
> --- netinet/ip_carp.c 16 Oct 2011 21:07:19 -  1.191
> +++ netinet/ip_carp.c 21 Oct 2011 08:23:04 -
> @@ -980,7 +980,7 @@ carpdetach(struct carp_softc *sc)
>   carp_del_all_timeouts(sc);
>  
>   if (sc->sc_demote_cnt)
> - carp_group_demote_adj(&sc->sc_if, sc->sc_demote_cnt, "detach");
> + carp_group_demote_adj(&sc->sc_if, -sc->sc_demote_cnt, "detach");
>   sc->sc_suppress = 0;
>   sc->sc_sendad_errors = 0;



Confirmação de pedido para entrar no grupo cienciaemcasa

2011-10-23 Thread Yahoo! Grupos
Ola tech@openbsd.org,

Recebemos sua solicitagco para entrar no grupo cienciaemcasa
do Yahoo! Grupos, um servigo de comunidades online gratuito e
super facil de usar.

Este pedido expirara em 7 dias.

PARA ENTRAR NESTE GRUPO:

1) Va para o site do Yahoo! Grupos clicando neste link:

   http://br.groups.yahoo.com/i?i=t1w4gmwq5lofcuspkvtyuxnvqntomjlr&e=tech%40o
penbsd%2Eorg

  (Se nco funcionar, use os comandos para cortar e colar o link acima na
   barra de enderego do seu navegador.)

-OU-

2) RESPONDA a este e-mail clicando em "Responder" e depois em "Enviar",
   no seu programa de e-mail.

Se vocj nco fez esta solicitagco ou se nco tem interesse em entrar no grupo
cienciaemcasa, por favor, ignore esta mensagem.

Saudagues,

Atendimento ao usuario do Yahoo! Grupos


O uso que vocj faz do Yahoo! Grupos esta sujeito aos
http://br.yahoo.com/info/utos.html



复cr函

2011-10-23 Thread mail...@tw.mtf.news.yahoo.com
 Your friend e/d:d8e  fg+ g5&d= e!!

g5&f(ggh(o<

f(e%=:

fe8g>f (g,e&if!o<h?d>o<i;h)3h+!

hg3;d::o<e<  e% o<o<o<5234o<o<o<o<

o<1o<1o<79956o<o<o<o<

ih(o<f$f%ei7fego<h+geg(o<o<o<

n5tqob24d

e$
cre=
http://tw.myblog.yahoo.com/jw!1K84p1yREQXRDO9YOXH0EfAuoaYkEjm18Q--/article?mid=1

Yahoo!e%f)fe0 d= gfe0.ee3.gf4;f0i+i)c
http://tw.fashion.yahoo.com/
g   f,
f   f   Yahoo!e%f)