* commit '8d9f899a5e69a652c59d48c70a9c7b0e8100be87': ServiceManager: Print kernel/userspace binder version
This commit is contained in:
commit
2d4cf62a2c
@ -113,7 +113,9 @@ struct binder_state *binder_open(size_t mapsize)
|
|||||||
|
|
||||||
if ((ioctl(bs->fd, BINDER_VERSION, &vers) == -1) ||
|
if ((ioctl(bs->fd, BINDER_VERSION, &vers) == -1) ||
|
||||||
(vers.protocol_version != BINDER_CURRENT_PROTOCOL_VERSION)) {
|
(vers.protocol_version != BINDER_CURRENT_PROTOCOL_VERSION)) {
|
||||||
fprintf(stderr, "binder: driver version differs from user space\n");
|
fprintf(stderr,
|
||||||
|
"binder: kernel driver version (%d) differs from user space version (%d)\n",
|
||||||
|
vers.protocol_version, BINDER_CURRENT_PROTOCOL_VERSION);
|
||||||
goto fail_open;
|
goto fail_open;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user