From 6d461a4fe7896faa1aec5a5417888cf179e46b9f Mon Sep 17 00:00:00 2001 From: André Fabian Silva Delgado Date: Mon, 22 Feb 2016 01:12:47 -0300 Subject: Linux-libre 4.4.2-gnu --- ipc/kdbus/policy.h | 51 --------------------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 ipc/kdbus/policy.h (limited to 'ipc/kdbus/policy.h') diff --git a/ipc/kdbus/policy.h b/ipc/kdbus/policy.h deleted file mode 100644 index 15dd7bc12..000000000 --- a/ipc/kdbus/policy.h +++ /dev/null @@ -1,51 +0,0 @@ -/* - * Copyright (C) 2013-2015 Kay Sievers - * Copyright (C) 2013-2015 Greg Kroah-Hartman - * Copyright (C) 2013-2015 Daniel Mack - * Copyright (C) 2013-2015 David Herrmann - * Copyright (C) 2013-2015 Linux Foundation - * - * kdbus is free software; you can redistribute it and/or modify it under - * the terms of the GNU Lesser General Public License as published by the - * Free Software Foundation; either version 2.1 of the License, or (at - * your option) any later version. - */ - -#ifndef __KDBUS_POLICY_H -#define __KDBUS_POLICY_H - -#include -#include - -struct kdbus_conn; -struct kdbus_item; - -/** - * struct kdbus_policy_db - policy database - * @entries_hash: Hashtable of entries - * @entries_rwlock: Mutex to protect the database's access entries - */ -struct kdbus_policy_db { - DECLARE_HASHTABLE(entries_hash, 6); - struct rw_semaphore entries_rwlock; -}; - -void kdbus_policy_db_init(struct kdbus_policy_db *db); -void kdbus_policy_db_clear(struct kdbus_policy_db *db); - -int kdbus_policy_query_unlocked(struct kdbus_policy_db *db, - const struct cred *cred, const char *name, - unsigned int hash); -int kdbus_policy_query(struct kdbus_policy_db *db, const struct cred *cred, - const char *name, unsigned int hash); - -void kdbus_policy_remove_owner(struct kdbus_policy_db *db, - const void *owner); -int kdbus_policy_set(struct kdbus_policy_db *db, - const struct kdbus_item *items, - size_t items_size, - size_t max_policies, - bool allow_wildcards, - const void *owner); - -#endif -- cgit v1.2.3-54-g00ecf