Re: [PATCH V3] usb: gadget: storage: Remove warning message

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Fri, 5 Jul 2019, Benjamin Herrenschmidt wrote:

> On Fri, 2019-07-05 at 10:49 +0000, EJ Hsu wrote:
> > 
> > Yes, looks like we are facing the same issue.
> > 
> > The change of Ben is similar to mine, but the priority of FSG_STATE_CONFIG_CHANGE in his patch is higher than FSG_STATE_CONFIG_CLEAR.
> > So, it will not hit the USB CV TD 9.13 failure as above.
> 
> Correct. This is on purpose. A CONFIG_CHANGE will wipe out the previous
> config, so if the queued state was CONFIG_CLEAR, and we haven't
> dequeued it yet, we can skip it.
> 
> > However, in my opinion, I think we should keep the handling of
> > FSG_STATE_CONFIG_CHANGE as it was. FSG_STATE_CONFIG_CHANGE should
> > take care of handling FSG_STATE_CONFIG_CLEAR because of its higher
> > priority.
> 
> My patch does just that. If you get a clear and a change fast enough
> (ie, the clear hasn't been dequeued), then the change will override,
> which is what we want, since that will cleanup the previous config
> regardless.
> 
> The entire point of my patch is to make sure that new_fsg is only ever
> set in that one place, the config change, and there is no possible
> confusion with the async continuation.
> 
> > Think about below case:
> > When fsg_main_thread tries to handle the FSG_STATE_CONFIG_CHANGE, a disconnect event arise at the same time and fsg_disable() is called accordingly. 
> > In this case, FSG_STATE_CONFIG_CLEAR might not be queued. (depending on if FSG_STATE_CONFIG_CHANGE is cleared in handle_exception() )
> > If we still call usb_composite_setup_continue() without checking common->new_fsg, the " Unexpected call" message might still be printed (if delayed_status has been cleared in reset_config() ).
> > Please correct me if I have any misunderstanding.
> 
> new_fsg will never be clear if we do FSG_STATE_CONFIG_CHANGE, that's
> the whole point of my patch.
> 
> Otherwise we keep having the problem that I described in my cset
> comment where two parties stomp on that one variable and confusion
> ensures.
> 
> Now, there's indeed one remaining issue as you pointed out. If we
> disconnect before we've dequeued FSG_STATE_CONFIG_CHANGE.
> 
> Is that an issue in practice however ? There are several ways we could
> handle that one:
> 
>  - We can do a fully ordered queue of events. But that's more complex
> and somewhat suboptimal, but would be the most robust I suppose.
> 
>  - Or we could be a bit smarter here, and have additional state
> information protected by the lock set while queuing
> FSG_STATE_CONFIG_CHANGE. This would include the fact that we have a
> pending set_alt and thus a delayed status to complete. Then we could
> have a flag indicating a disable/disconnect. fsg_disable would set it,
> fsg_set_alt would clear it. Those would need to be established with the
> same lock that queues the state and *retreived* in the same lock as
> well, otherwise we go back to having them change on the fly leading to
> inconsistent state.
> 
> But in any case, having more than one agent stomping on new_fsg
> locklessly from interrupts is going to be a problem and I don't want to
> get back down that path.
>  
> As it is, my patch makes things work for me. Does it work for you ? We
> can look at polishing more later.

I haven't looked at the new patches yet.

Still, what I originally had in mind for this situation was that the 
_last_ event should always take precedence.  This goes against the idea 
of having separate FSG_STATE_* levels for disconnect and config-change, 
because the driver assumes that higher levels should override lower 
levels.

Also, if the thread has already started processing one of these events 
when another one occurs, the new exception should cause the thread to 
restart the handler and thus take care of the new event.  And yes, 
there should be enough locking to ensure that nothing gets stomped on 
except in situations where it won't matter.

That's how I think this should all work, and it doesn't look like we 
really need a queue to do it properly.

Alan Stern




[Index of Archives]     [Linux Media]     [Linux Input]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]     [Old Linux USB Devel Archive]

  Powered by Linux