|
@@ -57,6 +57,31 @@ static void hci_notify(struct hci_dev *hdev, int event)
|
|
|
|
|
|
/* ---- HCI debugfs entries ---- */
|
|
|
|
|
|
+static int blacklist_show(struct seq_file *f, void *p)
|
|
|
+{
|
|
|
+ struct hci_dev *hdev = f->private;
|
|
|
+ struct bdaddr_list *b;
|
|
|
+
|
|
|
+ hci_dev_lock(hdev);
|
|
|
+ list_for_each_entry(b, &hdev->blacklist, list)
|
|
|
+ seq_printf(f, "%pMR\n", &b->bdaddr);
|
|
|
+ hci_dev_unlock(hdev);
|
|
|
+
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+
|
|
|
+static int blacklist_open(struct inode *inode, struct file *file)
|
|
|
+{
|
|
|
+ return single_open(file, blacklist_show, inode->i_private);
|
|
|
+}
|
|
|
+
|
|
|
+static const struct file_operations blacklist_fops = {
|
|
|
+ .open = blacklist_open,
|
|
|
+ .read = seq_read,
|
|
|
+ .llseek = seq_lseek,
|
|
|
+ .release = single_release,
|
|
|
+};
|
|
|
+
|
|
|
static int inquiry_cache_show(struct seq_file *f, void *p)
|
|
|
{
|
|
|
struct hci_dev *hdev = f->private;
|
|
@@ -844,6 +869,9 @@ static int __hci_init(struct hci_dev *hdev)
|
|
|
if (!test_bit(HCI_SETUP, &hdev->dev_flags))
|
|
|
return 0;
|
|
|
|
|
|
+ debugfs_create_file("blacklist", 0444, hdev->debugfs, hdev,
|
|
|
+ &blacklist_fops);
|
|
|
+
|
|
|
if (lmp_bredr_capable(hdev)) {
|
|
|
debugfs_create_file("inquiry_cache", 0444, hdev->debugfs,
|
|
|
hdev, &inquiry_cache_fops);
|