The following changes since commit 93d9e5b5082258f3570dbc56202276284575fc11: blkparse: add documetation for 'R' requeue request (2018-04-09 08:36:43 -0600) are available in the git repository at: git://git.kernel.dk/blktrace.git master for you to fetch changes up to d61ff409cb4dda31386373d706ea0cfb1aaac5b7: btt: make device/devno use PATH_MAX to avoid overflow (2018-05-02 10:24:17 -0600) ---------------------------------------------------------------- Jens Axboe (1): btt: make device/devno use PATH_MAX to avoid overflow btt/devmap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- Diff of recent changes: diff --git a/btt/devmap.c b/btt/devmap.c index 0553a9e..5fc1cb2 100644 --- a/btt/devmap.c +++ b/btt/devmap.c @@ -23,7 +23,7 @@ struct devmap { struct list_head head; - char device[32], devno[32]; + char device[PATH_MAX], devno[PATH_MAX]; }; LIST_HEAD(all_devmaps); -- To unsubscribe from this list: send the line "unsubscribe linux-btrace" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html