[Mesa-dev] [PATCH] Revert "glx: Fix synthetic error generation in __glXSendError"

Emil Velikov emil.l.velikov at gmail.com
Tue May 7 10:03:39 UTC 2019


On Tue, 7 May 2019 at 09:27, Michel Dänzer <michel at daenzer.net> wrote:
>
> On 2019-05-07 5:55 a.m., Timothy Arceri wrote:
> > This reverts commit e91ee763c378d03883eb88cf0eadd8aa916f7878.
> >
> > This seems to have broken a number of wine games.
> >
> > Cc: Adam Jackson <ajax at redhat.com>
> > Cc: Ian Romanick <ian.d.romanick at intel.com>
> > Cc: Hal Gentz <zegentzy at protonmail.com>
> > Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=110632
> > Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=110590
> > ---
> >  src/glx/glx_error.c | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/src/glx/glx_error.c b/src/glx/glx_error.c
> > index 712ecf8213d..653cbeb2d2a 100644
> > --- a/src/glx/glx_error.c
> > +++ b/src/glx/glx_error.c
> > @@ -54,7 +54,7 @@ __glXSendError(Display * dpy, int_fast8_t errorCode, uint_fast32_t resourceID,
> >        error.errorCode = glx_dpy->codes->first_error + errorCode;
> >     }
> >
> > -   error.sequenceNumber = dpy->last_request_read;
> > +   error.sequenceNumber = dpy->request;
> >     error.resourceID = resourceID;
> >     error.minorCode = minorCode;
> >     error.majorCode = glx_dpy->majorOpcode;
> > @@ -73,7 +73,7 @@ __glXSendErrorForXcb(Display * dpy, const xcb_generic_error_t *err)
> >
> >     error.type = X_Error;
> >     error.errorCode = err->error_code;
> > -   error.sequenceNumber = dpy->last_request_read;
> > +   error.sequenceNumber = err->sequence;
> >     error.resourceID = err->resource_id;
> >     error.minorCode = err->minor_code;
> >     error.majorCode = err->major_code;
> >
>
> As-is, this will re-introduce
> https://bugs.freedesktop.org/show_bug.cgi?id=99781 . That one was about
> __glXSendErrorForXcb, while the regressions are about __glXSendError, so
> maybe only revert the __glXSendError hunk for now?
>
Could not agree more.

Can I suggest adding inline comment + even a bugzilla link? Otherwise
we're bound to copy/paste and break it again.

HTH
-Emil


More information about the mesa-dev mailing list