Skip to content

Commit fcf49f4

Browse files
committedMay 11, 2022
8286441: Remove mode parameter from jdk.internal.perf.Perf.attach()
Reviewed-by: redestad, alanb
1 parent 46a775a commit fcf49f4

File tree

15 files changed

+52
-202
lines changed

15 files changed

+52
-202
lines changed
 

‎src/hotspot/os/posix/perfMemory_posix.cpp

+5-25
Original file line numberDiff line numberDiff line change
@@ -1097,39 +1097,19 @@ static size_t sharedmem_filesize(int fd, TRAPS) {
10971097

10981098
// attach to a named shared memory region.
10991099
//
1100-
static void mmap_attach_shared(const char* user, int vmid, PerfMemory::PerfMemoryMode mode, char** addr, size_t* sizep, TRAPS) {
1100+
static void mmap_attach_shared(const char* user, int vmid, char** addr, size_t* sizep, TRAPS) {
11011101

11021102
char* mapAddress;
11031103
int result;
11041104
int fd;
11051105
size_t size = 0;
11061106
const char* luser = NULL;
11071107

1108-
int mmap_prot;
1109-
int file_flags;
1108+
int mmap_prot = PROT_READ;
1109+
int file_flags = O_RDONLY | O_NOFOLLOW;
11101110

11111111
ResourceMark rm;
11121112

1113-
// map the high level access mode to the appropriate permission
1114-
// constructs for the file and the shared memory mapping.
1115-
if (mode == PerfMemory::PERF_MODE_RO) {
1116-
mmap_prot = PROT_READ;
1117-
file_flags = O_RDONLY | O_NOFOLLOW;
1118-
}
1119-
else if (mode == PerfMemory::PERF_MODE_RW) {
1120-
#ifdef LATER
1121-
mmap_prot = PROT_READ | PROT_WRITE;
1122-
file_flags = O_RDWR | O_NOFOLLOW;
1123-
#else
1124-
THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(),
1125-
"Unsupported access mode");
1126-
#endif
1127-
}
1128-
else {
1129-
THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(),
1130-
"Illegal access mode");
1131-
}
1132-
11331113
// for linux, determine if vmid is for a containerized process
11341114
int nspid = LINUX_ONLY(os::Linux::get_namespace_pid(vmid)) NOT_LINUX(-1);
11351115

@@ -1288,15 +1268,15 @@ void PerfMemory::delete_memory_region() {
12881268
// the indicated process's PerfData memory region into this JVMs
12891269
// address space.
12901270
//
1291-
void PerfMemory::attach(const char* user, int vmid, PerfMemoryMode mode, char** addrp, size_t* sizep, TRAPS) {
1271+
void PerfMemory::attach(const char* user, int vmid, char** addrp, size_t* sizep, TRAPS) {
12921272

12931273
if (vmid == 0 || vmid == os::current_process_id()) {
12941274
*addrp = start();
12951275
*sizep = capacity();
12961276
return;
12971277
}
12981278

1299-
mmap_attach_shared(user, vmid, mode, addrp, sizep, CHECK);
1279+
mmap_attach_shared(user, vmid, addrp, sizep, CHECK);
13001280
}
13011281

13021282
// detach from the PerfData memory region of another JVM

‎src/hotspot/os/windows/perfMemory_windows.cpp

+5-24
Original file line numberDiff line numberDiff line change
@@ -1573,36 +1573,17 @@ static size_t sharedmem_filesize(const char* filename, TRAPS) {
15731573
// this method opens a file mapping object and maps the object
15741574
// into the address space of the process
15751575
//
1576-
static void open_file_mapping(const char* user, int vmid,
1577-
PerfMemory::PerfMemoryMode mode,
1578-
char** addrp, size_t* sizep, TRAPS) {
1576+
static void open_file_mapping(const char* user, int vmid, char** addrp, size_t* sizep, TRAPS) {
15791577

15801578
ResourceMark rm;
15811579

15821580
void *mapAddress = 0;
15831581
size_t size = 0;
15841582
HANDLE fmh;
1585-
DWORD ofm_access;
1586-
DWORD mv_access;
1583+
DWORD ofm_access = FILE_MAP_READ;
1584+
DWORD mv_access = FILE_MAP_READ;
15871585
const char* luser = NULL;
15881586

1589-
if (mode == PerfMemory::PERF_MODE_RO) {
1590-
ofm_access = FILE_MAP_READ;
1591-
mv_access = FILE_MAP_READ;
1592-
}
1593-
else if (mode == PerfMemory::PERF_MODE_RW) {
1594-
#ifdef LATER
1595-
ofm_access = FILE_MAP_READ | FILE_MAP_WRITE;
1596-
mv_access = FILE_MAP_READ | FILE_MAP_WRITE;
1597-
#else
1598-
THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(),
1599-
"Unsupported access mode");
1600-
#endif
1601-
}
1602-
else {
1603-
THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(),
1604-
"Illegal access mode");
1605-
}
16061587

16071588
// if a user name wasn't specified, then find the user name for
16081589
// the owner of the target vm.
@@ -1796,7 +1777,7 @@ void PerfMemory::delete_memory_region() {
17961777
// the indicated process's PerfData memory region into this JVMs
17971778
// address space.
17981779
//
1799-
void PerfMemory::attach(const char* user, int vmid, PerfMemoryMode mode,
1780+
void PerfMemory::attach(const char* user, int vmid,
18001781
char** addrp, size_t* sizep, TRAPS) {
18011782

18021783
if (vmid == 0 || vmid == os::current_process_id()) {
@@ -1805,7 +1786,7 @@ void PerfMemory::attach(const char* user, int vmid, PerfMemoryMode mode,
18051786
return;
18061787
}
18071788

1808-
open_file_mapping(user, vmid, mode, addrp, sizep, CHECK);
1789+
open_file_mapping(user, vmid, addrp, sizep, CHECK);
18091790
}
18101791

18111792
// detach from the PerfData memory region of another JVM

‎src/hotspot/share/prims/perf.cpp

+4-10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2001, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2001, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -64,7 +64,7 @@ static char* jstr_to_utf(JNIEnv *env, jstring str, TRAPS) {
6464
return utfstr;
6565
}
6666

67-
PERF_ENTRY(jobject, Perf_Attach(JNIEnv *env, jobject unused, jstring user, int vmid, int mode))
67+
PERF_ENTRY(jobject, Perf_Attach(JNIEnv *env, jobject unused, jstring user, int vmid))
6868

6969
PerfWrapper("Perf_Attach");
7070

@@ -80,14 +80,8 @@ PERF_ENTRY(jobject, Perf_Attach(JNIEnv *env, jobject unused, jstring user, int v
8080
user_utf = user == NULL ? NULL : jstr_to_utf(env, user, CHECK_NULL);
8181
}
8282

83-
if (mode != PerfMemory::PERF_MODE_RO &&
84-
mode != PerfMemory::PERF_MODE_RW) {
85-
THROW_0(vmSymbols::java_lang_IllegalArgumentException());
86-
}
87-
8883
// attach to the PerfData memory region for the specified VM
89-
PerfMemory::attach(user_utf, vmid, (PerfMemory::PerfMemoryMode) mode,
90-
&address, &capacity, CHECK_NULL);
84+
PerfMemory::attach(user_utf, vmid, &address, &capacity, CHECK_NULL);
9185

9286
{
9387
ThreadToNativeFromVM ttnfv(thread);
@@ -300,7 +294,7 @@ PERF_END
300294

301295
static JNINativeMethod perfmethods[] = {
302296

303-
{CC "attach", CC "(" JLS "II)" BB, FN_PTR(Perf_Attach)},
297+
{CC "attach0", CC "(" JLS "I)" BB, FN_PTR(Perf_Attach)},
304298
{CC "detach", CC "(" BB ")V", FN_PTR(Perf_Detach)},
305299
{CC "createLong", CL_ARGS, FN_PTR(Perf_CreateLong)},
306300
{CC "createByteArray", CBA_ARGS, FN_PTR(Perf_CreateByteArray)},

‎src/hotspot/share/runtime/perfMemory.hpp

+2-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2001, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2001, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -128,11 +128,6 @@ class PerfMemory : AllStatic {
128128
static void delete_memory_region();
129129

130130
public:
131-
enum PerfMemoryMode {
132-
PERF_MODE_RO = 0,
133-
PERF_MODE_RW = 1
134-
};
135-
136131
static char* alloc(size_t size);
137132
static char* start() { return _start; }
138133
static char* end() { return _end; }
@@ -148,8 +143,7 @@ class PerfMemory : AllStatic {
148143

149144
// methods for attaching to and detaching from the PerfData
150145
// memory segment of another JVM process on the same system.
151-
static void attach(const char* user, int vmid, PerfMemoryMode mode,
152-
char** addrp, size_t* size, TRAPS);
146+
static void attach(const char* user, int vmid, char** addrp, size_t* size, TRAPS);
153147
static void detach(char* addr, size_t bytes);
154148

155149
static void initialize();

‎src/java.base/share/classes/jdk/internal/perf/Perf.java

+13-49
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2002, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2002, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -56,9 +56,6 @@ public final class Perf {
5656

5757
private static Perf instance;
5858

59-
private static final int PERF_MODE_RO = 0;
60-
private static final int PERF_MODE_RW = 1;
61-
6259
private Perf() { } // prevent instantiation
6360

6461
/**
@@ -171,50 +168,28 @@ public static Perf getPerf()
171168
* for the Java virtual machine running this method, then the returned
172169
* <code>ByteBuffer</code> object will always be coherent and dynamically
173170
* changing.
174-
* <p>
175-
* The attach mode specifies the access permissions requested for the
176-
* instrumentation buffer of the target virtual machine. The permitted
177-
* access permissions are:
178-
* <ul>
179-
* <li>"r" - Read only access. This Java virtual machine has only
180-
* read access to the instrumentation buffer for the target Java
181-
* virtual machine.
182-
* <li>"rw" - Read/Write access. This Java virtual machine has read and
183-
* write access to the instrumentation buffer for the target Java virtual
184-
* machine. This mode is currently not supported and is reserved for
185-
* future enhancements.
186-
* </ul>
187171
*
188172
* @param lvmid an integer that uniquely identifies the
189173
* target local Java virtual machine.
190-
* @param mode a string indicating the attach mode.
191174
* @return ByteBuffer a direct allocated byte buffer
192-
* @throws IllegalArgumentException The lvmid or mode was invalid.
175+
* @throws IllegalArgumentException The lvmid was invalid.
193176
* @throws IOException An I/O error occurred while trying to acquire
194177
* the instrumentation buffer.
195178
* @throws OutOfMemoryError The instrumentation buffer could not be mapped
196179
* into the virtual machine's address space.
197180
* @see java.nio.ByteBuffer
198181
*/
199-
public ByteBuffer attach(int lvmid, String mode)
182+
public ByteBuffer attach(int lvmid)
200183
throws IllegalArgumentException, IOException
201184
{
202-
if (mode.compareTo("r") == 0) {
203-
return attachImpl(null, lvmid, PERF_MODE_RO);
204-
}
205-
else if (mode.compareTo("rw") == 0) {
206-
return attachImpl(null, lvmid, PERF_MODE_RW);
207-
}
208-
else {
209-
throw new IllegalArgumentException("unknown mode");
210-
}
185+
return attachImpl(null, lvmid);
211186
}
212187

213188
/**
214189
* Attach to the instrumentation buffer for the specified Java virtual
215190
* machine owned by the given user.
216191
* <p>
217-
* This method behaves just as the <code>attach(int lvmid, String mode)
192+
* This method behaves just as the <code>attach(int lvmid)
218193
* </code> method, except that it only searches for Java virtual machines
219194
* owned by the specified user.
220195
*
@@ -223,27 +198,18 @@ else if (mode.compareTo("rw") == 0) {
223198
* virtual machine.
224199
* @param lvmid an integer that uniquely identifies the
225200
* target local Java virtual machine.
226-
* @param mode a string indicating the attach mode.
227201
* @return ByteBuffer a direct allocated byte buffer
228-
* @throws IllegalArgumentException The lvmid or mode was invalid.
202+
* @throws IllegalArgumentException The lvmid was invalid.
229203
* @throws IOException An I/O error occurred while trying to acquire
230204
* the instrumentation buffer.
231205
* @throws OutOfMemoryError The instrumentation buffer could not be mapped
232206
* into the virtual machine's address space.
233207
* @see java.nio.ByteBuffer
234208
*/
235-
public ByteBuffer attach(String user, int lvmid, String mode)
209+
public ByteBuffer attach(String user, int lvmid)
236210
throws IllegalArgumentException, IOException
237211
{
238-
if (mode.compareTo("r") == 0) {
239-
return attachImpl(user, lvmid, PERF_MODE_RO);
240-
}
241-
else if (mode.compareTo("rw") == 0) {
242-
return attachImpl(user, lvmid, PERF_MODE_RW);
243-
}
244-
else {
245-
throw new IllegalArgumentException("unknown mode");
246-
}
212+
return attachImpl(user, lvmid);
247213
}
248214

249215
/**
@@ -259,18 +225,17 @@ else if (mode.compareTo("rw") == 0) {
259225
* virtual machine.
260226
* @param lvmid an integer that uniquely identifies the
261227
* target local Java virtual machine.
262-
* @param mode a string indicating the attach mode.
263228
* @return ByteBuffer a direct allocated byte buffer
264-
* @throws IllegalArgumentException The lvmid or mode was invalid.
229+
* @throws IllegalArgumentException The lvmid was invalid.
265230
* @throws IOException An I/O error occurred while trying to acquire
266231
* the instrumentation buffer.
267232
* @throws OutOfMemoryError The instrumentation buffer could not be mapped
268233
* into the virtual machine's address space.
269234
*/
270-
private ByteBuffer attachImpl(String user, int lvmid, int mode)
235+
private ByteBuffer attachImpl(String user, int lvmid)
271236
throws IllegalArgumentException, IOException
272237
{
273-
final ByteBuffer b = attach(user, lvmid, mode);
238+
final ByteBuffer b = attach0(user, lvmid);
274239

275240
if (lvmid == 0) {
276241
// The native instrumentation buffer for this Java virtual
@@ -326,15 +291,14 @@ public void run() {
326291
* virtual machine.
327292
* @param lvmid an integer that uniquely identifies the
328293
* target local Java virtual machine.
329-
* @param mode a string indicating the attach mode.
330294
* @return ByteBuffer a direct allocated byte buffer
331-
* @throws IllegalArgumentException The lvmid or mode was invalid.
295+
* @throws IllegalArgumentException The lvmid was invalid.
332296
* @throws IOException An I/O error occurred while trying to acquire
333297
* the instrumentation buffer.
334298
* @throws OutOfMemoryError The instrumentation buffer could not be mapped
335299
* into the virtual machine's address space.
336300
*/
337-
private native ByteBuffer attach(String user, int lvmid, int mode)
301+
private native ByteBuffer attach0(String user, int lvmid)
338302
throws IllegalArgumentException, IOException;
339303

340304
/**

‎src/java.management/share/classes/sun/management/VMManagementImpl.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2003, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2003, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -258,7 +258,7 @@ private synchronized PerfInstrumentation getPerfInstrumentation() {
258258
@SuppressWarnings("removal")
259259
Perf perf = AccessController.doPrivileged(new Perf.GetPerfAction());
260260
try {
261-
ByteBuffer bb = perf.attach(0, "r");
261+
ByteBuffer bb = perf.attach(0);
262262
if (bb.capacity() == 0) {
263263
noPerfData = true;
264264
return null;

‎src/jdk.internal.jvmstat/share/classes/sun/jvmstat/monitor/HostIdentifier.java

+2-25
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2004, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2004, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -66,10 +66,7 @@
6666
* (protocol) dependent. These components are ignored by the
6767
* default local protocol, <em>local:</em>. For the default remote
6868
* protocol, <em>rmi</em>, the Path component is interpreted as
69-
* the name of the RMI remote object. The Query component may
70-
* contain an access mode specifier <em>?mode=</em> specifying
71-
* <em>"r"</em> or <em>"rw"</em> access (write access currently
72-
* ignored). The Fragment part is ignored.
69+
* the name of the RMI remote object. The Fragment part is ignored.
7370
* </p></li>
7471
* </ul>
7572
* <p>
@@ -497,26 +494,6 @@ public String getFragment() {
497494
return uri.getFragment();
498495
}
499496

500-
/**
501-
* Return the mode indicated in this HostIdentifier.
502-
*
503-
* @return String - the mode string. If no mode is specified, then "r"
504-
* is returned. otherwise, the specified mode is returned.
505-
*/
506-
public String getMode() {
507-
String query = getQuery();
508-
if (query != null) {
509-
String[] queryArgs = query.split("\\+");
510-
for (String queryArg : queryArgs) {
511-
if (queryArg.startsWith("mode=")) {
512-
int index = queryArg.indexOf('=');
513-
return queryArg.substring(index + 1);
514-
}
515-
}
516-
}
517-
return "r";
518-
}
519-
520497
/**
521498
* Return the URI associated with the HostIdentifier.
522499
*

‎src/jdk.internal.jvmstat/share/classes/sun/jvmstat/monitor/VmIdentifier.java

+1-21
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2004, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2004, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -375,26 +375,6 @@ public int getLocalVmId() {
375375
return result;
376376
}
377377

378-
/**
379-
* Return the mode indicated in this VmIdentifier.
380-
*
381-
* @return String - the mode string. If no mode is specified, then "r"
382-
* is returned. otherwise, the specified mode is returned.
383-
*/
384-
public String getMode() {
385-
String query = getQuery();
386-
if (query != null) {
387-
String[] queryArgs = query.split("\\+");
388-
for (String queryArg : queryArgs) {
389-
if (queryArg.startsWith("mode=")) {
390-
int index = queryArg.indexOf('=');
391-
return queryArg.substring(index + 1);
392-
}
393-
}
394-
}
395-
return "r";
396-
}
397-
398378
/**
399379
* Return the URI associated with the VmIdentifier.
400380
*

‎src/jdk.internal.jvmstat/share/classes/sun/jvmstat/perfdata/monitor/protocol/file/PerfDataBuffer.java

+4-16
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2004, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2004, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -53,23 +53,11 @@ public class PerfDataBuffer extends AbstractPerfDataBuffer {
5353
*/
5454
public PerfDataBuffer(VmIdentifier vmid) throws MonitorException {
5555
File f = new File(vmid.getURI());
56-
String mode = vmid.getMode();
57-
58-
try {
59-
FileChannel fc = new RandomAccessFile(f, mode).getChannel();
60-
ByteBuffer bb = null;
61-
62-
if (mode.equals("r")) {
63-
bb = fc.map(FileChannel.MapMode.READ_ONLY, 0L, (int)fc.size());
64-
} else if (mode.equals("rw")) {
65-
bb = fc.map(FileChannel.MapMode.READ_WRITE, 0L, (int)fc.size());
66-
} else {
67-
throw new IllegalArgumentException("Invalid mode: " + mode);
68-
}
69-
70-
fc.close(); // doesn't need to remain open
7156

57+
try (FileChannel fc = new RandomAccessFile(f, "r").getChannel()) {
58+
ByteBuffer bb = fc.map(FileChannel.MapMode.READ_ONLY, 0L, (int)fc.size());
7259
createPerfDataBuffer(bb, 0);
60+
// fc doesn't need to remain open
7361
} catch (FileNotFoundException e) {
7462
throw new MonitorException("Could not find " + vmid.toString());
7563
} catch (IOException e) {

‎src/jdk.internal.jvmstat/share/classes/sun/jvmstat/perfdata/monitor/protocol/local/PerfDataBuffer.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2004, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2004, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -62,7 +62,7 @@ public class PerfDataBuffer extends AbstractPerfDataBuffer {
6262
public PerfDataBuffer(VmIdentifier vmid) throws MonitorException {
6363
try {
6464
// Try 1.4.2 and later first
65-
ByteBuffer bb = perf.attach(vmid.getLocalVmId(), vmid.getMode());
65+
ByteBuffer bb = perf.attach(vmid.getLocalVmId());
6666
createPerfDataBuffer(bb, vmid.getLocalVmId());
6767

6868
} catch (IllegalArgumentException e) {

‎src/jdk.jcmd/share/classes/sun/tools/jps/Jps.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2004, 2015, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2004, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -75,7 +75,7 @@ public static void main(String[] args) {
7575
}
7676

7777
MonitoredVm vm = null;
78-
String vmidString = "//" + lvmid + "?mode=r";
78+
String vmidString = "//" + lvmid;
7979

8080
String errorString = null;
8181

‎src/jdk.jstatd/share/classes/sun/jvmstat/monitor/remote/RemoteHost.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2004, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -53,8 +53,7 @@ public interface RemoteHost extends Remote {
5353
* @throws RemoteException
5454
*
5555
*/
56-
RemoteVm attachVm(int vmid, String mode) throws RemoteException,
57-
MonitorException;
56+
RemoteVm attachVm(int vmid) throws RemoteException, MonitorException;
5857

5958
/**
6059
* Remote method to detach from a remote HotSpot Java Virtual Machine

‎src/jdk.jstatd/share/classes/sun/jvmstat/perfdata/monitor/protocol/rmi/MonitoredHostProvider.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2004, 2014, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2004, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -141,8 +141,7 @@ public MonitoredVm getMonitoredVm(VmIdentifier vmid, int interval)
141141
VmIdentifier nvmid = null;
142142
try {
143143
nvmid = hostId.resolve(vmid);
144-
RemoteVm rvm = remoteHost.attachVm(vmid.getLocalVmId(),
145-
vmid.getMode());
144+
RemoteVm rvm = remoteHost.attachVm(vmid.getLocalVmId());
146145
RemoteMonitoredVm rmvm = new RemoteMonitoredVm(rvm, nvmid, timer,
147146
interval);
148147
rmvm.attach();

‎src/jdk.jstatd/share/classes/sun/tools/jstatd/RemoteHostImpl.java

+3-9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2004, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2004, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -67,18 +67,12 @@ public RemoteHostImpl(int rmiPort) throws MonitorException {
6767
monitoredHost.addHostListener(this);
6868
}
6969

70-
public RemoteVm attachVm(int lvmid, String mode)
71-
throws RemoteException, MonitorException {
70+
public RemoteVm attachVm(int lvmid) throws RemoteException, MonitorException {
7271
Integer v = lvmid;
7372
RemoteVm stub = null;
7473
StringBuilder sb = new StringBuilder();
7574

76-
sb.append("local://").append(lvmid).append("@localhost");
77-
if (mode != null) {
78-
sb.append("?mode=").append(mode);
79-
}
80-
81-
String vmidStr = sb.toString();
75+
String vmidStr = "local://" + lvmid + "@localhost";
8276

8377
try {
8478
VmIdentifier vmid = new VmIdentifier(vmidStr);

‎src/jdk.management.agent/share/classes/jdk/internal/agent/ConnectorAddressLink.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2004, 2015, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2004, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -143,7 +143,7 @@ public static String importFrom(int vmid) throws IOException {
143143
Perf perf = Perf.getPerf();
144144
ByteBuffer bb;
145145
try {
146-
bb = perf.attach(vmid, "r");
146+
bb = perf.attach(vmid);
147147
} catch (IllegalArgumentException iae) {
148148
throw new IOException(iae.getMessage());
149149
}
@@ -200,7 +200,7 @@ public static Map<String, String> importRemoteFrom(int vmid) throws IOException
200200
Perf perf = Perf.getPerf();
201201
ByteBuffer bb;
202202
try {
203-
bb = perf.attach(vmid, "r");
203+
bb = perf.attach(vmid);
204204
} catch (IllegalArgumentException iae) {
205205
throw new IOException(iae.getMessage());
206206
}

0 commit comments

Comments
 (0)
Please sign in to comment.