The release criteria for libdrm is essentially "if you need a release, make one". There is no designated release engineer or maintainer. Anybody is free to make a release if there's a certain feature or bug fix they need in a released version of libdrm. When new ioctl definitions are merged into drm-next, we will add support to libdrm, at which point we typically create a new release. However, this is up to whoever is driving the feature in question. Follow these steps to release a new version of libdrm: 1) Ensure that there are no local, uncommitted/unpushed modifications. You're probably in a good state if both "git diff HEAD" and "git log master..origin/master" give no output. 3) Bump the version number in configure.ac. We seem to have settled for 2.4.x as the versioning scheme for libdrm, so just bump the micro version. 4) Run autoconf and then re-run ./configure so the build system picks up the new version number. 5) Verify that the code passes "make distcheck". libdrm is tricky to distcheck since the test suite will need to become drm master. This means that you need to run it outside X, that is, in text mode (KMS or no KMS doesn't matter). Running "make distcheck" should result in no warnings or errors and end with a message of the form: ============================================= libdrm-X.Y.Z archives ready for distribution: libdrm-X.Y.Z.tar.gz libdrm-X.Y.Z.tar.bz2 ============================================= Make sure that the version number reported by distcheck and in the tarball names matches the number you bumped to in configure.ac. 6) Commit the configure.ac change and make an annotated tag for that commit with the version number of the release as the name and a message of "libdrm X.Y.Z". For example, for the 2.4.16 release the command is: git tag -a 2.4.16 -m "libdrm 2.4.16" 7) Push the commit and tag by saying git push --tags origin master assuming the remote for the upstream libdrm repo is called origin. 6) Use the release.sh script from the xorg/util/modular repo to upload the tarballs to the freedesktop.org download area and create an annouce email template. The script takes three arguments: a "section", the previous tag and the new tag we just created. For 2.4.16 again, the command is: ../modular/release.sh libdrm 2.4.15 2.4.16 This copies the two tarballs to freedesktop.org and creates libdrm-2.4.16.announce which has a detailed summary of the changes, links to the tarballs, MD5 and SHA1 sums and pre-filled out email headers. Fill out the blank between the email headers and the list of changes with a brief message of what changed or what prompted this release. Send out the email and you're done! > 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
/**
* \file drm_pci.h
* \brief PCI consistent, DMA-accessible memory functions.
*
* \author Eric Anholt <anholt@FreeBSD.org>
*/
/*
* Copyright 2003 Eric Anholt.
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice (including the next
* paragraph) shall be included in all copies or substantial portions of the
* Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include "drmP.h"
/**********************************************************************/
/** \name PCI memory */
/*@{*/
/**
* \brief Allocate a physically contiguous DMA-accessible consistent
* memory block.
*/
void *
DRM(pci_alloc)(drm_device_t *dev, size_t size, size_t align, dma_addr_t maxaddr,
dma_addr_t *busaddr)
{
void *vaddr;
vaddr = contigmalloc(size, DRM(M_DRM), M_WAITOK, 0ul, maxaddr, align,
0);
*busaddr = vtophys(vaddr);
return vaddr;
}
/**
* \brief Free a DMA-accessible consistent memory block.
*/
void
DRM(pci_free)(drm_device_t *dev, size_t size, void *vaddr, dma_addr_t busaddr)
{
#if __FreeBSD_version > 500000
contigfree(vaddr, size, DRM(M_DRM)); /* Not available on 4.x */
#endif
}
/*@}*/