diff --git a/docs/relnotes-7.5.2.html b/docs/relnotes-7.5.2.html
new file mode 100644
index 00000000000..32100142c0c
--- /dev/null
+++ b/docs/relnotes-7.5.2.html
@@ -0,0 +1,52 @@
+
+
+
Mesa Release Notes
+
+
+
+
+
+
+
+Mesa 7.5.2 Release Notes, (date tbd)
+
+
+Mesa 7.5.2 is a bug-fix release fixing issues found since the 7.5.1 release.
+
+
+The main new feature of Mesa 7.5.x is the
+Gallium3D infrastructure.
+
+
+Mesa 7.5.2 implements the OpenGL 2.1 API, but the version reported by
+glGetString(GL_VERSION) depends on the particular driver being used.
+Some drivers don't support all the features required in OpenGL 2.1.
+
+
+See the Compiling/Installing page for prerequisites
+for DRI hardware acceleration.
+
+
+
+MD5 checksums
+
+tbd
+
+
+
+New features
+
+Detect B43 chipset in Intel driver
+
+
+
+Bug fixes
+
+Assorted bug fixes for i965/i945 drivers
+ Fixed Gallium glDrawPixels(GL_STENCIL_INDEX) failure.
+
+
+
+
+
diff --git a/docs/relnotes.html b/docs/relnotes.html
index ddd2e1cdedb..560a660af49 100644
--- a/docs/relnotes.html
+++ b/docs/relnotes.html
@@ -14,6 +14,7 @@ The release notes summarize what's new or changed in each Mesa release.
7.6 release notes
+7.5.2 release notes
7.5.1 release notes
7.5 release notes
7.4.4 release notes
diff --git a/src/gallium/drivers/softpipe/sp_clear.c b/src/gallium/drivers/softpipe/sp_clear.c
index fa59277438c..d3af18e162b 100644
--- a/src/gallium/drivers/softpipe/sp_clear.c
+++ b/src/gallium/drivers/softpipe/sp_clear.c
@@ -85,5 +85,7 @@ softpipe_clear(struct pipe_context *pipe, unsigned buffers, const float *rgba,
/* non-cached surface */
pipe->surface_fill(pipe, ps, 0, 0, ps->width, ps->height, cv);
#endif
- }
+ }
+
+ softpipe->dirty_render_cache = TRUE;
}