Merge pull request #49305 from petrutlucian94/dokan_subsys

dokan: use the right logging subsystem
This commit is contained in:
Lucian Petrut 2022-12-21 13:09:55 +02:00 committed by GitHub
commit 5168ccce49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,9 +16,9 @@
#include "common/dout.h"
#define dout_context g_ceph_context
#define dout_subsys ceph_subsys_rbd
#define dout_subsys ceph_subsys_client
#undef dout_prefix
#define dout_prefix *_dout << "rbd-wnbd: "
#define dout_prefix *_dout << "ceph-dokan: "
#define check_flag(stream, val, flag) if (val & flag) { stream << "[" #flag "]"; }
#define check_flag_eq(stream, val, flag) if (val == flag) { stream << "[" #flag "]"; }