Displaying 5 results from an estimated 5 matches for "codestyle".
2014 Sep 14
4
[PATCH 1/2] virtio-gpu/2d: add hardware spec include file
On Fri, Sep 12, 2014 at 12:44:56PM +0200, Gerd Hoffmann wrote:
> Hi,
>
> > > @@ -0,0 +1,158 @@
> > > +#ifndef VIRTGPU_HW_H
> > > +#define VIRTGPU_HW_H
> >
> > Non-trivial file, deserves a copyright and license notice.
>
> Added.
Pls remember to make it consistent with other virtio headers,
which are 3-clause BSD, prefixed with this reminder:
2014 Sep 14
4
[PATCH 1/2] virtio-gpu/2d: add hardware spec include file
On Fri, Sep 12, 2014 at 12:44:56PM +0200, Gerd Hoffmann wrote:
> Hi,
>
> > > @@ -0,0 +1,158 @@
> > > +#ifndef VIRTGPU_HW_H
> > > +#define VIRTGPU_HW_H
> >
> > Non-trivial file, deserves a copyright and license notice.
>
> Added.
Pls remember to make it consistent with other virtio headers,
which are 3-clause BSD, prefixed with this reminder:
2020 Aug 17
1
[virtio-dev] Re: [PATCH v5 0/3] Support virtio cross-device resources
On Tue, Jun 23, 2020 at 10:31:28AM +0900, David Stevens wrote:
> Unless there are any remaining objections to these patches, what are
> the next steps towards getting these merged? Sorry, I'm not familiar
> with the workflow for contributing patches to Linux.
Sorry, just have been busy and not paying as much attention to drm
patches as usual. Playing catch-up now. Queued for
2014 Sep 15
0
[PATCH 1/2] virtio-gpu/2d: add hardware spec include file
...> > > + VIRTGPU_CMD_GET_DISPLAY_INFO = 0x0100,
> > >
> > > Please consider also adding:
>
> VIRTIO_GPU_ everywhere to make it consistent with other
> virtio headers?
The names are already pretty long as-is, especially considering the
80cols rule in our codestyle. I'd prefer to keep them the way they are
now.
cheers,
Gerd
2013 Apr 11
3
puppet-lint -- learning stuff about style but also generating questions
Here''s one I learned:
I originally had
# Ensure /etc/hosts contains the basics
host { "${fqdn}":
host_aliases => $hostname,
ip => $ipaddress,
}
And thru some trial and error, got down to this (which puppet-lint does not gripe about)
# Ensure /etc/hosts contains the basics
host { $fqdn:
host_aliases => $hostname,
ip => $ipaddress,
}