What's changed between 7.1 and 7.2

View: New views
8 Messages — Rating Filter:   Alert me  

What's changed between 7.1 and 7.2

by Wojciech Puchar-5 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

i'm getting that crap every time i remount filesystem and on startup.
GEOM_LABEL: Label ufsid/48dd2cbe8423dd9e removed.
GEOM_LABEL: Label for provider mirror/sysa is ufsid/48dd2cbe8423dd9e.
GEOM_LABEL: Label ufsid/48dd2cbe8423dd9e removed.
GEOM_LABEL: Label for provider mirror/sysa is ufsid/48dd2cbe8423dd9e.
GEOM_LABEL: Label ufsid/48dd2cbe8423dd9e removed.
GEOM_LABEL: Label for provider mirror/sysa is ufsid/48dd2cbe8423dd9e.
GEOM_LABEL: Label ufsid/48dd2cbe8423dd9e removed.
GEOM_LABEL: Label for provider mirror/sysa is ufsid/48dd2cbe8423dd9e.


i'm using glabel only to avoid mess about what drive is connected to what
SATA port.
_______________________________________________
freebsd-hackers@... mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to "freebsd-hackers-unsubscribe@..."

Re: What's changed between 7.1 and 7.2

by Olivier Smedts :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

2009/7/8 Wojciech Puchar <wojtek@...>:
> i'm getting that crap every time i remount filesystem and on startup.
> GEOM_LABEL: Label ufsid/48dd2cbe8423dd9e removed.
> GEOM_LABEL: Label for provider mirror/sysa is ufsid/48dd2cbe8423dd9e.
> GEOM_LABEL: Label ufsid/48dd2cbe8423dd9e removed.
> GEOM_LABEL: Label for provider mirror/sysa is ufsid/48dd2cbe8423dd9e.
> GEOM_LABEL: Label ufsid/48dd2cbe8423dd9e removed.
> GEOM_LABEL: Label for provider mirror/sysa is ufsid/48dd2cbe8423dd9e.
> GEOM_LABEL: Label ufsid/48dd2cbe8423dd9e removed.
> GEOM_LABEL: Label for provider mirror/sysa is ufsid/48dd2cbe8423dd9e.

Hello,

I posted something similar few weeks ago :
http://lists.freebsd.org/pipermail/freebsd-current/2009-April/005546.html


> i'm using glabel only to avoid mess about what drive is connected to what
> SATA port.
> _______________________________________________
> freebsd-hackers@... mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
> To unsubscribe, send any mail to "freebsd-hackers-unsubscribe@..."
>


--
Olivier Smedts                                                 _
                                        ASCII ribbon campaign ( )
e-mail: olivier@...        - against HTML email & vCards  X
www: http://www.gid0.org    - against proprietary attachments / \

  "Il y a seulement 10 sortes de gens dans le monde :
  ceux qui comprennent le binaire,
  et ceux qui ne le comprennent pas."
_______________________________________________
freebsd-hackers@... mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to "freebsd-hackers-unsubscribe@..."

Re: What's changed between 7.1 and 7.2

by Robert Watson :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


On Wed, 8 Jul 2009, Wojciech Puchar wrote:

> i'm getting that crap every time i remount filesystem and on startup.
> GEOM_LABEL: Label ufsid/48dd2cbe8423dd9e removed.
> GEOM_LABEL: Label for provider mirror/sysa is ufsid/48dd2cbe8423dd9e.
> GEOM_LABEL: Label ufsid/48dd2cbe8423dd9e removed.
> GEOM_LABEL: Label for provider mirror/sysa is ufsid/48dd2cbe8423dd9e.
> GEOM_LABEL: Label ufsid/48dd2cbe8423dd9e removed.
> GEOM_LABEL: Label for provider mirror/sysa is ufsid/48dd2cbe8423dd9e.
> GEOM_LABEL: Label ufsid/48dd2cbe8423dd9e removed.
> GEOM_LABEL: Label for provider mirror/sysa is ufsid/48dd2cbe8423dd9e.
>
> i'm using glabel only to avoid mess about what drive is connected to what
> SATA port.

This is effectively debugging output that slipped into the release and
shouldn't have.  I believe it's now removed in 8.x, I'm not sure it's been
MFC'd to 7.x yet.  The output can be entirely ignored and does not reflect a
problem, just state changes resulting from a volume becoming visible to geom,
and then the label name being removed following mount.

Robert N M Watson
Computer Laboratory
University of Cambridge
_______________________________________________
freebsd-hackers@... mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to "freebsd-hackers-unsubscribe@..."

Re: What's changed between 7.1 and 7.2

by Dimitry Andric :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

On 2009-07-08 19:28, Robert Watson wrote:
> This is effectively debugging output that slipped into the release and
> shouldn't have.  I believe it's now removed in 8.x, I'm not sure it's been
> MFC'd to 7.x yet.

It was indeed removed, with r193131.  The diff here:

http://svn.freebsd.org/viewvc/base/head/sys/geom/label/g_label.c?view=patch&r1=193131&r2=193130&pathrev=193131

should apply to 7.x without problems.
_______________________________________________
freebsd-hackers@... mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to "freebsd-hackers-unsubscribe@..."

Re: What's changed between 7.1 and 7.2

by Bugzilla from nick@van-laarhoven.org :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

The debugging printf has been changed to not print anything if debuglevel is
0.

Nick

> On 2009-07-08 19:28, Robert Watson wrote:
> > This is effectively debugging output that slipped into the release and
> > shouldn't have.  I believe it's now removed in 8.x, I'm not sure it's
> > been MFC'd to 7.x yet.
>
> It was indeed removed, with r193131.  The diff here:
>
> http://svn.freebsd.org/viewvc/base/head/sys/geom/label/g_label.c?view=pat
>ch&r1=193131&r2=193130&pathrev=193131
>
> should apply to 7.x without problems.
> _______________________________________________
> freebsd-hackers@... mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
> To unsubscribe, send any mail to
> "freebsd-hackers-unsubscribe@..."



_______________________________________________
freebsd-hackers@... mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to "freebsd-hackers-unsubscribe@..."

Re: What's changed between 7.1 and 7.2

by Ivan Voras-7 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Robert Watson wrote:

>
> On Wed, 8 Jul 2009, Wojciech Puchar wrote:
>
>> i'm getting that crap every time i remount filesystem and on startup.
>> GEOM_LABEL: Label ufsid/48dd2cbe8423dd9e removed.
>> GEOM_LABEL: Label for provider mirror/sysa is ufsid/48dd2cbe8423dd9e.
>> GEOM_LABEL: Label ufsid/48dd2cbe8423dd9e removed.
>> GEOM_LABEL: Label for provider mirror/sysa is ufsid/48dd2cbe8423dd9e.
>> GEOM_LABEL: Label ufsid/48dd2cbe8423dd9e removed.
>> GEOM_LABEL: Label for provider mirror/sysa is ufsid/48dd2cbe8423dd9e.
>> GEOM_LABEL: Label ufsid/48dd2cbe8423dd9e removed.
>> GEOM_LABEL: Label for provider mirror/sysa is ufsid/48dd2cbe8423dd9e.
>>
>> i'm using glabel only to avoid mess about what drive is connected to
>> what SATA port.
>
> This is effectively debugging output that slipped into the release and
> shouldn't have.  I believe it's now removed in 8.x, I'm not sure it's
> been MFC'd to 7.x yet.  The output can be entirely ignored and does not
> reflect a problem, just state changes resulting from a volume becoming
> visible to geom, and then the label name being removed following mount.

If it's desireable to MFC it now, I'll do it.

(but it will remove the above output for all glabel labels, not only ufs).

_______________________________________________
freebsd-hackers@... mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to "freebsd-hackers-unsubscribe@..."

Re: What's changed between 7.1 and 7.2

by Robert Watson :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

On Fri, 10 Jul 2009, Ivan Voras wrote:

> Robert Watson wrote:
>>
>> On Wed, 8 Jul 2009, Wojciech Puchar wrote:
>>
>>> i'm getting that crap every time i remount filesystem and on startup.
>>> GEOM_LABEL: Label ufsid/48dd2cbe8423dd9e removed.
>>> GEOM_LABEL: Label for provider mirror/sysa is ufsid/48dd2cbe8423dd9e.
>>> GEOM_LABEL: Label ufsid/48dd2cbe8423dd9e removed.
>>> GEOM_LABEL: Label for provider mirror/sysa is ufsid/48dd2cbe8423dd9e.
>>> GEOM_LABEL: Label ufsid/48dd2cbe8423dd9e removed.
>>> GEOM_LABEL: Label for provider mirror/sysa is ufsid/48dd2cbe8423dd9e.
>>> GEOM_LABEL: Label ufsid/48dd2cbe8423dd9e removed.
>>> GEOM_LABEL: Label for provider mirror/sysa is ufsid/48dd2cbe8423dd9e.
>>>
>>> i'm using glabel only to avoid mess about what drive is connected to what
>>> SATA port.
>>
>> This is effectively debugging output that slipped into the release and
>> shouldn't have.  I believe it's now removed in 8.x, I'm not sure it's been
>> MFC'd to 7.x yet.  The output can be entirely ignored and does not reflect
>> a problem, just state changes resulting from a volume becoming visible to
>> geom, and then the label name being removed following mount.
>
> If it's desireable to MFC it now, I'll do it.
>
> (but it will remove the above output for all glabel labels, not only ufs).

I think it would be widely appreciated.  :-)

Robert N M Watson
Computer Laboratory
University of Cambridge
_______________________________________________
freebsd-hackers@... mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to "freebsd-hackers-unsubscribe@..."

Re: What's changed between 7.1 and 7.2

by Wojciech Puchar-5 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

>> i'm using glabel only to avoid mess about what drive is connected to what
>> SATA port.
>
> This is effectively debugging output that slipped into the release and
> shouldn't have.  I believe it's now removed in 8.x, I'm not sure it's been
> MFC'd to 7.x yet.  The output can be entirely ignored and does not reflect a
> problem, just state changes resulting from a volume becoming visible to geom,
> and then the label name being removed following mount.
>
just commented it out from source ;) thanks
_______________________________________________
freebsd-hackers@... mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to "freebsd-hackers-unsubscribe@..."