Fix some bugs when testing opensds ansible
[stor4nfv.git] / src / ceph / doc / changelog / v0.67.11.txt
1 commit bc8b67bef6309a32361be76cd11fb56b057ea9d2 (tag: refs/tags/v0.67.11, refs/remotes/gh/dumpling)
2 Author: Jenkins <jenkins@inktank.com>
3 Date:   Wed Sep 24 06:25:55 2014 -0700
4
5     0.67.11
6
7 commit 0e90b04d9452999d7d91305c80585782d492c91b (refs/remotes/gh/dumpling-jni)
8 Author: Greg Farnum <greg@inktank.com>
9 Date:   Wed May 21 21:41:23 2014 -0700
10
11     cephfs-java: build against older jni headers
12     
13     Older versions of the JNI interface expected non-const parameters
14     to their memory move functions. It's unpleasant, but won't actually
15     change the memory in question, to do a cast_const in order to satisfy
16     those older headers. (And even if it *did* modify the memory, that
17     would be okay given our single user.)
18     
19     Signed-off-by: Greg Farnum <greg@inktank.com>
20     (cherry picked from commit 4d4b77e5b6b923507ec4a0ad9d5c7018e4542a3c)
21
22 commit 3f020443c8d92e61d8593049147a79a6696c9c93
23 Author: Josh Durgin <josh.durgin@inktank.com>
24 Date:   Thu Jul 24 15:29:40 2014 -0700
25
26     librbd: fix crash using clone of flattened image
27     
28     The crash occurs due to ImageCtx->parent->parent being uninitialized,
29     since the inital open_parent() -> open_image(parent) ->
30     ictx_refresh(parent) occurs before ImageCtx->parent->snap_id is set,
31     so refresh_parent() is not called to open an ImageCtx for the parent
32     of the parent. This leaves the ImageCtx->parent->parent NULL, but the
33     rest of ImageCtx->parent updated to point at the correct parent snapshot.
34     
35     Setting the parent->snap_id earlier has some unintended side effects
36     currently, so for now just call refresh_parent() during
37     open_parent(). This is the easily backportable version of the
38     fix. Further patches can clean up this whole initialization process.
39     
40     Fixes: #8845
41     Backport: firefly, dumpling
42     Signed-off-by: Josh Durgin <josh.durgin@inktank.com>
43     (cherry picked from commit 2545e80d274b23b6715f4d8b1f4c6b96182996fb)
44
45 commit d3e880af5f3ae71d13159514c33c6b41fc648d54
46 Author: Sage Weil <sage@redhat.com>
47 Date:   Wed Sep 10 08:00:50 2014 -0700
48
49     test/cli-integration/rbd: fix trailing space
50     
51     Newer versions of json.tool remove the trailing ' ' after the comma.  Add
52     it back in with sed so that the .t works on both old and new versions, and
53     so that we don't have to remove the trailing spaces from all of the test
54     cases.
55     
56     Fixes: #8920
57     
58     Backports commit 605064dc685aa25cc7d58ec18b6449a3ce476d01
59     
60     Signed-off-by: Sage Weil <sage@redhat.com>
61
62 commit 5336398618f49d10e497392ab942d43062ed772d
63 Author: Sage Weil <sage@redhat.com>
64 Date:   Sat Aug 16 12:42:33 2014 -0700
65
66     os/FileStore: fix mount/remount force_sync race
67     
68     Consider:
69     
70      - mount
71      - sync_entry is doing some work
72      - umount
73        - set force_sync = true
74        - set done = true
75      - sync_entry exits (due to done)
76        - ..but does not set force_sync = false
77      - mount
78      - journal replay starts
79      - sync_entry sees force_sync and does a commit while op_seq == 0
80      ...crash...
81     
82     Fixes: #9144
83     Backport: firefly, dumpling
84     Signed-off-by: Sage Weil <sage@redhat.com>
85     (cherry picked from commit dd11042f969b94f7a461d02e1475794031c79f61)
86     
87     Conflicts:
88         src/os/FileStore.cc
89
90 commit f7498c47ed90db71e50a3d4ff9ce13626e863719
91 Author: Sage Weil <sage@redhat.com>
92 Date:   Mon Sep 8 13:44:57 2014 -0700
93
94     osdc/Objecter: revoke rx_buffer on op_cancel
95     
96     If we cancel a read, revoke the rx buffers to avoid a use-after-free and/or
97     other undefined badness by using user buffers that may no longer be
98     present.
99     
100     Fixes: #9362
101     Backport: firefly, dumpling
102     Reported-by: Matthias Kiefer <matthias.kiefer@1und1.de>
103     Signed-off-by: Sage Weil <sage@redhat.com>
104     (cherry picked from commit 2305b2897acba38384358c33ca3bbfcae6f1c74e)
105     
106     (adjusted for op->con instead of s->con)
107
108 commit 4dbb5010bd73ea8c7f9ed85e90e645ba1e85ea0a
109 Author: Sage Weil <sage@redhat.com>
110 Date:   Mon Sep 8 06:58:45 2014 -0700
111
112     mon/Paxos: don't spam log with is_readable at dout level 1
113     
114     Backport: firefly, dumpling
115     Reported-by: Aanchal Agrawal <Aanchal.Agrawal@sandisk.com>
116     Signed-off-by: Sage Weil <sage@redhat.com>
117     (cherry picked from commit 62ca27d0b119b597ebad40dde64c4d86599e466d)
118
119 commit 5315cf0a47e0a21e514df0d85be170dbca7ffc92
120 Author: Alfredo Deza <alfredo.deza@inktank.com>
121 Date:   Thu Sep 4 13:58:14 2014 -0400
122
123     doc: add note on soft JS dependency for navigating docs
124     
125     Signed-off-by: Alfredo Deza <alfredo.deza@inktank.com>
126     (cherry picked from commit 657be818375bea2d8b5998ea1e5505eedc2f294d)
127
128 commit 707076e3a9294169c3042afeb11b71b84727094b
129 Author: Alfredo Deza <alfredo.deza@inktank.com>
130 Date:   Wed Sep 3 21:21:45 2014 -0400
131
132     doc: fix missing bracket
133     
134     Signed-off-by: Alfredo Deza <alfredo.deza@inktank.com>
135     (cherry picked from commit 69638dfaeb0dcd96dac4b5f5c00ed08042432487)
136
137 commit 2ebdcfd5490462d77e32ffe3ef162f70183d53ab
138 Author: Alfredo Deza <alfredo.deza@inktank.com>
139 Date:   Wed Sep 3 20:47:54 2014 -0400
140
141     doc: attempt to get the ayni JS into all head tags
142     
143     Signed-off-by: Alfredo Deza <alfredo.deza@inktank.com>
144     (cherry picked from commit 35663fa55ac1579a3b0c8b67028a3a8dfea87b48)
145
146 commit c7948afa8232117c8a6e13b17774045a5e1bea6d
147 Author: Sage Weil <sage@redhat.com>
148 Date:   Sun Aug 17 20:54:28 2014 -0700
149
150     qa/workunits/rbd/qemu-iotests: touch common.env
151     
152     This seems to be necessary on trusty.
153     
154     Backport: firefly, dumpling
155     Signed-off-by: Sage Weil <sage@redhat.com>
156     (cherry picked from commit 055be68cf8e1b84287ab3631a02e89a9f3ae6cca)
157
158 commit aaeebceb2189336f5f957f2a797d0448c2754b15
159 Author: Sage Weil <sage@redhat.com>
160 Date:   Wed Aug 13 13:32:29 2014 -0700
161
162     mon: fix divide by zero when pg_num adjusted and no osds
163     
164     Fixes: #9052
165     Backport: firefly, dumpling
166     Signed-off-by: Sage Weil <sage@redhat.com>
167     
168     Manual backport of 239401db7b51541a57c59a261b89e0f05347c32d
169
170 commit e7c5fb58d85ed0d1be359e616137666c5e207c38
171 Author: Sage Weil <sage@redhat.com>
172 Date:   Tue Aug 12 07:05:34 2014 -0700
173
174     common/LogClient: fix sending dup log items
175     
176     We need to skip even the most recently sent item in order to get to the
177     ones we haven't sent yet.
178     
179     Fixes: #9080
180     Backport: firefly, dumpling
181     Signed-off-by: Sage Weil <sage@redhat.com>
182     (cherry picked from commit 057c6808be5bc61c3f1ac2b956c1522f18411245)
183
184 commit cbc9218edc122337fd6d9dbbdca18670e20c6169
185 Author: Josh Durgin <josh.durgin@inktank.com>
186 Date:   Mon Aug 11 16:41:26 2014 -0700
187
188     librbd: fix error path cleanup for opening an image
189     
190     If the image doesn't exist and caching is enabled, the ObjectCacher
191     was not being shutdown, and the ImageCtx was leaked. The IoCtx could
192     later be closed while the ObjectCacher was still running, resulting in
193     a segfault. Simply use the usual cleanup path in open_image(), which
194     works fine here.
195     
196     Fixes: #8912
197     Backport: dumpling, firefly
198     Signed-off-by: Josh Durgin <josh.durgin@inktank.com>
199     (cherry picked from commit 3dfa72d5b9a1f54934dc8289592556d30430959d)
200
201 commit b5dafe1c0f7ecf7c3a25d0be5dfddcbe3d07e69e
202 Author: Sage Weil <sage@redhat.com>
203 Date:   Wed Jun 18 11:02:58 2014 -0700
204
205     osd: allow io priority to be set for the disk_tp
206     
207     The disk_tp covers scrubbing, pg deletion, and snap trimming
208     
209     Signed-off-by: Sage Weil <sage@inktank.com>
210     (cherry picked from commit 84b3003119eeb8acfb3faacf357e6c6a452950e3)
211     
212     Conflicts:
213         src/osd/OSD.cc
214     
215     (cherry picked from commit 987ad133415aa988061c95259f9412b05ce8ac7e)