Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1496482 > unrolled thread
| Started by | Richard Weinberger <richard.weinberger@gmail.com> |
|---|---|
| First post | 2016-10-06 11:30 +0200 |
| Last post | 2016-10-11 08:30 +0200 |
| Articles | 20 on this page of 22 — 8 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: [PATCH 24/54] md/raid1: Improve another size determination in setup_conf() Richard Weinberger <richard.weinberger@gmail.com> - 2016-10-06 11:30 +0200
Re: [PATCH 24/54] md/raid1: Improve another size determination in setup_conf() Dan Carpenter <dan.carpenter@oracle.com> - 2016-10-07 10:00 +0200
Re: [PATCH 24/54] md/raid1: Improve another size determination in setup_conf() Richard Weinberger <richard@nod.at> - 2016-10-07 10:20 +0200
Re: md/raid1: Improve another size determination in setup_conf() SF Markus Elfring <elfring@users.sourceforge.net> - 2016-10-07 11:00 +0200
Re: md/raid1: Improve another size determination in setup_conf() Richard Weinberger <richard@nod.at> - 2016-10-07 11:10 +0200
Re: md/raid1: Improve another size determination in setup_conf() SF Markus Elfring <elfring@users.sourceforge.net> - 2016-10-07 13:00 +0200
Re: md/raid1: Improve another size determination in setup_conf() "Austin S. Hemmelgarn" <ahferroin7@gmail.com> - 2016-10-07 14:00 +0200
Re: md/raid1: Improve another size determination in setup_conf() SF Markus Elfring <elfring@users.sourceforge.net> - 2016-10-07 17:30 +0200
Re: md/raid1: Improve another size determination in setup_conf() Jiri Kosina <jikos@kernel.org> - 2016-10-07 17:40 +0200
Re: md/raid1: Improve another size determination in setup_conf() SF Markus Elfring <elfring@users.sourceforge.net> - 2016-10-07 18:40 +0200
Re: md/raid1: Improve another size determination in setup_conf() Jes Sorensen <Jes.Sorensen@redhat.com> - 2016-10-10 15:20 +0200
Re: md/raid1: Improve another size determination in setup_conf() Jes Sorensen <Jes.Sorensen@redhat.com> - 2016-10-10 15:10 +0200
Re: md/raid1: Improve another size determination in setup_conf() SF Markus Elfring <elfring@users.sourceforge.net> - 2016-10-10 15:30 +0200
Re: md/raid1: Improve another size determination in setup_conf() Jes Sorensen <Jes.Sorensen@redhat.com> - 2016-10-10 16:10 +0200
Re: md/raid1: Improve another size determination in setup_conf() SF Markus Elfring <elfring@users.sourceforge.net> - 2016-10-10 16:30 +0200
Re: [PATCH 24/54] md/raid1: Improve another size determination in setup_conf() Jes Sorensen <Jes.Sorensen@redhat.com> - 2016-10-10 15:20 +0200
Re: [PATCH 24/54] md/raid1: Improve another size determination in setup_conf() Dan Carpenter <dan.carpenter@oracle.com> - 2016-10-12 10:30 +0200
Re: [PATCH 24/54] md/raid1: Improve another size determination in setup_conf() Jes Sorensen <Jes.Sorensen@redhat.com> - 2016-10-12 14:20 +0200
Re: [PATCH 24/54] md/raid1: Improve another size determination in setup_conf() Dan Carpenter <dan.carpenter@oracle.com> - 2016-10-10 13:20 +0200
Re: md/raid1: Improve another size determination in setup_conf() SF Markus Elfring <elfring@users.sourceforge.net> - 2016-10-10 14:30 +0200
Re: [PATCH 24/54] md/raid1: Improve another size determination in setup_conf() Bjørn Mork <bjorn@mork.no> - 2016-10-10 16:10 +0200
Re: [PATCH 24/54] md/raid1: Improve another size determination in setup_conf() Dan Carpenter <dan.carpenter@oracle.com> - 2016-10-11 08:30 +0200
Page 1 of 2 [1] 2 Next page →
| From | Richard Weinberger <richard.weinberger@gmail.com> |
|---|---|
| Date | 2016-10-06 11:30 +0200 |
| Subject | Re: [PATCH 24/54] md/raid1: Improve another size determination in setup_conf() |
| Message-ID | <spda1-6DS-21@gated-at.bofh.it> |
On Thu, Oct 6, 2016 at 11:22 AM, SF Markus Elfring <elfring@users.sourceforge.net> wrote: > From: Markus Elfring <elfring@users.sourceforge.net> > Date: Tue, 4 Oct 2016 21:46:18 +0200 > > Replace the specification of a data structure by a pointer dereference > as the parameter for the operator "sizeof" to make the corresponding size > determination a bit safer. Isn't this pure matter of taste? Some developers prefer sizeof(*ptr) because it is easier to type, other developers prefer sizeof(struct foo) because you can determine the type at first sight and makes review more easy. -- Thanks, //richard
[toc] | [next] | [standalone]
| From | Dan Carpenter <dan.carpenter@oracle.com> |
|---|---|
| Date | 2016-10-07 10:00 +0200 |
| Subject | Re: [PATCH 24/54] md/raid1: Improve another size determination in setup_conf() |
| Message-ID | <spyet-5tC-17@gated-at.bofh.it> |
| In reply to | #1496482 |
On Thu, Oct 06, 2016 at 11:29:20AM +0200, Richard Weinberger wrote: > On Thu, Oct 6, 2016 at 11:22 AM, SF Markus Elfring > <elfring@users.sourceforge.net> wrote: > > From: Markus Elfring <elfring@users.sourceforge.net> > > Date: Tue, 4 Oct 2016 21:46:18 +0200 > > > > Replace the specification of a data structure by a pointer dereference > > as the parameter for the operator "sizeof" to make the corresponding size > > determination a bit safer. > > Isn't this pure matter of taste? > Some developers prefer sizeof(*ptr) because it is easier to type, other > developers prefer sizeof(struct foo) because you can determine the type > at first sight and makes review more easy. sizeof(*ptr) is more future proof and normally more obvious and easier to review. That said, I've tried to tell Markus to only send bugfix patches because these are a waste of time and regularly introduce bugs. regards, dan carpenter
[toc] | [prev] | [next] | [standalone]
| From | Richard Weinberger <richard@nod.at> |
|---|---|
| Date | 2016-10-07 10:20 +0200 |
| Subject | Re: [PATCH 24/54] md/raid1: Improve another size determination in setup_conf() |
| Message-ID | <spyxP-5Vj-17@gated-at.bofh.it> |
| In reply to | #1497052 |
On 07.10.2016 09:53, Dan Carpenter wrote: > On Thu, Oct 06, 2016 at 11:29:20AM +0200, Richard Weinberger wrote: >> On Thu, Oct 6, 2016 at 11:22 AM, SF Markus Elfring >> <elfring@users.sourceforge.net> wrote: >>> From: Markus Elfring <elfring@users.sourceforge.net> >>> Date: Tue, 4 Oct 2016 21:46:18 +0200 >>> >>> Replace the specification of a data structure by a pointer dereference >>> as the parameter for the operator "sizeof" to make the corresponding size >>> determination a bit safer. >> >> Isn't this pure matter of taste? >> Some developers prefer sizeof(*ptr) because it is easier to type, other >> developers prefer sizeof(struct foo) because you can determine the type >> at first sight and makes review more easy. > > sizeof(*ptr) is more future proof and normally more obvious and easier > to review. Also a matter of taste. See http://yarchive.net/comp/linux/struct_init.html Thanks, //richard
[toc] | [prev] | [next] | [standalone]
| From | SF Markus Elfring <elfring@users.sourceforge.net> |
|---|---|
| Date | 2016-10-07 11:00 +0200 |
| Subject | Re: md/raid1: Improve another size determination in setup_conf() |
| Message-ID | <spzay-6ev-15@gated-at.bofh.it> |
| In reply to | #1497052 |
>>> Replace the specification of a data structure by a pointer dereference >>> as the parameter for the operator "sizeof" to make the corresponding size >>> determination a bit safer. >> >> Isn't this pure matter of taste? >> Some developers prefer sizeof(*ptr) because it is easier to type, other >> developers prefer sizeof(struct foo) because you can determine the type >> at first sight and makes review more easy. > > sizeof(*ptr) is more future proof and normally more obvious and easier > to review. Is it interesting to see how different the software development opinions can be for such an implementation detail? > That said, I've tried to tell Markus to only send bugfix patches Can any deviations from the Linux coding style become "bugs" also in your view of the software situation? > because these are a waste of time How do you value compliance with coding styles? > and regularly introduce bugs. Really? Would you like to discuss concrete incidents any further? Regards, Markus
[toc] | [prev] | [next] | [standalone]
| From | Richard Weinberger <richard@nod.at> |
|---|---|
| Date | 2016-10-07 11:10 +0200 |
| Subject | Re: md/raid1: Improve another size determination in setup_conf() |
| Message-ID | <spzkd-6yd-17@gated-at.bofh.it> |
| In reply to | #1497085 |
On 07.10.2016 10:53, SF Markus Elfring wrote: >>>> Replace the specification of a data structure by a pointer dereference >>>> as the parameter for the operator "sizeof" to make the corresponding size >>>> determination a bit safer. >>> >>> Isn't this pure matter of taste? >>> Some developers prefer sizeof(*ptr) because it is easier to type, other >>> developers prefer sizeof(struct foo) because you can determine the type >>> at first sight and makes review more easy. >> >> sizeof(*ptr) is more future proof and normally more obvious and easier >> to review. > > Is it interesting to see how different the software development opinions > can be for such an implementation detail? > > >> That said, I've tried to tell Markus to only send bugfix patches > > Can any deviations from the Linux coding style become "bugs" also in > your view of the software situation? > > >> because these are a waste of time > > How do you value compliance with coding styles? Just stop sending these kind of patches, *please*. Linux has tons of issues, fixes for real problems are very welcome. But coding style bike shedding is just a waste of time. Thanks, //richard
[toc] | [prev] | [next] | [standalone]
| From | SF Markus Elfring <elfring@users.sourceforge.net> |
|---|---|
| Date | 2016-10-07 13:00 +0200 |
| Subject | Re: md/raid1: Improve another size determination in setup_conf() |
| Message-ID | <spB2F-7EL-13@gated-at.bofh.it> |
| In reply to | #1497089 |
> Linux has tons of issues, fixes for real problems are very welcome. Is a spectrum of software improvements to reconsider there? > But coding style bike shedding is just a waste of time. Why do various software developers bother about coding style specifications at all then? Regards, Markus
[toc] | [prev] | [next] | [standalone]
| From | "Austin S. Hemmelgarn" <ahferroin7@gmail.com> |
|---|---|
| Date | 2016-10-07 14:00 +0200 |
| Subject | Re: md/raid1: Improve another size determination in setup_conf() |
| Message-ID | <spBYJ-8jM-15@gated-at.bofh.it> |
| In reply to | #1497123 |
On 2016-10-07 06:50, SF Markus Elfring wrote: >> Linux has tons of issues, fixes for real problems are very welcome. > > Is a spectrum of software improvements to reconsider there? > > >> But coding style bike shedding is just a waste of time. > > Why do various software developers bother about coding style specifications > at all then? Coding style is important, but patches that just fix coding style are a bad thing because they break things like `git blame` and run the risk of introducing new bugs without any net benefit to end users. This goes double for code you don't actually work on regularly or don't completely understand.
[toc] | [prev] | [next] | [standalone]
| From | SF Markus Elfring <elfring@users.sourceforge.net> |
|---|---|
| Date | 2016-10-07 17:30 +0200 |
| Subject | Re: md/raid1: Improve another size determination in setup_conf() |
| Message-ID | <spFfY-2lv-53@gated-at.bofh.it> |
| In reply to | #1497132 |
>> Why do various software developers bother about coding style specifications >> at all then? > Coding style is important, Thanks that you "dare" to express also such an opinion. > but patches that just fix coding style are a bad thing When you find such a change opportunity so "bad", are there any circumstances left over where you would dare to touch the corresponding source code line. > because they break things like `git blame` I follow your concern to some degree. But can this argument evolve against a lot of changes generally? > and run the risk of introducing new bugs Did this really "happen" because of an update suggestion for this software module? > without any net benefit to end users. Can the proposed adjustment help to make a function like "setup_conf" a bit more robust (together with related update steps) so that an improved coding style compliance will hopefully influence the error probability in positive ways? > This goes double for code you don't actually work on regularly > or don't completely understand. How does such a kind of general feedback fit to the shown change possibilities in this patch series? Do you reject this update step? Regards, Markus
[toc] | [prev] | [next] | [standalone]
| From | Jiri Kosina <jikos@kernel.org> |
|---|---|
| Date | 2016-10-07 17:40 +0200 |
| Subject | Re: md/raid1: Improve another size determination in setup_conf() |
| Message-ID | <spFpE-2pN-33@gated-at.bofh.it> |
| In reply to | #1497233 |
On Fri, 7 Oct 2016, SF Markus Elfring wrote: > > but patches that just fix coding style are a bad thing > > When you find such a change opportunity so "bad", are there any > circumstances left over where you would dare to touch the corresponding > source code line. If you actually rewrite the code or fix some real bug there. > > because they break things like `git blame` > > I follow your concern to some degree. > > But can this argument evolve against a lot of changes generally? If I have to reiterate git blame multiple times just because of whitespace or codingstyle changes, it's a pure waste of my time. If I have to reiterate git blame multiple times to skip actual real changes, I have no other option than to live with that (because there was an actual functional reason for the change). -- Jiri Kosina SUSE Labs
[toc] | [prev] | [next] | [standalone]
| From | SF Markus Elfring <elfring@users.sourceforge.net> |
|---|---|
| Date | 2016-10-07 18:40 +0200 |
| Subject | Re: md/raid1: Improve another size determination in setup_conf() |
| Message-ID | <spGlI-36r-37@gated-at.bofh.it> |
| In reply to | #1497273 |
>>> but patches that just fix coding style are a bad thing >> >> When you find such a change opportunity so "bad", are there any >> circumstances left over where you would dare to touch the corresponding >> source code line. > > If you actually rewrite the code or fix some real bug there. Do the proposed update steps 12 - 16 for the function "setup_conf" (in this software module) fit to your condition? Do you reject this update step? Regards, Markus
[toc] | [prev] | [next] | [standalone]
| From | Jes Sorensen <Jes.Sorensen@redhat.com> |
|---|---|
| Date | 2016-10-10 15:20 +0200 |
| Subject | Re: md/raid1: Improve another size determination in setup_conf() |
| Message-ID | <sqIEO-1J7-21@gated-at.bofh.it> |
| In reply to | #1497327 |
SF Markus Elfring <elfring@users.sourceforge.net> writes: >>>> but patches that just fix coding style are a bad thing >>> >>> When you find such a change opportunity so "bad", are there any >>> circumstances left over where you would dare to touch the corresponding >>> source code line. >> >> If you actually rewrite the code or fix some real bug there. > > Do the proposed update steps 12 - 16 for the function "setup_conf" > (in this software module) fit to your condition? > > Do you reject this update step? I do - those changes do nothing to improve the code and simply hides a lot of history. Jes
[toc] | [prev] | [next] | [standalone]
| From | Jes Sorensen <Jes.Sorensen@redhat.com> |
|---|---|
| Date | 2016-10-10 15:10 +0200 |
| Subject | Re: md/raid1: Improve another size determination in setup_conf() |
| Message-ID | <sqIv8-1FC-45@gated-at.bofh.it> |
| In reply to | #1497085 |
SF Markus Elfring <elfring@users.sourceforge.net> writes: >>>> Replace the specification of a data structure by a pointer dereference >>>> as the parameter for the operator "sizeof" to make the corresponding size >>>> determination a bit safer. >>> >>> Isn't this pure matter of taste? >>> Some developers prefer sizeof(*ptr) because it is easier to type, other >>> developers prefer sizeof(struct foo) because you can determine the type >>> at first sight and makes review more easy. >> >> sizeof(*ptr) is more future proof and normally more obvious and easier >> to review. > > Is it interesting to see how different the software development opinions > can be for such an implementation detail? > >> That said, I've tried to tell Markus to only send bugfix patches > > Can any deviations from the Linux coding style become "bugs" also in > your view of the software situation? > >> because these are a waste of time > > How do you value compliance with coding styles? The Linux Coding Style is not a law, nor is it at all perfect. You clearly misunderstood how Linux development work and you are doing a great job wasting everyone's time with this patchset. Jes
[toc] | [prev] | [next] | [standalone]
| From | SF Markus Elfring <elfring@users.sourceforge.net> |
|---|---|
| Date | 2016-10-10 15:30 +0200 |
| Subject | Re: md/raid1: Improve another size determination in setup_conf() |
| Message-ID | <sqIOu-1Mr-27@gated-at.bofh.it> |
| In reply to | #1498298 |
>> How do you value compliance with coding styles? > > The Linux Coding Style is not a law, How serious can such guidelines become for software developers? > nor is it at all perfect. I got a similar impression. But are there enough items where a mostly clear guidance is specified? > You clearly misunderstood how Linux development work I got an other impression. > and you are doing a great job wasting everyone's time with this patchset. Would you like to reject any update steps for the affected source files from this patch series? Can it "accidentally" happen that some of them will be really worth also for your precious software development attention? Regards, Markus
[toc] | [prev] | [next] | [standalone]
| From | Jes Sorensen <Jes.Sorensen@redhat.com> |
|---|---|
| Date | 2016-10-10 16:10 +0200 |
| Subject | Re: md/raid1: Improve another size determination in setup_conf() |
| Message-ID | <sqJrc-2eB-21@gated-at.bofh.it> |
| In reply to | #1498315 |
SF Markus Elfring <elfring@users.sourceforge.net> writes: >>> How do you value compliance with coding styles? >> >> The Linux Coding Style is not a law, > > How serious can such guidelines become for software developers? > >> nor is it at all perfect. > > I got a similar impression. But are there enough items where a mostly clear > guidance is specified? > >> You clearly misunderstood how Linux development work > > I got an other impression. > >> and you are doing a great job wasting everyone's time with this patchset. > > Would you like to reject any update steps for the affected source files > from this patch series? > > Can it "accidentally" happen that some of them will be really worth > also for your precious software development attention? Given that none of your patches fix any real bugs and you do your best to ignore any guidance you have been given, I do reject your entire patchset and you can consider this a NACK for this entire series. I get the impression you obtain your response to any email from M-x doctor. Jes
[toc] | [prev] | [next] | [standalone]
| From | SF Markus Elfring <elfring@users.sourceforge.net> |
|---|---|
| Date | 2016-10-10 16:30 +0200 |
| Subject | Re: md/raid1: Improve another size determination in setup_conf() |
| Message-ID | <sqJKy-2la-13@gated-at.bofh.it> |
| In reply to | #1498341 |
>> Can it "accidentally" happen that some of them will be really worth >> also for your precious software development attention? > > Given that none of your patches fix any real bugs Are there any ones which would eventually become "real" also for you? > and you do your best to ignore any guidance you have been given, I dare occasionally to find reasons out for a specific disagreement. > I do reject your entire patchset and you can consider this a NACK for this entire series. Thanks for your feedback. I am still curious if any other software developers or source code reviewers would dare to express an other opinion for one of the shown update possibilities. Regards, Markus
[toc] | [prev] | [next] | [standalone]
| From | Jes Sorensen <Jes.Sorensen@redhat.com> |
|---|---|
| Date | 2016-10-10 15:20 +0200 |
| Message-ID | <sqIEO-1J7-33@gated-at.bofh.it> |
| In reply to | #1497052 |
Dan Carpenter <dan.carpenter@oracle.com> writes: > On Thu, Oct 06, 2016 at 11:29:20AM +0200, Richard Weinberger wrote: >> On Thu, Oct 6, 2016 at 11:22 AM, SF Markus Elfring >> <elfring@users.sourceforge.net> wrote: >> > From: Markus Elfring <elfring@users.sourceforge.net> >> > Date: Tue, 4 Oct 2016 21:46:18 +0200 >> > >> > Replace the specification of a data structure by a pointer dereference >> > as the parameter for the operator "sizeof" to make the corresponding size >> > determination a bit safer. >> >> Isn't this pure matter of taste? >> Some developers prefer sizeof(*ptr) because it is easier to type, other >> developers prefer sizeof(struct foo) because you can determine the type >> at first sight and makes review more easy. > > sizeof(*ptr) is more future proof and normally more obvious and easier > to review. That said, I've tried to tell Markus to only send bugfix > patches because these are a waste of time and regularly introduce bugs. This is totally a matter of taste. I for one find it way easier to review something which says 'sizeof(struct ....)' because it stands out more. I am curious what you mean by it being more future proof - if the code says 'struct foo' in the sizeof argument, what is the problem? The one area where there is a higher risk is if the type is changed, but that is outweighed by the fact the spelled out version is easier to review. Jes
[toc] | [prev] | [next] | [standalone]
| From | Dan Carpenter <dan.carpenter@oracle.com> |
|---|---|
| Date | 2016-10-12 10:30 +0200 |
| Subject | Re: [PATCH 24/54] md/raid1: Improve another size determination in setup_conf() |
| Message-ID | <srn5f-1KJ-3@gated-at.bofh.it> |
| In reply to | #1498306 |
Compare: foo = kmalloc(sizeof(*foo), GFP_KERNEL); This says you are allocating enough space for foo. It can be reviewed by looking at one line. If you change the type of foo it will still work. foo = kmalloc(sizeof(struct whatever), GFP_KERNEL); There isn't enough information to say if this is correct. If you change the type of foo then you have to update the allocation as well. It's not a super common type of bug, but I see it occasionally. regards, dan carpenter
[toc] | [prev] | [next] | [standalone]
| From | Jes Sorensen <Jes.Sorensen@redhat.com> |
|---|---|
| Date | 2016-10-12 14:20 +0200 |
| Message-ID | <srqFP-4gb-15@gated-at.bofh.it> |
| In reply to | #1499422 |
Dan Carpenter <dan.carpenter@oracle.com> writes: > Compare: > > foo = kmalloc(sizeof(*foo), GFP_KERNEL); > > This says you are allocating enough space for foo. It can be reviewed > by looking at one line. If you change the type of foo it will still > work. > > foo = kmalloc(sizeof(struct whatever), GFP_KERNEL); > > There isn't enough information to say if this is correct. If you change > the type of foo then you have to update the allocation as well. > > It's not a super common type of bug, but I see it occasionally. I know what you are saying, but the latter in my book is easier to read and reminds you what the type is when you review the code. Point being this comes down to personal preference and stating that the former is the right way or making that a rule and using checkpatch to harrass people with patches to change it is bogus. Jes
[toc] | [prev] | [next] | [standalone]
| From | Dan Carpenter <dan.carpenter@oracle.com> |
|---|---|
| Date | 2016-10-10 13:20 +0200 |
| Subject | Re: [PATCH 24/54] md/raid1: Improve another size determination in setup_conf() |
| Message-ID | <sqGMF-zG-17@gated-at.bofh.it> |
| In reply to | #1496482 |
On Thu, Oct 06, 2016 at 11:29:20AM +0200, Richard Weinberger wrote: > On Thu, Oct 6, 2016 at 11:22 AM, SF Markus Elfring > <elfring@users.sourceforge.net> wrote: > > From: Markus Elfring <elfring@users.sourceforge.net> > > Date: Tue, 4 Oct 2016 21:46:18 +0200 > > > > Replace the specification of a data structure by a pointer dereference > > as the parameter for the operator "sizeof" to make the corresponding size > > determination a bit safer. > > Isn't this pure matter of taste? > Some developers prefer sizeof(*ptr) because it is easier to type, other > developers prefer sizeof(struct foo) because you can determine the type > at first sight and makes review more easy. > I am ignoring Markus patches and have told him that he should focus on bug fixes. These patches don't add any value and regularly introduce bugs. That said, "sizeof(*ptr)" is sort of official style. It's slightly more obvious and easier to review because all the information you need is on that one line. Also if we change the datatype of ptr then that format is slightly more future proof. regards, dan carpenter
[toc] | [prev] | [next] | [standalone]
| From | SF Markus Elfring <elfring@users.sourceforge.net> |
|---|---|
| Date | 2016-10-10 14:30 +0200 |
| Subject | Re: md/raid1: Improve another size determination in setup_conf() |
| Message-ID | <sqHSq-1dv-21@gated-at.bofh.it> |
| In reply to | #1498239 |
> I am ignoring Markus patches It's a pity that you chose such a reaction. > and have told him that he should focus on bug fixes. I find that I suggest to improve something. Could you admit a few times that I found a "bug" you care also about at other source code places? > These patches don't add any value Can it be that you express a lower value for the Linux coding style here than desired as there might be other concerns behind such negative feedback? > and regularly introduce bugs. How do you think about to discuss corresponding facts further? > That said, "sizeof(*ptr)" is sort of official style. When this implementation detail is so official, I wonder then why some software developers can become "special" about the proposed update step like for this module. Regards, Markus
[toc] | [prev] | [next] | [standalone]
Page 1 of 2 [1] 2 Next page →
Back to top | Article view | linux.kernel
csiph-web