summaryrefslogtreecommitdiff
path: root/drivers/w1/w1_family.c
blob: e9309778ee72c84e72581b5e3ae54c88816cbb64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
/*
 *	w1_family.c
 *
 * Copyright (c) 2004 Evgeniy Polyakov <zbr@ioremap.net>
 *
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 */

#include <linux/spinlock.h>
#include <linux/list.h>
#include <linux/sched.h>	/* schedule_timeout() */
#include <linux/delay.h>
#include <linux/export.h>

#include "w1_family.h"
#include "w1.h"

DEFINE_SPINLOCK(w1_flock);
static LIST_HEAD(w1_families);

int w1_register_family(struct w1_family *newf)
{
	struct list_head *ent, *n;
	struct w1_family *f;
	int ret = 0;

	spin_lock(&w1_flock);
	list_for_each_safe(ent, n, &w1_families) {
		f = list_entry(ent, struct w1_family, family_entry);

		if (f->fid == newf->fid) {
			ret = -EEXIST;
			break;
		}
	}

	if (!ret) {
		atomic_set(&newf->refcnt, 0);
		list_add_tail(&newf->family_entry, &w1_families);
	}
	spin_unlock(&w1_flock);

	/* check default devices against the new set of drivers */
	w1_reconnect_slaves(newf, 1);

	return ret;
}

void w1_unregister_family(struct w1_family *fent)
{
	struct list_head *ent, *n;
	struct w1_family *f;

	spin_lock(&w1_flock);
	list_for_each_safe(ent, n, &w1_families) {
		f = list_entry(ent, struct w1_family, family_entry);

		if (f->fid == fent->fid) {
			list_del(&fent->family_entry);
			break;
		}
	}
	spin_unlock(&w1_flock);

	/* deatch devices using this family code */
	w1_reconnect_slaves(fent, 0);

	while (atomic_read(&fent->refcnt)) {
		printk(KERN_INFO "Waiting for family %u to become free: refcnt=%d.\n",
				fent->fid, atomic_read(&fent->refcnt));

		if (msleep_interruptible(1000))
			flush_signals(current);
	}
}

/*
 * Should be called under w1_flock held.
 */
struct w1_family * w1_family_registered(u8 fid)
{
	struct list_head *ent, *n;
	struct w1_family *f = NULL;
	int ret = 0;

	list_for_each_safe(ent, n, &w1_families) {
		f = list_entry(ent, struct w1_family, family_entry);

		if (f->fid == fid) {
			ret = 1;
			break;
		}
	}

	return (ret) ? f : NULL;
}

static void __w1_family_put(struct w1_family *f)
{
	atomic_dec(&f->refcnt);
}

void w1_family_put(struct w1_family *f)
{
	spin_lock(&w1_flock);
	__w1_family_put(f);
	spin_unlock(&w1_flock);
}

#if 0
void w1_family_get(struct w1_family *f)
{
	spin_lock(&w1_flock);
	__w1_family_get(f);
	spin_unlock(&w1_flock);
}
#endif  /*  0  */

void __w1_family_get(struct w1_family *f)
{
	smp_mb__before_atomic_inc();
	atomic_inc(&f->refcnt);
	smp_mb__after_atomic_inc();
}

EXPORT_SYMBOL(w1_unregister_family);
EXPORT_SYMBOL(w1_register_family);
e-5-4-4'>libreoffice-5-4-4 main, development dictionaries repositoryroot
summaryrefslogtreecommitdiff
AgeCommit message (Expand)AuthorFilesLines
2021-09-21Branch libreoffice-7-2-2libreoffice-7-2-2Christian Lohmaier0-0/+0
2021-07-28Czech Hunspell: add several word formslibreoffice-7-2distro/mimo/mimo-7-2Stanislav Horacek1-3/+6
2021-07-28tdf#143489: Update Galician dictionaries to version 20.08Xisco Fauli6-119129/+121576
2021-07-01Czech Hunspell: fix declination of some nouns ending with "-ec"Stanislav Horacek2-663/+663
2021-07-01Czech Hunspell: fix several verbs of pattern "tisknout"Stanislav Horacek2-6/+2
2021-07-01Czech Hunspell: fix several nouns and adjectivesStanislav Horacek1-16/+12
2021-06-27Fix Guarani thesaurusAndras Timar3-2786/+1880
2021-06-27Remove .idx file, they are generated by the buildJulien Nabet2-31793/+0
2021-06-27Spanish dictionary: Package missing iconJulien Nabet1-0/+1
2021-06-27Esperanto dictionary: Package extension's descriptionJulien Nabet1-0/+2
2021-06-16Czech Hunspell: fix word "třídička"Stanislav Horacek1-1/+1
2021-06-13Branch libreoffice-7-2Christian Lohmaier0-0/+0
2021-06-02Czech Hunspell: remove confusing surnamelibreoffice-7-2-branch-pointStanislav Horacek1-2/+1
2021-06-02Czech Hunspell: remove rule based on circumfix and make other updatesStanislav Horacek3-76/+10
2021-06-02Czech Hunspell: use KEY and update TRY in .aff fileStanislav Horacek2-3/+7
2021-06-02Czech Hunspell: remove duplicatesStanislav Horacek1-138/+1
2021-06-02more updates of Czech HunspellStanislav Horacek2-234/+1082
2021-06-02update Czech Hunspell filesStanislav Horacek5-49535/+7966
2021-05-31Czech Hunspell: sort words in .dic fileStanislav Horacek