Re: RFR: 8286559: Re-examine synchronization of mark and reset methods on InflaterInputStream [v2]

2022-05-13 Thread Jaikiran Pai
On Fri, 13 May 2022 07:14:30 GMT, Jaikiran Pai  wrote:

>> Can I please get a review of this change that addresses 
>> https://bugs.openjdk.java.net/browse/JDK-8286559? 
>> 
>> The commit here removes the `synchronized` on `mark` and `reset` methods of 
>> `InflaterInputStream`. The `mark` method is a no-op method and the `reset` 
>> method only always throws a `IOException`. So `synchronized` isn't adding 
>> any value here. 
>> 
>> Additionally, the commit does a minor change to the javadoc of these methods 
>> to use `@implNote` to describe what the implementation does. Please let me 
>> know if the `@implNote` is unnecessary, in which case, I'll revert that part.
>> 
>> This change is similar to what was recently done for `FilterInputStream` 
>> https://github.com/openjdk/jdk/pull/8309 and `PushbackInputStream` 
>> https://github.com/openjdk/jdk/pull/8433
>> 
>> tier1, tier2 and tier3 tests were run and no related failures were noticed.
>
> Jaikiran Pai has updated the pull request incrementally with one additional 
> commit since the last revision:
> 
>   Incorporate review comment made on CSR by Joe - Change @implNote to 
> @implSpec

Thank you everyone for the reviews here and on the CSR.

-

PR: https://git.openjdk.java.net/jdk/pull/8649


Re: RFR: 8286559: Re-examine synchronization of mark and reset methods on InflaterInputStream [v2]

2022-05-13 Thread Brian Burkhalter
On Fri, 13 May 2022 07:14:30 GMT, Jaikiran Pai  wrote:

>> Can I please get a review of this change that addresses 
>> https://bugs.openjdk.java.net/browse/JDK-8286559? 
>> 
>> The commit here removes the `synchronized` on `mark` and `reset` methods of 
>> `InflaterInputStream`. The `mark` method is a no-op method and the `reset` 
>> method only always throws a `IOException`. So `synchronized` isn't adding 
>> any value here. 
>> 
>> Additionally, the commit does a minor change to the javadoc of these methods 
>> to use `@implNote` to describe what the implementation does. Please let me 
>> know if the `@implNote` is unnecessary, in which case, I'll revert that part.
>> 
>> This change is similar to what was recently done for `FilterInputStream` 
>> https://github.com/openjdk/jdk/pull/8309 and `PushbackInputStream` 
>> https://github.com/openjdk/jdk/pull/8433
>> 
>> tier1, tier2 and tier3 tests were run and no related failures were noticed.
>
> Jaikiran Pai has updated the pull request incrementally with one additional 
> commit since the last revision:
> 
>   Incorporate review comment made on CSR by Joe - Change @implNote to 
> @implSpec

Marked as reviewed by bpb (Reviewer).

-

PR: https://git.openjdk.java.net/jdk/pull/8649


Re: RFR: 8286559: Re-examine synchronization of mark and reset methods on InflaterInputStream [v2]

2022-05-13 Thread Alan Bateman
On Fri, 13 May 2022 07:14:30 GMT, Jaikiran Pai  wrote:

>> Can I please get a review of this change that addresses 
>> https://bugs.openjdk.java.net/browse/JDK-8286559? 
>> 
>> The commit here removes the `synchronized` on `mark` and `reset` methods of 
>> `InflaterInputStream`. The `mark` method is a no-op method and the `reset` 
>> method only always throws a `IOException`. So `synchronized` isn't adding 
>> any value here. 
>> 
>> Additionally, the commit does a minor change to the javadoc of these methods 
>> to use `@implNote` to describe what the implementation does. Please let me 
>> know if the `@implNote` is unnecessary, in which case, I'll revert that part.
>> 
>> This change is similar to what was recently done for `FilterInputStream` 
>> https://github.com/openjdk/jdk/pull/8309 and `PushbackInputStream` 
>> https://github.com/openjdk/jdk/pull/8433
>> 
>> tier1, tier2 and tier3 tests were run and no related failures were noticed.
>
> Jaikiran Pai has updated the pull request incrementally with one additional 
> commit since the last revision:
> 
>   Incorporate review comment made on CSR by Joe - Change @implNote to 
> @implSpec

Marked as reviewed by alanb (Reviewer).

-

PR: https://git.openjdk.java.net/jdk/pull/8649


Re: RFR: 8286559: Re-examine synchronization of mark and reset methods on InflaterInputStream [v2]

2022-05-13 Thread Jaikiran Pai
> Can I please get a review of this change that addresses 
> https://bugs.openjdk.java.net/browse/JDK-8286559? 
> 
> The commit here removes the `synchronized` on `mark` and `reset` methods of 
> `InflaterInputStream`. The `mark` method is a no-op method and the `reset` 
> method only always throws a `IOException`. So `synchronized` isn't adding any 
> value here. 
> 
> Additionally, the commit does a minor change to the javadoc of these methods 
> to use `@implNote` to describe what the implementation does. Please let me 
> know if the `@implNote` is unnecessary, in which case, I'll revert that part.
> 
> This change is similar to what was recently done for `FilterInputStream` 
> https://github.com/openjdk/jdk/pull/8309 and `PushbackInputStream` 
> https://github.com/openjdk/jdk/pull/8433
> 
> tier1, tier2 and tier3 tests were run and no related failures were noticed.

Jaikiran Pai has updated the pull request incrementally with one additional 
commit since the last revision:

  Incorporate review comment made on CSR by Joe - Change @implNote to @implSpec

-

Changes:
  - all: https://git.openjdk.java.net/jdk/pull/8649/files
  - new: https://git.openjdk.java.net/jdk/pull/8649/files/89de6078..4d406ac0

Webrevs:
 - full: https://webrevs.openjdk.java.net/?repo=jdk=8649=01
 - incr: https://webrevs.openjdk.java.net/?repo=jdk=8649=00-01

  Stats: 2 lines in 1 file changed: 0 ins; 0 del; 2 mod
  Patch: https://git.openjdk.java.net/jdk/pull/8649.diff
  Fetch: git fetch https://git.openjdk.java.net/jdk pull/8649/head:pull/8649

PR: https://git.openjdk.java.net/jdk/pull/8649


Re: RFR: 8286559: Re-examine synchronization of mark and reset methods on InflaterInputStream

2022-05-11 Thread Jaikiran Pai
On Wed, 11 May 2022 09:00:17 GMT, Jaikiran Pai  wrote:

> Can I please get a review of this change that addresses 
> https://bugs.openjdk.java.net/browse/JDK-8286559? 
> 
> The commit here removes the `synchronized` on `mark` and `reset` methods of 
> `InflaterInputStream`. The `mark` method is a no-op method and the `reset` 
> method only always throws a `IOException`. So `synchronized` isn't adding any 
> value here. 
> 
> Additionally, the commit does a minor change to the javadoc of these methods 
> to use `@implNote` to describe what the implementation does. Please let me 
> know if the `@implNote` is unnecessary, in which case, I'll revert that part.
> 
> This change is similar to what was recently done for `FilterInputStream` 
> https://github.com/openjdk/jdk/pull/8309 and `PushbackInputStream` 
> https://github.com/openjdk/jdk/pull/8433
> 
> tier1, tier2 and tier3 tests were run and no related failures were noticed.

Hello Lance, thank you for the review. I have created a CSR for this now - 
https://bugs.openjdk.java.net/browse/JDK-8286579

-

PR: https://git.openjdk.java.net/jdk/pull/8649


Re: RFR: 8286559: Re-examine synchronization of mark and reset methods on InflaterInputStream

2022-05-11 Thread Lance Andersen
On Wed, 11 May 2022 09:00:17 GMT, Jaikiran Pai  wrote:

> Can I please get a review of this change that addresses 
> https://bugs.openjdk.java.net/browse/JDK-8286559? 
> 
> The commit here removes the `synchronized` on `mark` and `reset` methods of 
> `InflaterInputStream`. The `mark` method is a no-op method and the `reset` 
> method only always throws a `IOException`. So `synchronized` isn't adding any 
> value here. 
> 
> Additionally, the commit does a minor change to the javadoc of these methods 
> to use `@implNote` to describe what the implementation does. Please let me 
> know if the `@implNote` is unnecessary, in which case, I'll revert that part.
> 
> This change is similar to what was recently done for `FilterInputStream` 
> https://github.com/openjdk/jdk/pull/8309 and `PushbackInputStream` 
> https://github.com/openjdk/jdk/pull/8433
> 
> tier1, tier2 and tier3 tests were run and no related failures were noticed.

Hi Jai,

I am fine with the change.  It will also need a  CSR

-

Marked as reviewed by lancea (Reviewer).

PR: https://git.openjdk.java.net/jdk/pull/8649